summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Close #19330 by using public classes in contextlibNick Coghlan2013-10-263-46/+102
| | | | | | | - added test cases to ensure docstrings are reasonable - also updates various comments in contextlib for accuracy - identifed #19404 as an issue making it difficult to provide good help output on generator based context manager instances
* Issue #18685: Restore re performance to pre-PEP 393 levels.Serhiy Storchaka2013-10-264-384/+350
|
* Move Misc/NEWS entries in correct secton.Serhiy Storchaka2013-10-261-6/+6
|
* (Merge 3.3) Close #19339: telnetlib module is now using time.monotonic() whenVictor Stinner2013-10-262-6/+11
|\ | | | | | | available to compute timeout.
| * Close #19339: telnetlib module is now using time.monotonic() when available toVictor Stinner2013-10-262-14/+17
| | | | | | | | compute timeout.
* | Close #19396: make test_contextlib tolerate -SNick Coghlan2013-10-261-3/+4
| |
* | Fiddled Thread.join() to be a little simpler. Kinda ;-)Tim Peters2013-10-261-4/+4
| |
* | Issue #19399: fix sporadic test_subprocess failure.Tim Peters2013-10-262-1/+6
| | | | | | | | | | | | Change Thread.join() with a negative timeout to just return. The behavior isn't documented then, but this restores previous behavior.
* | null mergeNed Deily2013-10-250-0/+0
|\ \ | |/
| * Issue #19400: Prevent extension module build failures with Xcode 5 on OS XNed Deily2013-10-252-7/+17
| | | | | | | | | | 10.8+ when using a universal Python that included a PPC architecture, such as with a python.org 32-bit-only binary installer.
* | Correct whitespace in test_osTim Golden2013-10-251-1/+1
| |
* | Issue13234 Credit Santoso for the patch and add NEWS itemTim Golden2013-10-252-0/+4
| |
* | Issue13234 Allow listdir to handle extended paths on Windows (Patch by ↵Tim Golden2013-10-252-4/+51
| | | | | | | | Santoso Wijaya)
* | mergeBrett Cannon2013-10-256-10/+54
|\ \
| * | Issue #19375: The site module adding a "site-python" directory to sys.path, ↵Antoine Pitrou2013-10-254-1/+13
| | | | | | | | | | | | if it exists, is now deprecated.
| * | Issue #19387: explain and test the sre overlap tableAntoine Pitrou2013-10-252-9/+41
| | |
* | | test_resource should not assume all attributes are available when theyBrett Cannon2013-10-251-6/+4
|/ / | | | | | | | | are individually controlled by #ifdef statements in the extension code.
* | Issue #16803: Move test.test_importlib.extension to use both frozen and ↵Brett Cannon2013-10-254-44/+44
| | | | | | | | source importlib code
* | mergeBrett Cannon2013-10-251-0/+3
|\ \
| * \ Merge.bquinlan2013-10-251-0/+4
| |\ \
| * | | Issue #11161: Update the documentation for ProcessPoolExecutor to note that ↵bquinlan2013-10-251-0/+3
| | | | | | | | | | | | | | | | it will not work in the interactive shell.
* | | | Tweak some doc wording for importlib.reloadBrett Cannon2013-10-251-2/+3
| |/ / |/| |
* | | merge from 3.3Brett Cannon2013-10-251-0/+4
|\ \ \ | |/ / |/| / | |/
| * Issue #19392: Document that imp.reload() now relies on __loader__Brett Cannon2013-10-252-0/+7
| | | | | | | | being defined on top of __name__.
* | Issue #16803: Have test.test_importlib.builtin test both frozen andBrett Cannon2013-10-252-26/+33
| | | | | | | | source importlib.
* | Issue #16803: Stop having test.test_importlib.abc ABCs inherit fromBrett Cannon2013-10-259-16/+16
| | | | | | | | | | unittest.TestCase in prep of running tests under frozen and source importlib.
* | test_selectors: make timeout-related errors report the actual elapsed timeout.Charles-François Natali2013-10-251-4/+5
| |
* | test_selectors: rename test_interrupted_retry() (since it doesn't actuallyCharles-François Natali2013-10-251-1/+1
| | | | | | | | retry on EINTR).
* | Issue4905: use INVALID_FILE_ATTRIBUTES where appropriate. (Patch by Ulrich ↵Tim Golden2013-10-252-5/+6
| | | | | | | | Eckhardt)
* | Closes issue #19273: clean up the pcbuild readme.txt (Patch by Zachary Ware)Tim Golden2013-10-251-259/+262
| |
* | null merge with 3.3Ned Deily2013-10-250-0/+0
|\ \ | |/
| * Sync 2.7.x, 3.3.x, and 3.4.x versions of OS X build-installer.py.Ned Deily2013-10-251-8/+48
| |
| * Issue #19019: Change the OS X installer build script to use CFLAGS insteadNed Deily2013-10-252-1/+6
| | | | | | | | | | | | of OPT for special build options. By setting OPT, some compiler-specific options like -fwrapv were overridden and thus not used, which could result in broken interpreters when building with clang.
| * Issue #15663: Tcl/Tk 8.5.15 is now included with the OS X 10.6+Ned Deily2013-10-255-27/+150
| | | | | | | | | | | | | | 64-bit/32-bit installer for 10.6+. It is no longer necessary to install a third-party version of Tcl/Tk 8.5 to work around the problems in the Apple-supplied Tcl/Tk 8.5 shipped in OS X 10.6 and later releases.
| * Issue #1584: Provide options to override default search paths for Tcl and TkNed Deily2013-10-255-1/+126
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when building _tkinter. configure has two new options; if used, both must be specified: ./configure \ --with-tcltk-includes="-I/opt/local/include" \ --with-tcltk-libs="-L/opt/local/lib -ltcl8.5 -ltk8.5" In addition, the options can be overridden with make: make \ TCLTK_INCLUDES="-I/opt/local/include" \ TCLTK_LIBS="-L/opt/local/lib -ltcl8.6 -ltk8.6"
* | Issue 19384: Fix test_py_compile for root user, patch by Claudiu Popa.Christian Heimes2013-10-252-0/+8
| |
* | Issue #16595: prlimit() needs Linux kernel 2.6.36+Christian Heimes2013-10-252-1/+2
| |
* | remove unused imports from statistics moduleChristian Heimes2013-10-251-2/+0
| |
* | Issue #19288: Fixed the "in" operator of dbm.gnu databases for stringSerhiy Storchaka2013-10-243-4/+17
|\ \ | |/ | | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis.
| * Issue #19288: Fixed the "in" operator of dbm.gnu databases for stringSerhiy Storchaka2013-10-243-4/+17
| | | | | | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis.
* | Issue #19287: Fixed the "in" operator of dbm.ndbm databases for stringSerhiy Storchaka2013-10-243-2/+6
|\ \ | |/ | | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis.
| * Issue #19287: Fixed the "in" operator of dbm.ndbm databases for stringSerhiy Storchaka2013-10-243-2/+6
| | | | | | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis.
* | Close #19379: Lazily import linecache in the warnings module, to make ↵Antoine Pitrou2013-10-242-4/+5
| | | | | | | | startup with warnings faster until a warning gets printed.
* | Issue #19369: Optimized the usage of __length_hint__().Serhiy Storchaka2013-10-242-8/+12
| |
* | Issue #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-244-3/+8
|\ \ | |/
| * Issue #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-244-3/+8
| |
* | #17400: correct handling of 100.64.0.0/10, fixing the docs and updating NEWSPeter Moody2013-10-244-13/+27
| |
* | merge from 3.3: Increase the test coverage of macurl2path module. Patch by ↵Senthil Kumaran2013-10-244-21/+36
|\ \ | |/ | | | | Colin Williams.
| * Increase the coverage of macurl2path. Patch by Colin Williams.Senthil Kumaran2013-10-244-21/+34
| |
* | Issue #19360: fix test_site when Python is installed into $HOME/.localAntoine Pitrou2013-10-231-2/+8
|\ \ | |/