summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15441: Skip test_nonascii_abspath() of test_genericpath on WindowsVictor Stinner2012-08-011-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 functionsVictor Stinner2012-08-011-0/+24
| | | | to 500 characters.
* Issue #8847: Merge with 3.2Martin v. Löwis2012-08-012-0/+16
|\
| * Issue #8847: Disable COMDAT folding in Windows PGO builds.Martin v. Löwis2012-08-012-0/+16
| | | | | | | | Analysis by Victor Stinner. Patch by Stefan Krah.
* | abc fixes.Barry Warsaw2012-07-312-0/+13
| |
* | Issue #15425: Don't rely on the assumption that the current working ↵Nick Coghlan2012-07-311-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 Coghlan2012-07-311-2/+4
| | | | | | | | tracebacks when they just introduce irrelevant noise
* | Fix initialization of the faulthandler moduleVictor Stinner2012-07-311-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 Pitrou2012-07-301-1/+1
| | | | | | | | | | | | (s)size_t. Followup to issue #15489.
* | Issue #15489: Add a __sizeof__ implementation for BytesIO objects.Antoine Pitrou2012-07-291-0/+11
|\ \ | |/ | | | | Patch by Serhiy Storchaka.
| * Issue #15489: Add a __sizeof__ implementation for BytesIO objects.Antoine Pitrou2012-07-291-0/+11
| | | | | | | | Patch by Serhiy Storchaka.
* | Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.Antoine Pitrou2012-07-291-3/+17
|\ \ | |/ | | | | Patch by Serhiy Storchaka.
| * Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.Antoine Pitrou2012-07-291-3/+17
| | | | | | | | Patch by Serhiy Storchaka.
* | Issue #15467: Merge 3.2Martin v. Löwis2012-07-294-171/+135
|\ \ | |/
| * Issue #15467: Move helpers for __sizeof__ tests into test_support.Martin v. Löwis2012-07-293-148/+121
| | | | | | | | Patch by Serhiy Storchaka.
* | Close #15425: Eliminate more importlib related traceback noiseNick Coghlan2012-07-291-0/+68
| |
* | Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.Meador Inge2012-07-291-10/+41
|\ \ | |/
| * Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.Meador Inge2012-07-291-10/+41
| |
| * Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.Richard Oudkerk2012-07-271-1/+35
| | | | | | | | Original patch by J Derek Wilson.
* | Issue #1692335: Move initial args assignment to BaseException.__new__Richard Oudkerk2012-07-281-1/+15
| | | | | | | | to help pickling of naive subclasses.
* | Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays.Stefan Krah2012-07-281-1/+290
| |
* | Issue #15364: Fix test_srcdir for the installed case.Ned Deily2012-07-281-1/+2
| |
* | Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.Richard Oudkerk2012-07-271-1/+35
| | | | | | | | Original patch by J Derek Wilson.
* | Issue #15364: Fix sysconfig.get_config_var('srcdir') to be an absolute path.Richard Oudkerk2012-07-271-0/+28
| |
* | Issue #15456: Fix code __sizeof__ after #12399 change.Martin v. Löwis2012-07-261-0/+6
| | | | | | | | Patch by Serhiy Storchaka.
* | Restored test by specifying that the symlink links to a target (currently ↵Jason R. Coombs2012-07-261-3/+2
| | | | | | | | required for Windows symlinks). See issue15093 for details.
* | Issue #15320: Make iterating the list of tests thread-safe when running ↵Antoine Pitrou2012-07-251-13/+29
|\ \ | |/ | | | | | | | | tests in multiprocess mode. Patch by Chris Jerdonek.
| * Issue #15320: Make iterating the list of tests thread-safe when running ↵Antoine Pitrou2012-07-251-12/+28
| | | | | | | | | | | | tests in multiprocess mode. Patch by Chris Jerdonek.
* | MERGE: Better test for Issue #15402: Add a __sizeof__ method to struct.StructJesus Cea2012-07-231-4/+4
|\ \ | |/
| * Better test for Issue #15402: Add a __sizeof__ method to struct.StructJesus Cea2012-07-231-4/+4
| |
* | Issue #15402: Add a __sizeof__ method to struct.Struct.Meador Inge2012-07-231-0/+10
|\ \ | |/ | | | | Initial patch by Serhiy Storchaka.
| * Issue #15402: Add a __sizeof__ method to struct.Struct.Meador Inge2012-07-231-0/+10
| | | | | | | | Initial patch by Serhiy Storchaka.
* | Merge #15232: correctly mangle From lines in MIME preamble and epilogueR David Murray2012-07-231-0/+22
|\ \ | |/
* | Issue #15184: Fix test__remove_unsupported_archs failures on 10.6Ned Deily2012-07-221-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.newGregory P. Smith2012-07-221-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.newGregory P. Smith2012-07-221-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 Murray2012-07-221-12/+26
|\ \ | |/ | | | | Patch by Jeff Knupp.
| * #13922: argparse no longer incorrectly strips '--' after the first one.R David Murray2012-07-221-12/+26
| | | | | | | | Patch by Jeff Knupp.
* | Merge #12353: argparse now correctly handles null argument values.R David Murray2012-07-221-0/+1
|\ \ | |/ | | | | Patch by Torsten Landschoff.
| * #12353: argparse now correctly handles null argument values.R David Murray2012-07-221-0/+1
| | | | | | | | Patch by Torsten Landschoff.
* | Issue #15184: Ensure configuration-related environment variablesNed Deily2012-07-211-59/+63
| | | | | | | | are unset during test execution.
* | Remove a relative import that escaped test.test_importlib.Brett Cannon2012-07-211-1/+1
| |
* | Issue #15184: Ensure consistent results of OS X configurationNed Deily2012-07-212-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 Xicluna2012-07-211-2/+3
|\ \ | |/
| * Fix test_pprint random dict ordering.Florent Xicluna2012-07-211-2/+3
| |
* | Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with ↵Florent Xicluna2012-07-211-0/+9
|\ \ | |/ | | | | unorderable key.
| * Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with ↵Florent Xicluna2012-07-211-0/+9
| | | | | | | | unorderable key.
* | Port additional tests from #14579 (the issue is already fixed).Antoine Pitrou2012-07-201-4/+26
|\ \ | |/
| * Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after ↵Antoine Pitrou2012-07-201-4/+26
| | | | | | | | | | | | error handling. Patch by Serhiy Storchaka.
* | Fix another import error.Brett Cannon2012-07-201-2/+2
| |