| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor in | Victor Stinner | 2013-12-19 | 1 | -0/+2 |
| | | | | | | Python 3.4 to log "uncatched" exceptions, instead of the dedicated _TracebackLogger class. | ||||
| * | Shorten lines. | Guido van Rossum | 2013-12-19 | 1 | -1/+2 |
| | | |||||
| * | Issue #5815: Fixed support for locales with modifiers. Fixed support for | Serhiy Storchaka | 2013-12-19 | 1 | -0/+58 |
| | | | | | locale encodings with hyphens. | ||||
| * | Fix the C definition of the sys._debugmallocstats() function: the function has | Victor Stinner | 2013-12-19 | 1 | -0/+3 |
| | | | | | no parameter | ||||
| * | (Merge 3.3) Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now | Victor Stinner | 2013-12-19 | 1 | -0/+4 |
| |\ | | | | | | | raise a ValueError if num is negative (instead of raising a SystemError). | ||||
| | * | Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now raise a | Victor Stinner | 2013-12-19 | 1 | -0/+4 |
| | | | | | | | | | ValueError if num is negative (instead of raising a SystemError). | ||||
| * | | Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and | Serhiy Storchaka | 2013-12-19 | 1 | -5/+39 |
| |\ \ | |/ | | | | | quotechar fields. Original patch by Vajrasky Kok. | ||||
| | * | Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and | Serhiy Storchaka | 2013-12-19 | 1 | -5/+39 |
| | | | | | | | | | quotechar fields. Original patch by Vajrasky Kok. | ||||
| * | | Issue #19946: appropriately skip new multiprocessing tests | Nick Coghlan | 2013-12-19 | 1 | -9/+5 |
| | | | | | | | | | | | | | Thanks to Christian Heimes for noting the buildbot failures and to Zachary Ware for providing the patch to make the new tests play nice with both other platforms and unittest test discovery | ||||
| * | | Issue #20006: Fix sporadic failures in test_weakset. | Antoine Pitrou | 2013-12-17 | 1 | -2/+6 |
| |\ \ | |/ | |||||
| | * | Issue #20006: Fix sporadic failures in test_weakset. | Antoine Pitrou | 2013-12-17 | 1 | -1/+6 |
| | | | |||||
| | * | Revert misled test change in f189da5bda26. | Antoine Pitrou | 2013-12-17 | 1 | -1/+0 |
| | | | |||||
| * | | Issue #20007: HTTPResponse.read(0) no more prematurely closes connection. | Serhiy Storchaka | 2013-12-17 | 1 | -0/+3 |
| |\ \ | |/ | | | | | Original patch by Simon Sapin. | ||||
| | * | Issue #20007: HTTPResponse.read(0) no more prematurely closes connection. | Serhiy Storchaka | 2013-12-17 | 1 | -0/+3 |
| | | | | | | | | | Original patch by Simon Sapin. | ||||
| * | | Close #19946: use runpy as needed in multiprocessing | Nick Coghlan | 2013-12-17 | 1 | -0/+287 |
| | | | | | | | | | | | | | - handles main files without a suffix - handles main submodules properly - adds test cases for the various kinds of __main__ | ||||
| * | | Backout a1a05e2724dd: shutil.which(bytes) is a new feature and my patch does ↵ | Victor Stinner | 2013-12-16 | 1 | -11/+2 |
| | | | | | | | | | not work on Windows | ||||
| * | | Issue #18283: shutil.which() now supports bytes argument, not only text ↵ | Victor Stinner | 2013-12-16 | 1 | -2/+11 |
| | | | | | | | | | argument. | ||||
| * | | (Merge 3.3) Close #19999: tolerate coarse time when testing time.monotonic() on | Victor Stinner | 2013-12-16 | 1 | -1/+1 |
| |\ \ | |/ | | | | | very busy/slow buildbot | ||||
| | * | Close #19999: tolerate coarse time when testing time.monotonic() on very | Victor Stinner | 2013-12-16 | 1 | -1/+1 |
| | | | | | | | | | busy/slow buildbot | ||||
| * | | Issue #19919: Fix flacky SSL test. connect_ex() sometimes returns | Christian Heimes | 2013-12-16 | 1 | -2/+4 |
| |\ \ | |/ | | | | | EWOULDBLOCK on Windows or VMs hosted on Windows. | ||||
| | * | Issue #19919: Fix flacky SSL test. connect_ex() sometimes returns | Christian Heimes | 2013-12-16 | 1 | -2/+4 |
| | | | | | | | | | EWOULDBLOCK on Windows or VMs hosted on Windows. | ||||
| * | | Issue #19921: When Path.mkdir() is called with parents=True, any missing ↵ | Antoine Pitrou | 2013-12-16 | 1 | -2/+11 |
| | | | | | | | | | | | | | parent is created with the default permissions, ignoring the mode argument (mimicking the POSIX "mkdir -p" command). Patch by Serhiy. | ||||
| * | | Issue #19887: Improve the Path.resolve() algorithm to support certain ↵ | Antoine Pitrou | 2013-12-16 | 1 | -0/+53 |
| | | | | | | | | | | | | | symlink chains. Original patch by Serhiy. | ||||
| * | | Issue #19987: Merge with 3.3 | Zachary Ware | 2013-12-16 | 1 | -8/+8 |
| |\ \ | |/ | |||||
| | * | Issue #19987: Re-write test_alias_fallback in test_winsound to have two | Zachary Ware | 2013-12-16 | 1 | -7/+8 |
| | | | | | | | | | | | | | acceptable outcomes: success or RuntimeError. Without being able to actually hear whether a sound was played, either one could be right, but any other error would be a failure. | ||||
| | * | Merge heads | Serhiy Storchaka | 2013-12-16 | 1 | -0/+1 |
| | |\ | |||||
| | | * | Issue #17919: add missing import of USHRT_MAX | Christian Heimes | 2013-12-16 | 1 | -0/+1 |
| | | | | |||||
| * | | | Issue #19987: disable test_winsound's test_alias_fallback test when no sound ↵ | Christian Heimes | 2013-12-16 | 1 | -6/+7 |
| | | | | | | | | | | | | | | | | | | | card is available. The test fails on Windows Server 2008. | ||||
| * | | | Issue #19912: Fixed numerous bugs in ntpath.splitunc(). | Serhiy Storchaka | 2013-12-16 | 1 | -0/+23 |
| |\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | * splitunc() no more return illegal result for paths with redundant slashes. * splitunc() now correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Deprecation warnings now emitted for every use of splitunc(). * Added tests for splitunc(). | ||||
| | * | | Issue #19912: Fixed numerous bugs in ntpath.splitunc(). | Serhiy Storchaka | 2013-12-16 | 1 | -0/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | * splitunc() no more return illegal result for paths with redundant slashes. * splitunc() now correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Deprecation warnings now emitted for every use of splitunc(). * Added tests for splitunc(). | ||||
| * | | | Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character | Serhiy Storchaka | 2013-12-16 | 1 | -0/+3 |
| |\ \ \ | |/ / | | | | | | | (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). | ||||
| | * | | Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character | Serhiy Storchaka | 2013-12-16 | 1 | -0/+3 |
| | |/ | | | | | | | (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). | ||||
| * | | Merge: #19532: make compileall with no file/dir args respect -f and -q. | R David Murray | 2013-12-16 | 1 | -2/+23 |
| |\ \ | |/ | |||||
| | * | #19532: make compileall with no file/dir args respect -f and -q. | R David Murray | 2013-12-16 | 1 | -0/+23 |
| | | | | | | | | | Patch by Vajrasky Kok. | ||||
| | * | Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e. | Serhiy Storchaka | 2013-12-14 | 3 | -24/+12 |
| | | | |||||
| * | | test_ssl: skip tests when SNI is not available | Christian Heimes | 2013-12-15 | 1 | -0/+2 |
| | | | |||||
| * | | test_poplib: skip stls_context test when SNI is not available | Christian Heimes | 2013-12-15 | 1 | -0/+5 |
| | | | |||||
| * | | fixed test_ftplib | Christian Heimes | 2013-12-15 | 1 | -1/+1 |
| | | | |||||
| * | | test_imaplib: skip check_hostname test when SNI is not available | Christian Heimes | 2013-12-15 | 1 | -0/+4 |
| | | | |||||
| * | | test_ftplib: skip check_hostname test when SNI is not available | Christian Heimes | 2013-12-15 | 1 | -0/+4 |
| | | | |||||
| * | | Skip some tests that require server name indication (SNI) | Christian Heimes | 2013-12-15 | 1 | -0/+6 |
| | | | |||||
| * | | Import USHRT_MAX to fix failing test_devpool test | Christian Heimes | 2013-12-15 | 1 | -0/+1 |
| | | | |||||
| * | | Issue #19700: set __spec__ appropriately in runpy | Nick Coghlan | 2013-12-15 | 3 | -38/+166 |
| | | | | | | | | | | | | | | | | | Note that __spec__.name is not currently guaranteed to be in sys.modules when the code is running, only __name__ is. The "running module is in sys.modules" invariant will be expanded to also cover __spec__.name in a subsequent patch. | ||||
| * | | Issue #19623: Fixed writing to unseekable files in the aifc module. | Serhiy Storchaka | 2013-12-14 | 3 | -37/+17 |
| |\ \ | |/ | |||||
| | * | Issue #19623: Fixed writing to unseekable files in the aifc module. | Serhiy Storchaka | 2013-12-14 | 4 | -59/+93 |
| | | | |||||
| * | | Issue #17919: Fixed integer overflow in the eventmask parameter. | Serhiy Storchaka | 2013-12-14 | 2 | -5/+19 |
| |\ \ | |/ | |||||
| | * | Issue #17919: Fixed integer overflow in the eventmask parameter. | Serhiy Storchaka | 2013-12-14 | 2 | -5/+19 |
| | | | |||||
| * | | Merge: #19970: Fix some comment typos. | R David Murray | 2013-12-14 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | #19970: Fix some comment typos. | R David Murray | 2013-12-14 | 1 | -1/+1 |
| | | | | | | | | | Report and patch by Vajrasky Kok. | ||||
| * | | Issue #19704: Port test.test_threaded_import to PEP 451 | Brett Cannon | 2013-12-13 | 1 | -6/+6 |
| | | | |||||
