- 02 Jun, 2017 4 commits
-
-
Segev Finer authored
We get `ERROR_BAD_NETPATH` (53) on AppVeyor which is translated to ENOENT (2).
-
Segev Finer authored
* bpo-30544: _io._WindowsConsoleIO.write raises the wrong error when WriteConsoleW fails * bpo-30544: _io._WindowsConsoleIO.write raises the wrong error when WriteConsoleW fails
-
Nick Coghlan authored
* bpo-30052: Always regenerate cross-references The patch for bpo-30052 changed the preferred link target for :func:`bytes` and :func`bytearray` references to be the respective type definitions rather than the corresponding builtin function entries. This patch changes the daily documentation builds to disable the output caching in Sphinx, in order to ensure that cross-reference changes like this one are reliably picked up and applied automatically after merging.
-
Johan Liu authored
-
- 01 Jun, 2017 7 commits
-
-
Matthias Bussonnier authored
-
Albert-Jan Nijburg authored
-
Eric Snow authored
-
Julien authored
-
Xiang Zhang authored
-
Serhiy Storchaka authored
Also speed up slot_sq_item.
-
csabella authored
-
- 31 May, 2017 2 commits
-
-
Hiro Asari authored
-
Albert-Jan Nijburg authored
* add test to check if were modifying token * copy list so import tokenize doesnt have side effects on token * shorten line * add tokenize tokens to token.h to get them to show up in token * move ERRORTOKEN back to its previous location, and fix nitpick * copy comments from token.h automatically * fix whitespace and make more pythonic * change to fix comments from @haypo * update token.rst and Misc/NEWS * change wording * some more wording changes
-
- 30 May, 2017 4 commits
-
-
Gregory P. Smith authored
-
Mariatta authored
-
Gregory P. Smith authored
Bugfix: This test wasn't being run because it was skipping based on the presence of Py_ENABLE_SHARED rather than its value. It is always present on POSIX systems but defaults to 0. Refactoring: Move the environment variables that can be ignored into a function. Parse the list from the child process and filter out the ones to exclude in the parent before checking that the rest is empty. Feature: Adds always present environment variables to ignore when running in a Gentoo sandbox so that the test can pass there.
-
kms70847 authored
Replace `an ModuleNotFoundError` with `a ModuleNotFoundError`. Replace `an path` with `a path`.
-
- 29 May, 2017 5 commits
-
-
gfyoung authored
-
Jim Fasarakis-Hilliard authored
-
Gregory P. Smith authored
Instead use keyword only arguments to os.register_at_fork for each of the scenarios. Updates the documentation for clarity.
-
Antoine Pitrou authored
-
Amit Kumar authored
-
- 28 May, 2017 5 commits
-
-
Serhiy Storchaka authored
Rather than saving the Python object and calling PyObject_IsTrue() every time when the boolean argument is used, call it only once and save C boolean value.
-
Antoine Pitrou authored
* bpo-16500: Use register_at_fork() in the threading module * Update comment at top of _after_fork()
-
csabella authored
Patch by Cheryl Sabella.
-
Antoine Pitrou authored
* Doc nits for bpo-16500 * Fix more references
-
terryjreedy authored
Coverage is now 100%
-
- 27 May, 2017 9 commits
-
-
Gregory P. Smith authored
* bpo-30492: Allow make clinic to work out of tree. * Use os.curdir instead of "." as the default value.
-
csabella authored
Patch by Cheryl Sabella.
-
xdegaye authored
Extension modules listed after the *disabled* marker are not built at all, neither by the Makefile nor by setup.py.
-
Antoine Pitrou authored
* bpo-16500: Allow registering at-fork handlers * Address Serhiy's comments * Add doc for new C API * Add doc for new Python-facing function * Add NEWS entry + doc nit
-
Mariatta authored
Calling Ctypes functions is deprecated in 3.6.2 and will be removed in 3.7
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Also document that some attributes may be None.
-
Serhiy Storchaka authored
Unlikely to the simplejson module, json.JSONDecodeError doesn't accept the end argument.
-
Sanyam Khurana authored
The "iterable iterable" phrasing created confusion between the term reference and the parameter name. This simplifies the phrasing to just use the parameter name without linking directly to the term definition.
-
- 26 May, 2017 2 commits
-
-
Aaron Hall, MBA authored
* correct __slots__ documentation with minimal changes * add multiple inheritance info * remove mapping from description
-
Alex Gaynor authored
Partially clarify the subprocess convenience API documentation by explicitly listing the `cwd` parameter in their abbreviated signatures. While this has been merged as an improvement, it doesn't fully resolve the issue, as the `cwd` should also be covered in the "Frequently Used Arguments" section, and the fact these APIs pass unlisted keyword arguments down to the lower level APIs is currently still unclear.
-
- 25 May, 2017 2 commits
-
-
Eric Snow authored
-
grzgrzgrz3 authored
* bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc Queue background running thread was not handling exceptions correctly. Any exception occurred inside thread (putting unpickable object) cause feeder to finish running. After that every message put into queue is silently ignored. * bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc Queue background running thread was not handling exceptions correctly. Any exception occurred inside thread (putting unpickable object) cause feeder to finish running. After that every message put into queue is silently ignored.
-