- 26 Oct, 2019 1 commit
-
-
Serhiy Storchaka authored
-
- 25 Oct, 2019 2 commits
-
-
Ammar Askar authored
-
Hansraj Das authored
numbers's -> number's
-
- 24 Oct, 2019 2 commits
-
-
Zsolt Dollenstein authored
These are valid even in python 2.7 https://bugs.python.org/issue33348 Automerge-Triggered-By: @gpshead
-
Kyle Stanley authored
-
- 23 Oct, 2019 9 commits
-
-
Girts authored
This adds a "readlink" method to pathlib.Path objects that calls through to os.readlink. https://bugs.python.org/issue30618 Automerge-Triggered-By: @gpshead
-
Ned Deily authored
-
Victor Stinner authored
bpo-34679, bpo-38563: asyncio.ProactorEventLoop.close() now only calls signal.set_wakeup_fd() in the main thread.
-
Serhiy Storchaka authored
-
Peter Bittner authored
-
Sergey Fedoseev authored
-
Raymond Hettinger authored
-
Julin S authored
-
AMIR authored
-
- 22 Oct, 2019 5 commits
-
-
Daniel Baskal authored
-
Victor Stinner authored
Fix stdatomic.h header check for ICC compiler: the ICC implementation lacks atomic_uintptr_t type which is needed by Python. Test: * atomic_int and atomic_uintptr_t types * atomic_load_explicit() and atomic_store_explicit() * memory_order_relaxed and memory_order_seq_cst constants But don't test ATOMIC_VAR_INIT(): it's not used in Python.
-
Julien Palard authored
-
Tyler Kieft authored
https://bugs.python.org/issue38303 Automerge-Triggered-By: @encukou
-
Kyle Stanley authored
-
- 21 Oct, 2019 7 commits
-
-
Serhiy Storchaka authored
-
Tim Peters authored
It should be impossible for an untracked object to have the collecting flag set. Back when state was stored in gc_refs, it obviously was impossible (gc_refs couldn't possibly have a positive & negative value simultaneously). While the _implementation_ of "state" has gotten much more complicated, it's still _logically_ just as impossible.
-
Serhiy Storchaka authored
-
Dong-hee Na authored
-
Sergey Fedoseev authored
-
Serhiy Storchaka authored
-
Hai Shi authored
-
- 20 Oct, 2019 3 commits
-
-
Batuhan Taşkaya authored
-
Raymond Hettinger authored
* math.perm() and math.comb() * math.isqrt() * Add singledispatchmethod() * itertools.accumulate() * Optional headers for xmlrpc.client.ServerProxy * IDLE non-BMP characters * import collections.abc directly * @coroutine is deprecated * pprint.pp() * New options for object.__reduce__() * DictReader no longer returns OrderedDicts * "force" option for logging.basicConfig() * Fix spelling * cProfile context manager * Various markup/grammar fixes from Kyle Stanley. Other minor fixes as well. Also, dedup the __reduce__ entry. * Fix markup * Fix grammar nits found by MS Word
-
Raymond Hettinger authored
-
- 19 Oct, 2019 4 commits
-
-
Dong-hee Na authored
The reverse iterator for empty dictionaries was not handling correctly shared-key dictionaries.
-
Jon Dufresne authored
The Nose package is no longer maintained.
-
Eric Snow authored
This is partly a cleanup of the code. It also is preparation for getting the variables from the source (cross-platform) rather than from the symbols. The change only touches the tool (and its tests).
-
Tim Peters authored
-
- 18 Oct, 2019 7 commits
-
-
Raymond Hettinger authored
-
Victor Stinner authored
test.regrtest now uses process groups in the multiprocessing mode (-jN command line option) if process groups are available: if os.setsid() and os.killpg() functions are available.
-
Tim Graham authored
* bpo-27657: Fix urlparse() with numeric paths Revert parsing decision from bpo-754016 in favor of the documented consensus in bpo-16932 of how to treat strings without a // to designate the netloc. * bpo-22891: Remove urlsplit() optimization for 'http' prefixed inputs.
-
Steve Dower authored
https://bugs.python.org/issue38418 Automerge-Triggered-By: @zooba
-
Jero Bado authored
Added periods at the end of the sentences.
-
Stéphane Wirtel authored
-
Gregory P. Smith authored
Also updates the documentation to clarify the situation surrounding the digestmod parameter that is required despite its position in the argument list as of 3.8.0 as well as removing old python2 era references to "binary strings". We indavertently had this raise ValueError in 3.8.0 for the missing arg. This is not considered an API change as no reasonable code would be catching this missing argument error in order to handle it.
-