summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Undo supposed fix for Issue #15798 until I understand why this isGregory P. Smith2013-12-011-21/+0
|\ | | | | | | | | causing test_multiprocessing_forkserver and test_multiprocessing_spawn failures on head (3.4).
| * Undo supposed fix for Issue #15798 until I understand why this isGregory P. Smith2013-12-011-21/+0
| | | | | | | | | | causing test_multiprocessing_forkserver and test_multiprocessing_spawn failures on head (3.4).
* | Fixes Issue #15798 - subprocess.Popen() no longer fails if fileGregory P. Smith2013-12-011-0/+21
|\ \ | |/ | | | | descriptor 0, 1 or 2 is closed.
| * Fixes Issue #15798 - subprocess.Popen() no longer fails if fileGregory P. Smith2013-12-011-0/+21
| | | | | | | | descriptor 0, 1 or 2 is closed.
* | Issue #6477: Merge with 3.3.Alexandre Vassalotti2013-12-011-0/+9
|\ \ | |/
| * Issue #6477: Added support for pickling the types of built-in singletons.Alexandre Vassalotti2013-12-011-0/+9
| |
* | Merge with 3.3.Alexandre Vassalotti2013-11-301-18/+22
|\ \ | |/
| * Fixed _pickle.Unpickler to handle empty persistent IDs correctly.Alexandre Vassalotti2013-11-301-18/+22
| |
| * Issue #19595: Re-enable a long-disabled test in test_winsoundZachary Ware2013-11-281-12/+8
| |
* | Issue #19728: don't be sensitive to line endingsNick Coghlan2013-11-301-9/+5
| |
* | Issue #19728: add private ensurepip._uninstall CLINick Coghlan2013-11-302-16/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | MvL would like to be able to preserve CPython's existing clean uninstall behaviour on Windows before enabling the pip installation option by default. This private CLI means running "python -m ensurepip._uninstall" will remove pip and setuptools before proceeding with the rest of the uninstallation process. If the version of pip differs from the one bootstrapped by CPython, then the uninstallation helper will leave it alone (just like any other pip installed packages)
* | Fix and test pip version consistencyNick Coghlan2013-11-301-1/+3
| |
* | Issue #3693: Fix array obscure error message when given a str.Alexandre Vassalotti2013-11-301-0/+12
| |
* | Issue #19712: Port test.test_importlib.import_ tests to use PEP 451Brett Cannon2013-11-293-16/+68
| | | | | | | | that don't require changing test.test_importlib.util.mock_modules().
* | Issue #19698: Remove exec_module() from the built-in and extensionBrett Cannon2013-11-292-137/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | module loaders. Due to the fact that the call signatures for extension modules and built-in modules does not allow for the specifying of what module to initialize and that on Windows all extension modules are built-in modules, work to clean up built-in and extension module initialization will have to wait until Python 3.5. Because of this the semantics of exec_module() would be incorrect, so removing the methods for now is the best option; load_module() is still used as a fallback by importlib and so this won't affect semantics.
* | Issue #19815: Fix segfault when parsing empty namespace declaration.Eli Bendersky2013-11-281-0/+5
|\ \ | |/ | | | | Based on patches by Christian Heimes and Vajrasky Kok
| * Issue #19815: Fix segfault when parsing empty namespace declaration.Eli Bendersky2013-11-281-0/+5
| | | | | | | | Based on patches by Christian Heimes and Vajrasky Kok
* | Issue #19595: Re-enable a long-disabled test in test_winsoundZachary Ware2013-11-281-12/+8
| |
* | asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() ↵Guido van Rossum2013-11-271-47/+156
| | | | | | | | accept bytearray/memoryview too. Change some asserts with proper exceptions.
* | Closes #19786: tracemalloc, remove the arbitrary limit of 100 framesVictor Stinner2013-11-271-6/+6
| | | | | | | | | | | | | | | | The limit is now 178,956,969 on 64 bit (it is greater on 32 bit because structures are smaller). Use int instead of Py_ssize_t to store the number of frames to have smaller traceback_t objects.
* | Close #19798: replace "maximum" term with "peak" in get_traced_memory()Victor Stinner2013-11-271-7/+7
| | | | | | | | documentation. Use also the term "current" for the current size.
* | asyncio: Fix get_event_loop() to call set_event_loop() when setting the ↵Guido van Rossum2013-11-271-0/+16
| | | | | | | | loop. By Anthony Baire.
* | Skip test_find_mac on Windows (issue #19804).Serhiy Storchaka2013-11-271-0/+1
|\ \ | |/ | | | | This test requires the ifconfig executable on $PATH, /sbin/, or /usr/sbin.
| * Skip test_find_mac on Windows (issue #19804).Serhiy Storchaka2013-11-271-0/+1
| | | | | | | | This test requires the ifconfig executable on $PATH, /sbin/, or /usr/sbin.
* | merge 3.3 (#19729)Benjamin Peterson2013-11-271-0/+2
|\ \ | |/
| * fix format spec recursive expansion (closes #19729)Benjamin Peterson2013-11-271-0/+1
| |
| * Merge headsZachary Ware2013-11-261-0/+21
| |\
* | \ Merge headsZachary Ware2013-11-261-0/+21
|\ \ \
| * \ \ Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment withSerhiy Storchaka2013-11-261-0/+21
| |\ \ \ | | | |/ | | |/| | | | | virtual interface. Original patch by Kent Frazier.
| | * | Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment withSerhiy Storchaka2013-11-261-0/+21
| | | | | | | | | | | | | | | | virtual interface. Original patch by Kent Frazier.
* | | | Issue #19588: Merge with 3.3Zachary Ware2013-11-261-6/+6
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | Issue #19588: Fixed tests in test_random that were silently skipped mostZachary Ware2013-11-261-6/+6
| |/ | | | | | | of the time. Patch by Julian Gindi.
* | Use @bigmemtest more accurately.Mark Dickinson2013-11-261-3/+3
|\ \ | |/
| * Use @bigmemtest more accurately.Mark Dickinson2013-11-261-3/+3
| |
* | Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-4/+47
|\ \ | |/
| * Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-4/+47
| |
* | Issue #19638: Merge from 3.3Mark Dickinson2013-11-261-0/+31
|\ \ | |/
| * Issue #19638: Raise ValueError instead of crashing when converting billion ↵Mark Dickinson2013-11-261-0/+31
| | | | | | | | character strings to float.
* | Issue #19760: Silence sysconfig's 'SO' key deprecation warnings in tests.Serhiy Storchaka2013-11-261-3/+4
| | | | | | | | Change stacklevel in warnings.warn() for 'SO' key to 2.
* | Fix suspicious test caseChristian Heimes2013-11-261-2/+2
| |
* | Issue #19742: fix a test_pathlib failure when a file owner or group isn't in ↵Antoine Pitrou2013-11-251-2/+10
| | | | | | | | the system database
* | asyncio: Hopeful fix for issue 19765.Guido van Rossum2013-11-251-0/+1
| |
* | asyncio: Change mock pipe to mock socket. Hope to fix issue 19750.Guido van Rossum2013-11-251-1/+1
| |
* | Issue #19753: New try to fix test_gdb on System Z buildbotVictor Stinner2013-11-251-0/+2
| |
* | Cleanup test_tracemalloc.py. Patch written by Vajrasky Kok.Victor Stinner2013-11-251-4/+2
| |
* | Issue #19758: silence PendingDeprecationWarnings in test_hmacChristian Heimes2013-11-241-14/+33
| | | | | | | | I also removed some bare excepts from the tests.
* | Issue #15204: Silence and check the 'U' mode deprecation warnings in tests.Serhiy Storchaka2013-11-244-12/+32
| | | | | | | | Changed deprecation message in the fileinput module.
* | Merge from 3.3.Stefan Krah2013-11-241-0/+1
|\ \ | |/
| * 1) Prepare libmpdec for the 2.4.0 release. None of the following changes ↵Stefan Krah2013-11-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | affects _decimal: o Make all "mpd_t to C integer" conversion functions available in both the 64-bit and the 32-bit versions. o Make all mixed mpd_t/C integer arithmetic functions available in the 32-bit version. o Better handling of __STDC_LIMIT_MACROS for C++ users. o Add struct tags (at the request of C++ users). 2) Check for libmpdec.so.2 if --with-system-libmpdec is used.
* | Issue #19753: Try to fix test_gdb on SystemZ buildbotVictor Stinner2013-11-241-0/+1
| |