summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* | | | MergeRaymond Hettinger2012-01-261-1/+1
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Issue 13870: Fix out of date comment.Raymond Hettinger2012-01-261-1/+1
* | | Issue #13862: Relax zlib version test to avoid spurious failures.Nadeem Vawda2012-01-251-6/+6
* | | Closes #13859: Merged fix from 3.2 - thanks to Matt Joiner for spotting this ...Vinay Sajip2012-01-251-2/+2
|\ \ \ | |/ /
| * | Closes #13859: Replaced reference to StandardError with reference to Exceptio...Vinay Sajip2012-01-251-1/+1
* | | Port import fixes from 2.7.Antoine Pitrou2012-01-252-2/+2
|\ \ \ | |/ /
| * | Port import fixes from 2.7.Antoine Pitrou2012-01-252-2/+2
* | | Issue #12804: Fix test failures on systems without internet access.Nadeem Vawda2012-01-252-6/+13
* | | Remove redundant resource check in test_socket.Nadeem Vawda2012-01-251-1/+0
* | | Port remaining test fixes, and fix test_importlib too.Antoine Pitrou2012-01-252-9/+30
|\ \ \ | |/ /
| * | Port remaining test fixes, and fix test_importlib too.Antoine Pitrou2012-01-252-1/+14
| * | Make test work under 32-bit systems, and when invoked through Lib/test/regrte...Antoine Pitrou2012-01-251-8/+16
* | | Issue #11235: Fix OverflowError when trying to import a source file whose mod...Antoine Pitrou2012-01-242-0/+29
|\ \ \ | |/ /
| * | Issue #11235: Fix OverflowError when trying to import a source file whose mod...Antoine Pitrou2012-01-242-0/+29
* | | Issue #13772: In os.symlink() under Windows, do not try to guess the linkAntoine Pitrou2012-01-241-2/+7
|\ \ \ | |/ /
| * | Issue #13772: In os.symlink() under Windows, do not try to guess the linkAntoine Pitrou2012-01-241-2/+7
* | | Issue #10278: wallclock() cannot go backward, but two consecutive callsVictor Stinner2012-01-231-1/+1
* | | Fix a unittest error seen on NetBSD 5.Gregory P. Smith2012-01-221-2/+12
|\ \ \ | |/ /
| * | Fix a unittest error seen on NetBSD 5.Gregory P. Smith2012-01-221-2/+12
* | | Fixes issue #8052: The posix subprocess module's close_fds behavior wasGregory P. Smith2012-01-211-0/+18
|\ \ \ | |/ /
| * | Fixes issue #8052: The posix subprocess module's close_fds behavior wasGregory P. Smith2012-01-211-0/+18
* | | Issue #13706: Support non-ASCII fill charactersVictor Stinner2012-01-211-0/+20
* | | merge from 3.2Senthil Kumaran2012-01-213-0/+7
|\ \ \ | |/ /
| * | Fix Issue6631 - Disallow relative file paths in urllib urlopenSenthil Kumaran2012-01-213-0/+7
| * | #13760: picklability tests for configparser exceptionsŁukasz Langa2012-01-201-0/+145
* | | add another test caseBenjamin Peterson2012-01-201-0/+1
* | | #13760: picklability tests for configparser exceptionsŁukasz Langa2012-01-201-0/+145
* | | Closes #13807: Merged fix from 3.2.Vinay Sajip2012-01-201-1/+1
|\ \ \ | |/ /
| * | Closes #13807: Merged fix from 3.1.Vinay Sajip2012-01-201-1/+1
| |\ \
| | * | Closes #13807: Now checks for sys.stderr being there before writing to it.Vinay Sajip2012-01-201-1/+1
* | | | Issue #10278: Be more explicit in tests than wallclock() is monotonic (cannotVictor Stinner2012-01-201-4/+9
* | | | check after comments, too (#13832)Benjamin Peterson2012-01-191-0/+2
* | | | Issue #12705: Raise SyntaxError when compiling multiple statements as single ...Meador Inge2012-01-191-0/+28
* | | | Issue #2134: Add support for tokenize.TokenInfo.exact_type.Meador Inge2012-01-192-2/+132
* | | | Be more lenient in test_wallclock (issue #10278).Antoine Pitrou2012-01-181-2/+2
* | | | Add part of test_inspect test from 2.7Antoine Pitrou2012-01-181-0/+11
|\ \ \ \ | |/ / /
| * | | Add part of test_inspect test from 2.7Antoine Pitrou2012-01-181-0/+11
* | | | Issue #5689: Avoid excessive memory usage by using the default lzma preset.Lars Gustäbel2012-01-181-5/+1
* | | | Merge: #13781: Fix GzipFile to work with os.fdopen()'d file objects.Nadeem Vawda2012-01-182-2/+12
|\ \ \ \ | |/ / /
| * | | Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects.Nadeem Vawda2012-01-182-2/+12
* | | | MERGE: And yet another emergency fix for #13803 bootstrap issue: Under Solari...Jesus Cea2012-01-182-2/+2
|\ \ \ \ | |/ / /
| * | | And yet another emergency fix for #13803 bootstrap issue: Under Solaris, dist...Jesus Cea2012-01-182-2/+2
* | | | MERGE: Yet another emergency fix for #13803 bootstrap issue: Under Solaris, d...Jesus Cea2012-01-181-0/+5
|\ \ \ \ | |/ / /
| * | | Yet another emergency fix for #13803 bootstrap issue: Under Solaris, distutil...Jesus Cea2012-01-181-0/+5
* | | | MERGE: Emergency fix for #13803 bootstrap issue: Under Solaris, distutils doe...Jesus Cea2012-01-181-2/+5
|\ \ \ \ | |/ / /
| * | | Emergency fix for #13803 bootstrap issue: Under Solaris, distutils doesn't in...Jesus Cea2012-01-181-2/+5
* | | | MERGE: Closes #13803: Under Solaris, distutils doesn't include bitness in the...Jesus Cea2012-01-181-0/+2
|\ \ \ \ | |/ / /
| * | | Closes #13803: Under Solaris, distutils doesn't include bitness in the direct...Jesus Cea2012-01-181-0/+2
* | | | Close #10278: Add time.wallclock() function, monotonic clock.Victor Stinner2012-01-181-0/+7
* | | | Issue #13809: Make bz2 module work with threads disabled.Nadeem Vawda2012-01-172-2/+13