Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue 19851: Fix a regression in reloading submodules. | Eric Snow | 2013-12-10 | 2 | -4/+79 |
| | |||||
* | Issue #15475: Add __sizeof__ implementations for itertools objects. | Serhiy Storchaka | 2013-12-09 | 1 | -1/+42 |
| | |||||
* | Backed out changeset c4c1c4bc8086 | Victor Stinner | 2013-12-09 | 1 | -1/+1 |
| | |||||
* | Issue #19876: Run also ↵ | Victor Stinner | 2013-12-09 | 1 | -1/+1 |
| | | | | | | test_selectors.test_unregister_after_fd_close_and_reuse() on Windows os.dup2() is available on Windows. | ||||
* | Close #19880: Fix a reference leak in unittest.TestCase. Explicitly break | Victor Stinner | 2013-12-09 | 2 | -1/+39 |
| | | | | reference cycles between frames and the _Outcome instance. | ||||
* | Fix #19830: Fix a ResourceWarning in test_poplib. | Victor Stinner | 2013-12-09 | 1 | -1/+1 |
| | | | | Patch written by Vajrasky Kok. | ||||
* | (Merge 3.3) Issue #17429: Oops, remove unused import | Victor Stinner | 2013-12-08 | 1 | -1/+0 |
|\ | |||||
| * | Issue #17429: Oops, remove unused import | Victor Stinner | 2013-12-08 | 1 | -1/+0 |
| | | |||||
* | | Issue #17429: some PEP 8 compliance fixes for the platform modules, add ↵ | Victor Stinner | 2013-12-08 | 1 | -111/+113 |
| | | | | | | | | whitespaces | ||||
* | | (Merge 3.3) Issue #17429: platform.linux_distribution() now decodes files from | Victor Stinner | 2013-12-08 | 2 | -2/+23 |
|\ \ | |/ | | | | | | | | | | | the UTF-8 encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi. | ||||
| * | Issue #17429: platform.linux_distribution() now decodes files from the UTF-8 | Victor Stinner | 2013-12-08 | 2 | -2/+23 |
| | | | | | | | | | | | | | | encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi. | ||||
* | | Fixes issue #19929: Call os.read with 32768 within subprocess.Popen | Gregory P. Smith | 2013-12-08 | 1 | -1/+1 |
|\ \ | |/ | | | | | | | communicate rather than 4096 for efficiency. A microbenchmark shows Linux and OS X both using ~50% less cpu time this way. | ||||
| * | Fixes issue #19929: Call os.read with 32768 within subprocess.Popen | Gregory P. Smith | 2013-12-08 | 1 | -1/+1 |
| | | | | | | | | | | communicate rather than 4096 for efficiency. A microbenchmark shows Linux and OS X both using ~50% less cpu time this way. | ||||
* | | Issue #19535: Fixed test_docxmlrpc, test_functools, test_inspect, and | Serhiy Storchaka | 2013-12-08 | 4 | -4/+11 |
|\ \ | |/ | | | | | test_statistics when python is run with -OO. | ||||
| * | Issue #19535: Fixed test_docxmlrpc when python is run with -OO. | Serhiy Storchaka | 2013-12-08 | 1 | -2/+4 |
| | | |||||
* | | Issue #19343: Expose FreeBSD-specific APIs in resource module. Original ↵ | Christian Heimes | 2013-12-08 | 1 | -0/+6 |
| | | | | | | | | patch by Koobs. | ||||
* | | Fix test_selectors failure introduced by 39e7995f9ad1. | Charles-François Natali | 2013-12-08 | 1 | -0/+1 |
| | | |||||
* | | Remove mentions of Python 2.x and being externally maintained from | Gregory P. Smith | 2013-12-08 | 1 | -5/+2 |
|\ \ | |/ | | | | | | | the bundled json module. Replace that with a mention of it being a version of the externally maintained simplejson module. | ||||
| * | Remove mentions of Python 2.x and being externally maintained from | Gregory P. Smith | 2013-12-08 | 1 | -5/+2 |
| | | | | | | | | | | the bundled json module. Replace that with a mention of it being a version of the externally maintained simplejson module. | ||||
* | | Issue #19926: Removed unneeded test_main from test_abstract_numbers. | Zachary Ware | 2013-12-08 | 1 | -4/+0 |
|\ \ | |/ | | | | | Patch by Vajrasky Kok. | ||||
| * | Issue #19926: Removed unneeded test_main from test_abstract_numbers. | Zachary Ware | 2013-12-08 | 1 | -4/+0 |
| | | | | | | | | Patch by Vajrasky Kok. | ||||
* | | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 34 | -146/+137 |
|\ \ | |/ | |||||
| * | Normalize whitespace | Zachary Ware | 2013-12-08 | 1 | -1/+1 |
| | | |||||
| * | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 33 | -137/+125 |
| | | |||||
* | | Fixes issue #19506: Use a memoryview to avoid a data copy when piping data | Gregory P. Smith | 2013-12-08 | 1 | -2/+5 |
|\ \ | |/ | | | | | to stdin within subprocess.Popen.communicate. 5-10% less cpu usage. | ||||
| * | Fixes issue #19506: Use a memoryview to avoid a data copy when piping data | Gregory P. Smith | 2013-12-08 | 1 | -2/+5 |
| | | | | | | | | to stdin within subprocess.Popen.communicate. 5-10% less cpu usage. | ||||
| * | Issue #19857: Make sure that test_imaplib reaps server threads even in face of | Charles-François Natali | 2013-12-07 | 1 | -7/+6 |
| | | | | | | | | error upon client disconnection. | ||||
* | | Issue #19758: silence PendingDeprecationWarnings in test_importlib. | Eric Snow | 2013-12-08 | 1 | -4/+8 |
| | | |||||
* | | Silently ignore unregistering closed files. Fixes issue 19876. With docs and ↵ | Guido van Rossum | 2013-12-07 | 2 | -46/+124 |
| | | | | | | | | slight test refactor. | ||||
* | | Issue #19857: Make sure that test_imaplib reaps server threads even in face of | Charles-François Natali | 2013-12-07 | 1 | -7/+6 |
| | | | | | | | | error upon client disconnection. | ||||
* | | Solaris needs a readable file for shared lock | Christian Heimes | 2013-12-07 | 1 | -1/+2 |
| | | |||||
* | | Remove a duplicated import | Victor Stinner | 2013-12-07 | 1 | -1/+0 |
| | | |||||
* | | Issue #6784: Strings from Python 2 can now be unpickled as bytes objects. | Alexandre Vassalotti | 2013-12-07 | 4 | -123/+167 |
| | | | | | | | | | | | | | | Initial patch by Merlijn van Deen. I've added a few unrelated docstring fixes in the patch while I was at it, which makes the documentation for pickle a bit more consistent. | ||||
* | | copy 'n paste typo (thx Antoine) | Christian Heimes | 2013-12-06 | 1 | -5/+5 |
| | | |||||
* | | Skip new SSL tests with IocpEventLoop | Christian Heimes | 2013-12-06 | 1 | -0/+9 |
| | | |||||
* | | asyncio: Add Task.current_task() class method. | Guido van Rossum | 2013-12-06 | 3 | -1/+57 |
| | | |||||
* | | Issue #19712: Update test.test_importlib.source for PEP 451 | Brett Cannon | 2013-12-06 | 4 | -24/+140 |
| | | |||||
* | | Issue #19712: Update test.test_importlib.import_ to test/use PEP 451 | Brett Cannon | 2013-12-06 | 8 | -61/+114 |
| | | | | | | | | where appropriate. | ||||
* | | Test same drive in different cases (issue #19908). | Serhiy Storchaka | 2013-12-06 | 1 | -2/+2 |
| | | |||||
* | | Issue #19908: pathlib now joins relative Windows paths correctly when a drive | Serhiy Storchaka | 2013-12-06 | 2 | -5/+51 |
| | | | | | | | | is present. Original patch by Antoine Pitrou. | ||||
* | | Issue #19881: Fix bad pickling of large bytes in cpickle. | Alexandre Vassalotti | 2013-12-06 | 1 | -21/+54 |
| | | |||||
* | | fix cert names for asyncio test | Christian Heimes | 2013-12-06 | 1 | -2/+2 |
| | | |||||
* | | Issue #19509: Finish implementation of check_hostname | Christian Heimes | 2013-12-05 | 8 | -57/+319 |
| | | | | | | | | The new asyncio package now supports the new feature and comes with additional tests for SSL. | ||||
* | | Issue #19850: asyncio: Set SA_RESTART when registering a signal handler to | Charles-François Natali | 2013-12-05 | 1 | -0/+2 |
| | | | | | | | | limit EINTR occurrences. | ||||
* | | Add simple test for fcntl.flock() | Christian Heimes | 2013-12-05 | 1 | -0/+15 |
| | | |||||
* | | Test syslog.openlog() without args to test syslog_get_argv() | Christian Heimes | 2013-12-05 | 1 | -0/+4 |
| | | |||||
* | | normalize white space | Christian Heimes | 2013-12-05 | 1 | -1/+1 |
| | | |||||
* | | Issue 19509: Don't call match_hostname() twice in http.client. | Christian Heimes | 2013-12-05 | 1 | -6/+6 |
| | | |||||
* | | Add a script similar to xmltests.py to run all SSL-related unit tests | Christian Heimes | 2013-12-05 | 1 | -0/+22 |
| | | |||||
* | | Test SSLSock's context getter and setter | Christian Heimes | 2013-12-05 | 1 | -0/+14 |
| | |