Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Undo supposed fix for Issue #15798 until I understand why this is | Gregory P. Smith | 2013-12-01 | 1 | -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 is | Gregory P. Smith | 2013-12-01 | 1 | -21/+0 |
| | | | | | | | | | | causing test_multiprocessing_forkserver and test_multiprocessing_spawn failures on head (3.4). | ||||
* | | Fixes Issue #15798 - subprocess.Popen() no longer fails if file | Gregory P. Smith | 2013-12-01 | 1 | -0/+21 |
|\ \ | |/ | | | | | descriptor 0, 1 or 2 is closed. | ||||
| * | Fixes Issue #15798 - subprocess.Popen() no longer fails if file | Gregory P. Smith | 2013-12-01 | 1 | -0/+21 |
| | | | | | | | | descriptor 0, 1 or 2 is closed. | ||||
* | | Issue #6477: Merge with 3.3. | Alexandre Vassalotti | 2013-12-01 | 1 | -0/+9 |
|\ \ | |/ | |||||
| * | Issue #6477: Added support for pickling the types of built-in singletons. | Alexandre Vassalotti | 2013-12-01 | 1 | -0/+9 |
| | | |||||
* | | Merge with 3.3. | Alexandre Vassalotti | 2013-11-30 | 1 | -18/+22 |
|\ \ | |/ | |||||
| * | Fixed _pickle.Unpickler to handle empty persistent IDs correctly. | Alexandre Vassalotti | 2013-11-30 | 1 | -18/+22 |
| | | |||||
| * | Issue #19595: Re-enable a long-disabled test in test_winsound | Zachary Ware | 2013-11-28 | 1 | -12/+8 |
| | | |||||
* | | Issue #19728: don't be sensitive to line endings | Nick Coghlan | 2013-11-30 | 1 | -9/+5 |
| | | |||||
* | | Issue #19728: add private ensurepip._uninstall CLI | Nick Coghlan | 2013-11-30 | 2 | -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 consistency | Nick Coghlan | 2013-11-30 | 1 | -1/+3 |
| | | |||||
* | | Issue #3693: Fix array obscure error message when given a str. | Alexandre Vassalotti | 2013-11-30 | 1 | -0/+12 |
| | | |||||
* | | Issue #19712: Port test.test_importlib.import_ tests to use PEP 451 | Brett Cannon | 2013-11-29 | 3 | -16/+68 |
| | | | | | | | | that don't require changing test.test_importlib.util.mock_modules(). | ||||
* | | Issue #19698: Remove exec_module() from the built-in and extension | Brett Cannon | 2013-11-29 | 2 | -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 Bendersky | 2013-11-28 | 1 | -0/+5 |
|\ \ | |/ | | | | | Based on patches by Christian Heimes and Vajrasky Kok | ||||
| * | Issue #19815: Fix segfault when parsing empty namespace declaration. | Eli Bendersky | 2013-11-28 | 1 | -0/+5 |
| | | | | | | | | Based on patches by Christian Heimes and Vajrasky Kok | ||||
* | | Issue #19595: Re-enable a long-disabled test in test_winsound | Zachary Ware | 2013-11-28 | 1 | -12/+8 |
| | | |||||
* | | asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() ↵ | Guido van Rossum | 2013-11-27 | 1 | -47/+156 |
| | | | | | | | | accept bytearray/memoryview too. Change some asserts with proper exceptions. | ||||
* | | Closes #19786: tracemalloc, remove the arbitrary limit of 100 frames | Victor Stinner | 2013-11-27 | 1 | -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 Stinner | 2013-11-27 | 1 | -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 Rossum | 2013-11-27 | 1 | -0/+16 |
| | | | | | | | | loop. By Anthony Baire. | ||||
* | | Skip test_find_mac on Windows (issue #19804). | Serhiy Storchaka | 2013-11-27 | 1 | -0/+1 |
|\ \ | |/ | | | | | This test requires the ifconfig executable on $PATH, /sbin/, or /usr/sbin. | ||||
| * | Skip test_find_mac on Windows (issue #19804). | Serhiy Storchaka | 2013-11-27 | 1 | -0/+1 |
| | | | | | | | | This test requires the ifconfig executable on $PATH, /sbin/, or /usr/sbin. | ||||
* | | merge 3.3 (#19729) | Benjamin Peterson | 2013-11-27 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | fix format spec recursive expansion (closes #19729) | Benjamin Peterson | 2013-11-27 | 1 | -0/+1 |
| | | |||||
| * | Merge heads | Zachary Ware | 2013-11-26 | 1 | -0/+21 |
| |\ | |||||
* | \ | Merge heads | Zachary Ware | 2013-11-26 | 1 | -0/+21 |
|\ \ \ | |||||
| * \ \ | Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with | Serhiy Storchaka | 2013-11-26 | 1 | -0/+21 |
| |\ \ \ | | | |/ | | |/| | | | | | virtual interface. Original patch by Kent Frazier. | ||||
| | * | | Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with | Serhiy Storchaka | 2013-11-26 | 1 | -0/+21 |
| | | | | | | | | | | | | | | | | virtual interface. Original patch by Kent Frazier. | ||||
* | | | | Issue #19588: Merge with 3.3 | Zachary Ware | 2013-11-26 | 1 | -6/+6 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | |||||
| * | | Issue #19588: Fixed tests in test_random that were silently skipped most | Zachary Ware | 2013-11-26 | 1 | -6/+6 |
| |/ | | | | | | | of the time. Patch by Julian Gindi. | ||||
* | | Use @bigmemtest more accurately. | Mark Dickinson | 2013-11-26 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Use @bigmemtest more accurately. | Mark Dickinson | 2013-11-26 | 1 | -3/+3 |
| | | |||||
* | | Issue #11489: JSON decoder now accepts lone surrogates. | Serhiy Storchaka | 2013-11-26 | 1 | -4/+47 |
|\ \ | |/ | |||||
| * | Issue #11489: JSON decoder now accepts lone surrogates. | Serhiy Storchaka | 2013-11-26 | 1 | -4/+47 |
| | | |||||
* | | Issue #19638: Merge from 3.3 | Mark Dickinson | 2013-11-26 | 1 | -0/+31 |
|\ \ | |/ | |||||
| * | Issue #19638: Raise ValueError instead of crashing when converting billion ↵ | Mark Dickinson | 2013-11-26 | 1 | -0/+31 |
| | | | | | | | | character strings to float. | ||||
* | | Issue #19760: Silence sysconfig's 'SO' key deprecation warnings in tests. | Serhiy Storchaka | 2013-11-26 | 1 | -3/+4 |
| | | | | | | | | Change stacklevel in warnings.warn() for 'SO' key to 2. | ||||
* | | Fix suspicious test case | Christian Heimes | 2013-11-26 | 1 | -2/+2 |
| | | |||||
* | | Issue #19742: fix a test_pathlib failure when a file owner or group isn't in ↵ | Antoine Pitrou | 2013-11-25 | 1 | -2/+10 |
| | | | | | | | | the system database | ||||
* | | asyncio: Hopeful fix for issue 19765. | Guido van Rossum | 2013-11-25 | 1 | -0/+1 |
| | | |||||
* | | asyncio: Change mock pipe to mock socket. Hope to fix issue 19750. | Guido van Rossum | 2013-11-25 | 1 | -1/+1 |
| | | |||||
* | | Issue #19753: New try to fix test_gdb on System Z buildbot | Victor Stinner | 2013-11-25 | 1 | -0/+2 |
| | | |||||
* | | Cleanup test_tracemalloc.py. Patch written by Vajrasky Kok. | Victor Stinner | 2013-11-25 | 1 | -4/+2 |
| | | |||||
* | | Issue #19758: silence PendingDeprecationWarnings in test_hmac | Christian Heimes | 2013-11-24 | 1 | -14/+33 |
| | | | | | | | | I also removed some bare excepts from the tests. | ||||
* | | Issue #15204: Silence and check the 'U' mode deprecation warnings in tests. | Serhiy Storchaka | 2013-11-24 | 4 | -12/+32 |
| | | | | | | | | Changed deprecation message in the fileinput module. | ||||
* | | Merge from 3.3. | Stefan Krah | 2013-11-24 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | 1) Prepare libmpdec for the 2.4.0 release. None of the following changes ↵ | Stefan Krah | 2013-11-24 | 1 | -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 buildbot | Victor Stinner | 2013-11-24 | 1 | -0/+1 |
| | |