Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #10712: 2to3 has a new "asserts" fixer that replaces deprecated names of ↵ | Ezio Melotti | 2013-11-23 | 2 | -0/+84 |
| | | | | unittest methods. | ||||
* | Fix whitespace | Antoine Pitrou | 2013-11-23 | 1 | -3/+3 |
| | |||||
* | Issue #17810: Implement PEP 3154, pickle protocol 4. | Antoine Pitrou | 2013-11-23 | 5 | -522/+1629 |
| | | | | Most of the work is by Alexandre. | ||||
* | #13633: Added a new convert_charrefs keyword arg to HTMLParser that, when ↵ | Ezio Melotti | 2013-11-23 | 2 | -25/+107 |
| | | | | True, automatically converts all character references. | ||||
* | Fixed incorrectly applying a patch for issue19668. | Serhiy Storchaka | 2013-11-23 | 2 | -26/+724 |
| | |||||
* | Relax timing even more, hopefully again fixes issue 19579. | Guido van Rossum | 2013-11-23 | 1 | -1/+1 |
| | |||||
* | Merge heads | Serhiy Storchaka | 2013-11-23 | 1 | -1/+3 |
|\ | |||||
| * | Isue #19634: test_y_before_1900() is expected to fail on Solaris | Victor Stinner | 2013-11-23 | 1 | -1/+3 |
| | | |||||
* | | Issue #19668: Added support for the cp1125 encoding. | Serhiy Storchaka | 2013-11-23 | 5 | -31/+38 |
|/ | |||||
* | Issue #19308: fix the gdb plugin on gdbs linked with Python 3 | Antoine Pitrou | 2013-11-23 | 1 | -1/+1 |
| | |||||
* | merge | Christian Heimes | 2013-11-23 | 10 | -42/+156 |
|\ | |||||
| * | Issue #19715: try the utime(..., None) approach again, now that it should be ↵ | Antoine Pitrou | 2013-11-23 | 2 | -8/+3 |
| | | | | | | | | more precise under Windows | ||||
| * | Issue #17201: ZIP64 extensions now are enabled by default. | Serhiy Storchaka | 2013-11-23 | 3 | -8/+8 |
| | | | | | | | | Patch by William Mallard. | ||||
| * | Issue #19716: add a test that Path.touch() doesn't change a file's contents. | Antoine Pitrou | 2013-11-23 | 1 | -0/+7 |
| | | | | | | | | Patch by Kushal Das. | ||||
| * | Merge heads | Serhiy Storchaka | 2013-11-23 | 3 | -26/+131 |
| |\ | |||||
| | * | Merge | Michael Foord | 2013-11-23 | 1 | -15/+2 |
| | |\ | |||||
| | | * | Remove shadowed test | Michael Foord | 2013-09-15 | 1 | -15/+2 |
| | | | | |||||
| | * | | Issue 17457: extend test discovery to support namespace packages | Michael Foord | 2013-11-23 | 2 | -11/+129 |
| | | | | |||||
| * | | | Issue #19733: Temporary disable test_image on MacOSX. | Serhiy Storchaka | 2013-11-23 | 2 | -0/+7 |
| |\ \ \ | | |/ / | |/| | | |||||
| | * | | Issue #19733: Temporary disable test_image on MacOSX. | Serhiy Storchaka | 2013-11-23 | 2 | -0/+7 |
| | | | | |||||
* | | | | Issue #19689: Add ssl.create_default_context() factory function. It creates | Christian Heimes | 2013-11-23 | 2 | -0/+55 |
|/ / / | | | | | | | | | | a new SSLContext object with secure default settings. | ||||
* | | | Issue #19292: Add SSLContext.load_default_certs() to load default root CA | Christian Heimes | 2013-11-23 | 2 | -0/+60 |
| | | | | | | | | | | | | | | | certificates from default stores or system stores. By default the method loads CA certs for authentication of server certs. | ||||
* | | | Issue #18874: Remove tracemalloc.set_traceback_limit() | Victor Stinner | 2013-11-23 | 1 | -12/+9 |
| | | | | | | | | | | | | tracemalloc.start() now has an option nframe parameter | ||||
* | | | Issue #18874: Implement the PEP 454 (tracemalloc) | Victor Stinner | 2013-11-23 | 6 | -5/+1285 |
| | | | |||||
* | | | Fix transport docstrings | Antoine Pitrou | 2013-11-23 | 1 | -5/+5 |
| | | | |||||
* | | | Issue #8813: X509_VERIFY_PARAM is only available on OpenSSL 0.9.8+ | Christian Heimes | 2013-11-23 | 1 | -0/+8 |
| | | | | | | | | | | | | The patch removes the verify_flags feature on Mac OS X 10.4 with OpenSSL 0.9.7l 28 Sep 2006. | ||||
* | | | Close #19694: venv now runs ensurepip in isolated mode | Nick Coghlan | 2013-11-23 | 2 | -4/+12 |
| | | | |||||
* | | | Close #7475: Restore binary & text transform codecs | Nick Coghlan | 2013-11-23 | 2 | -18/+38 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The codecs themselves were restored in Python 3.2, this completes the restoration by adding back the convenience aliases. These aliases were originally left out due to confusing errors when attempting to use them with the text encoding specific convenience methods. Python 3.4 includes several improvements to those errors, thus permitting the aliases to be restored as well. | ||||
* | | | Revert utime(..., None) strategy (it has too poor resolution under Windows) ↵ | Antoine Pitrou | 2013-11-23 | 2 | -3/+8 |
| | | | | | | | | | | | | | | | | | | and restore the previous test workaround (issue #19715) | ||||
* | | | Trying other strategy for #19715: use utime(..., None) | Antoine Pitrou | 2013-11-23 | 2 | -8/+3 |
| | | | |||||
* | | | Try to fix issue #19715 (timestamp rounding inconsistencies under Windows?) | Antoine Pitrou | 2013-11-23 | 1 | -3/+7 |
| | | | |||||
* | | | Issue #19715: Ensure that consecutive calls to monotonic() are monotonic | Victor Stinner | 2013-11-22 | 1 | -0/+9 |
| | | | |||||
* | | | Try to debug issue #19715 | Antoine Pitrou | 2013-11-22 | 1 | -2/+6 |
| | | | |||||
* | | | Issue #19718: add one more globbing test under POSIX | Antoine Pitrou | 2013-11-22 | 1 | -0/+2 |
| | | | |||||
* | | | merge | Brett Cannon | 2013-11-22 | 3 | -12/+43 |
|\ \ \ | |||||
| * \ \ | Merge heads. | Eric Snow | 2013-11-22 | 1 | -0/+2 |
| |\ \ \ | |||||
| | * | | | Issue #19724: clear out colliding temp module. | Eric Snow | 2013-11-22 | 1 | -0/+2 |
| | | | | | |||||
| * | | | | Issue 19555 for distutils, plus a little clean up (pyflakes, line lengths). | Barry Warsaw | 2013-11-22 | 2 | -12/+41 |
| |/ / / | |||||
* | | | | Issue #19718: Add a case-insensitive FS check to test.support to use | Brett Cannon | 2013-11-22 | 2 | -3/+21 |
|/ / / | | | | | | | | | | | | | | | | | | | in test_pathlib. Purposefully designed to work from a specified directory in case multiple file systems are used on the system. | ||||
* | | | merge | Brett Cannon | 2013-11-22 | 2 | -3/+26 |
|\ \ \ | |||||
| * | | | asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl ↵ | Guido van Rossum | 2013-11-22 | 2 | -3/+26 |
| | | | | | | | | | | | | | | | | Ibarra Corretgé (mostly). | ||||
* | | | | User the repr for a module name in more places | Brett Cannon | 2013-11-22 | 1 | -6/+6 |
|/ / / | |||||
* | | | Make test_importlib output easier to trace back to the failing test | Brett Cannon | 2013-11-22 | 1 | -0/+1 |
| | | | | | | | | | | | | class. | ||||
* | | | Issue #18864: Don't try and use unittest as a testing module for | Brett Cannon | 2013-11-22 | 1 | -6/+18 |
| | | | | | | | | | | | | | | | built-in loading; leads to a reload scenario where attributes get set which are wrong after the test. | ||||
* | | | Make some tests more verbose in the face of failure | Brett Cannon | 2013-11-22 | 1 | -2/+6 |
| | | | |||||
* | | | Remove a commented-out line | Brett Cannon | 2013-11-22 | 1 | -2/+0 |
| | | | |||||
* | | | Hopefully fix test_is_socket_true | Antoine Pitrou | 2013-11-22 | 1 | -2/+6 |
| | | | |||||
* | | | Don't assume trying to find a builtin will succeed (e.g. posix isn't on Windows) | Brett Cannon | 2013-11-22 | 1 | -0/+2 |
| | | | |||||
* | | | Fix test failure under systems with an incompatible locale | Antoine Pitrou | 2013-11-22 | 1 | -1/+8 |
| | | | |||||
* | | | Fix whitespace | Antoine Pitrou | 2013-11-22 | 1 | -1/+0 |
| | | |