| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #15441: Skip test_nonascii_abspath() of test_genericpath on Windows | Victor Stinner | 2012-08-01 | 1 | -3/+11 |
| | | | | | if the bytes filenames cannot be encoded from the file system (ANSI) code page | ||||
| * | Issue #15463: Write a test for faulthandler truncating the name of functions | Victor Stinner | 2012-08-01 | 1 | -0/+24 |
| | | | | | to 500 characters. | ||||
| * | Issue #8847: Merge with 3.2 | Martin v. Löwis | 2012-08-01 | 2 | -0/+16 |
| |\ | |||||
| | * | Issue #8847: Disable COMDAT folding in Windows PGO builds. | Martin v. Löwis | 2012-08-01 | 2 | -0/+16 |
| | | | | | | | | | Analysis by Victor Stinner. Patch by Stefan Krah. | ||||
| * | | abc fixes. | Barry Warsaw | 2012-07-31 | 2 | -0/+13 |
| | | | |||||
| * | | Issue #15425: Don't rely on the assumption that the current working ↵ | Nick Coghlan | 2012-07-31 | 1 | -7/+5 |
| | | | | | | | | | directory is on sys.path (this will hopefully appease the XP buildbots) | ||||
| * | | Close #15486: Simplify the mechanism used to remove importlib frames from ↵ | Nick Coghlan | 2012-07-31 | 1 | -2/+4 |
| | | | | | | | | | tracebacks when they just introduce irrelevant noise | ||||
| * | | Fix initialization of the faulthandler module | Victor Stinner | 2012-07-31 | 1 | -0/+15 |
| | | | | | | | | | | | | | | | faulthandler requires the importlib if "-X faulthandler" option is present on the command line, so initialize faulthandler after importlib. Add also an unit test. | ||||
| * | | Better test for BytesIO.__sizeof__, now that the struct module supports ↵ | Antoine Pitrou | 2012-07-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | (s)size_t. Followup to issue #15489. | ||||
| * | | Issue #15489: Add a __sizeof__ implementation for BytesIO objects. | Antoine Pitrou | 2012-07-29 | 1 | -0/+11 |
| |\ \ | |/ | | | | | Patch by Serhiy Storchaka. | ||||
| | * | Issue #15489: Add a __sizeof__ implementation for BytesIO objects. | Antoine Pitrou | 2012-07-29 | 1 | -0/+11 |
| | | | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. | Antoine Pitrou | 2012-07-29 | 1 | -3/+17 |
| |\ \ | |/ | | | | | Patch by Serhiy Storchaka. | ||||
| | * | Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. | Antoine Pitrou | 2012-07-29 | 1 | -3/+17 |
| | | | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | Issue #15467: Merge 3.2 | Martin v. Löwis | 2012-07-29 | 4 | -171/+135 |
| |\ \ | |/ | |||||
| | * | Issue #15467: Move helpers for __sizeof__ tests into test_support. | Martin v. Löwis | 2012-07-29 | 3 | -148/+121 |
| | | | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | Close #15425: Eliminate more importlib related traceback noise | Nick Coghlan | 2012-07-29 | 1 | -0/+68 |
| | | | |||||
| * | | Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. | Meador Inge | 2012-07-29 | 1 | -10/+41 |
| |\ \ | |/ | |||||
| | * | Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. | Meador Inge | 2012-07-29 | 1 | -10/+41 |
| | | | |||||
| | * | Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. | Richard Oudkerk | 2012-07-27 | 1 | -1/+35 |
| | | | | | | | | | Original patch by J Derek Wilson. | ||||
| * | | Issue #1692335: Move initial args assignment to BaseException.__new__ | Richard Oudkerk | 2012-07-28 | 1 | -1/+15 |
| | | | | | | | | | to help pickling of naive subclasses. | ||||
| * | | Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. | Stefan Krah | 2012-07-28 | 1 | -1/+290 |
| | | | |||||
| * | | Issue #15364: Fix test_srcdir for the installed case. | Ned Deily | 2012-07-28 | 1 | -1/+2 |
| | | | |||||
| * | | Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. | Richard Oudkerk | 2012-07-27 | 1 | -1/+35 |
| | | | | | | | | | Original patch by J Derek Wilson. | ||||
| * | | Issue #15364: Fix sysconfig.get_config_var('srcdir') to be an absolute path. | Richard Oudkerk | 2012-07-27 | 1 | -0/+28 |
| | | | |||||
| * | | Issue #15456: Fix code __sizeof__ after #12399 change. | Martin v. Löwis | 2012-07-26 | 1 | -0/+6 |
| | | | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | Restored test by specifying that the symlink links to a target (currently ↵ | Jason R. Coombs | 2012-07-26 | 1 | -3/+2 |
| | | | | | | | | | required for Windows symlinks). See issue15093 for details. | ||||
| * | | Issue #15320: Make iterating the list of tests thread-safe when running ↵ | Antoine Pitrou | 2012-07-25 | 1 | -13/+29 |
| |\ \ | |/ | | | | | | | | | tests in multiprocess mode. Patch by Chris Jerdonek. | ||||
| | * | Issue #15320: Make iterating the list of tests thread-safe when running ↵ | Antoine Pitrou | 2012-07-25 | 1 | -12/+28 |
| | | | | | | | | | | | | | tests in multiprocess mode. Patch by Chris Jerdonek. | ||||
| * | | MERGE: Better test for Issue #15402: Add a __sizeof__ method to struct.Struct | Jesus Cea | 2012-07-23 | 1 | -4/+4 |
| |\ \ | |/ | |||||
| | * | Better test for Issue #15402: Add a __sizeof__ method to struct.Struct | Jesus Cea | 2012-07-23 | 1 | -4/+4 |
| | | | |||||
| * | | Issue #15402: Add a __sizeof__ method to struct.Struct. | Meador Inge | 2012-07-23 | 1 | -0/+10 |
| |\ \ | |/ | | | | | Initial patch by Serhiy Storchaka. | ||||
| | * | Issue #15402: Add a __sizeof__ method to struct.Struct. | Meador Inge | 2012-07-23 | 1 | -0/+10 |
| | | | | | | | | | Initial patch by Serhiy Storchaka. | ||||
| * | | Merge #15232: correctly mangle From lines in MIME preamble and epilogue | R David Murray | 2012-07-23 | 1 | -0/+22 |
| |\ \ | |/ | |||||
| * | | Issue #15184: Fix test__remove_unsupported_archs failures on 10.6 | Ned Deily | 2012-07-22 | 1 | -1/+9 |
| | | | | | | | | | | | | | by removing unwarranted assumptions that clang compiler chain cannot handle ppc (the driver passes off ppc compiles to gcc). Mock the behavior instead. | ||||
| * | | Consistently raise a TypeError when a non str is passed to hashlib.new | Gregory P. Smith | 2012-07-22 | 1 | -0/+1 |
| |\ \ | |/ | | | | | regardless of which of the two implementations of new is used. | ||||
| | * | Consistently raise a TypeError when a non str is passed to hashlib.new | Gregory P. Smith | 2012-07-22 | 1 | -6/+3 |
| | | | | | | | | | regardless of which of the two implementations of new is used. | ||||
| * | | Merge #13922: argparse no longer incorrectly strips '--' after the first one. | R David Murray | 2012-07-22 | 1 | -12/+26 |
| |\ \ | |/ | | | | | Patch by Jeff Knupp. | ||||
| | * | #13922: argparse no longer incorrectly strips '--' after the first one. | R David Murray | 2012-07-22 | 1 | -12/+26 |
| | | | | | | | | | Patch by Jeff Knupp. | ||||
| * | | Merge #12353: argparse now correctly handles null argument values. | R David Murray | 2012-07-22 | 1 | -0/+1 |
| |\ \ | |/ | | | | | Patch by Torsten Landschoff. | ||||
| | * | #12353: argparse now correctly handles null argument values. | R David Murray | 2012-07-22 | 1 | -0/+1 |
| | | | | | | | | | Patch by Torsten Landschoff. | ||||
| * | | Issue #15184: Ensure configuration-related environment variables | Ned Deily | 2012-07-21 | 1 | -59/+63 |
| | | | | | | | | | are unset during test execution. | ||||
| * | | Remove a relative import that escaped test.test_importlib. | Brett Cannon | 2012-07-21 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #15184: Ensure consistent results of OS X configuration | Ned Deily | 2012-07-21 | 2 | -1/+276 |
| | | | | | | | | | | | | | | | tailoring for universal builds by factoring out common OS X-specific customizations from sysconfig, distutils.sysconfig, distutils.util, and distutils.unixccompiler into a new module _osx_support that can eventually also be used by packaging. | ||||
| * | | Fix test_pprint random dict ordering. | Florent Xicluna | 2012-07-21 | 1 | -2/+3 |
| |\ \ | |/ | |||||
| | * | Fix test_pprint random dict ordering. | Florent Xicluna | 2012-07-21 | 1 | -2/+3 |
| | | | |||||
| * | | Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with ↵ | Florent Xicluna | 2012-07-21 | 1 | -0/+9 |
| |\ \ | |/ | | | | | unorderable key. | ||||
| | * | Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with ↵ | Florent Xicluna | 2012-07-21 | 1 | -0/+9 |
| | | | | | | | | | unorderable key. | ||||
| * | | Port additional tests from #14579 (the issue is already fixed). | Antoine Pitrou | 2012-07-20 | 1 | -4/+26 |
| |\ \ | |/ | |||||
| | * | Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after ↵ | Antoine Pitrou | 2012-07-20 | 1 | -4/+26 |
| | | | | | | | | | | | | | error handling. Patch by Serhiy Storchaka. | ||||
| * | | Fix another import error. | Brett Cannon | 2012-07-20 | 1 | -2/+2 |
| | | | |||||
