- 21 May, 2016 2 commits
-
-
Berker Peksag authored
Patch by Ville Skyttä.
-
Berker Peksag authored
Patch by Ville Skyttä.
-
- 20 May, 2016 18 commits
-
-
Yury Selivanov authored
-
Yury Selivanov authored
Patch by A. Jesse Jiryu Davis.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
format unit.
-
Serhiy Storchaka authored
format unit.
-
Victor Stinner authored
-
Yury Selivanov authored
-
Yury Selivanov authored
-
Victor Stinner authored
* in multiprocessing mode: always display the result * sequential mode: only display the result if the test did not pass
-
Victor Stinner authored
* regrtest now uses subprocesses when the -j1 command line option is used: each test file runs in a fresh child process. Before, the -j1 option was ignored. * Tools/buildbot/test.bat script now uses -j1 by default to run each test file in fresh child process.
-
Victor Stinner authored
-
Victor Stinner authored
Issue #26741: asyncio: BaseSubprocessTransport._process_exited() now copies the return code from the child watched to the returncode attribute of the Popen object. On Python 3.6, it is required to avoid a ResourceWarning.
-
Victor Stinner authored
Issue #26741: subprocess.Popen destructor now emits a ResourceWarning warning if the child process is still running.
-
Victor Stinner authored
sets the returncode attribute using the child process exit status when exec failed.
-
Victor Stinner authored
Issue #26741.
-
Victor Stinner authored
Issue #27056: Optimize pickle.load() and pickle.loads(), up to 10% faster to deserialize a lot of small objects.
-
Victor Stinner authored
* Replace PyUnicode_RPartition() with PyUnicode_FindChar() and PyUnicode_Substring() to avoid the creation of a temporary tuple. * Use PyUnicode_FromFormat() to build a string and avoid the single_dot ('.') singleton Thanks Serhiy Storchaka for your review.
-
- 19 May, 2016 7 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
These added a path attribute to pathlib.Path objects, and docs. Instead, we're going to use PEP 519. (Starting in the 3.4 branch and merging forward from there since that's what I did originally.)
-
Steve Dower authored
-
Steve Dower authored
-
Victor Stinner authored
-
Victor Stinner authored
Issue #27057: Fix os.set_inheritable() on Android, ioctl() is blocked by SELinux and fails with EACCESS. The function now falls back to fcntl(). Patch written by Michał Bednarski.
-
- 18 May, 2016 13 commits
-
-
Steve Dower authored
-
Steve Dower authored
Removes versioning from py.exe launcher installer and ensures that old launchers are replaced by newer ones.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Martin Panter authored
-
Berker Peksag authored
Documentation updates by Martin Panter.
-
Senthil Kumaran authored
issue27045 - Use backslash in windows path to script file.
-
Senthil Kumaran authored
-
Terry Jan Reedy authored
-