summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-39207: Spawn workers on demand in ProcessPoolExecutor (GH-19453)Kyle Stanley2020-04-192-6/+54
* bpo-40325: Deprecate set object support in random.sample() (GH-19591)Raymond Hettinger2020-04-192-2/+9
* bpo-35113: Fix inspect.getsource to return correct source for inner classes (...Karthikeyan Singaravelan2020-04-184-23/+197
* Add spaces around the ":=" operator in ast_unparse.c (GH-19568)Hakan Çelik2020-04-181-2/+2
* bpo-40179: Fix translation of #elif in Argument Clinic (GH-19364)Serhiy Storchaka2020-04-181-0/+105
* bpo-35967: Skip test with `uname -p` on Android (GH-19577)Chih-Hsuan Yen2020-04-181-2/+5
* bpo-40257: Improve help for the typing module (GH-19546)Serhiy Storchaka2020-04-183-4/+14
* Fix two typos in multiprocessing (GH-19571)Galden2020-04-181-2/+2
* bpo-40286: Use random.randbytes() in tests (GH-19575)Victor Stinner2020-04-175-28/+9
* bpo-40286: Makes simpler the relation between randbytes() and getrandbits() (...Serhiy Storchaka2020-04-171-4/+20
* bpo-39894: Route calls from pathlib.Path.samefile() to os.stat() via the path...Barney Gale2020-04-171-1/+1
* bpo-39897: Remove needless `Path(self.parent)` call, which makes `is_mount()`...Barney Gale2020-04-171-3/+2
* bpo-40282: Allow random.getrandbits(0) (GH-19539)Antoine Pitrou2020-04-172-42/+33
* bpo-40286: Add randbytes() method to random.Random (GH-19527)Victor Stinner2020-04-173-2/+59
* bpo-39901: Move `pathlib.Path.owner()` and `group()` implementations into the...Barney Gale2020-04-171-10/+16
* bpo-40300: Allow empty logging.Formatter.default_msec_format. (GH-19551)Mariusz Felisiak2020-04-172-2/+16
* bpo-40302: Add pycore_byteswap.h header file (GH-19552)Victor Stinner2020-04-171-0/+8
* bpo-40287: Fix SpooledTemporaryFile.seek() return value (GH-19540)Inada Naoki2020-04-172-3/+5
* bpo-39793: use the same domain on make_msgid tests (#18698)Batuhan Taşkaya2020-04-161-4/+6
* bpo-40290: Add zscore() to statistics.NormalDist. (GH-19547)Raymond Hettinger2020-04-162-0/+26
* bpo-35967 resolve platform.processor late (GH-12239)Jason R. Coombs2020-04-162-86/+95
* bpo-40209: Use tokenize.open in test_unparse (GH-19399)Hakan Çelik2020-04-161-5/+2
* Fix typo in exception thrown by ast.unparse (GH-19534)Shantanu2020-04-161-1/+1
* bpo-35967: Make test_platform.test_uname_processor more lenient to satisfy bu...Jason R. Coombs2020-04-151-4/+6
* bpo-40257: Output object's own docstring in pydoc (GH-19479)Serhiy Storchaka2020-04-154-31/+39
* bpo-29255: Wait in KqueueSelector.select when no fds are registered (GH-19508)Russell Davis2020-04-152-1/+17
* bpo-35967: Baseline values for uname -p (GH-12824)Jason R. Coombs2020-04-151-0/+14
* bpo-40267: Fix message when last input character produces a SyntaxError (GH-1...Lysandros Nikolaou2020-04-151-1/+1
* Clean up compatibility code in importlib fixtures (#19156)Jason R. Coombs2020-04-151-16/+2
* bpo-40277: Add a repr() to namedtuple's _tuplegetter to aid with introspectio...Ammar Askar2020-04-151-0/+12
* bpo-39481: PEP 585 for dataclasses, mailbox, contextvars (GH-19425)Ethan Smith2020-04-144-5/+15
* bpo-9216: Nobody expects the geohashing FIPS inquisition (GH-19520)Miro Hrončok2020-04-141-1/+1
* bpo-40260: Update modulefinder to use io.open_code() and respect coding comme...Barry2020-04-142-21/+74
* bpo-395222: Correctly unparse unicode prefix in ast_unparse.c (GH-19512)Batuhan Taşkaya2020-04-141-0/+1
* bpo-32033: Fix test_pwd failures on Android (GH-19502)Zackery Spytz2020-04-141-1/+1
* bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19511)Dong-hee Na2020-04-142-9/+10
* regrtest: log timeout at startup (GH-19514)Victor Stinner2020-04-142-4/+15
* bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19477)Dong-hee Na2020-04-141-4/+4
* bpo-39481: Make weakref and WeakSet generic (GH-19497)Ethan Smith2020-04-142-0/+5
* bpo-39481: Make functools.cached_property, partial, partialmethod generic (#1...Ethan Smith2020-04-142-0/+8
* Fix typo from Lib/asyncio/events.py (GH-19410)Galden2020-04-141-1/+1
* bpo-40208: Remove deprecated has_exec method of SymbolTable (GH-19396)Batuhan Taşkaya2020-04-132-5/+0
* bpo-39380: Change ftplib encoding from latin-1 to utf-8 (GH-18048)Sebastian Pedersen2020-04-132-41/+75
* bpo-32894: Support unparsing of infinity numbers in ast_unparser.c (GH-17426)Batuhan Taşkaya2020-04-131-0/+14
* bpo-40091: Fix a hang at fork in the logging module (GH-19416)Victor Stinner2020-04-131-12/+12
* bpo-39481: fix test_genericalias on Android (GH-19469)Chih-Hsuan Yen2020-04-131-1/+7
* bpo-40241: Add pycore_gc.h header file (GH-19494)Victor Stinner2020-04-132-4/+4
* Add double quote cases to invalid prefix tests (GH-19489)Pablo Galindo2020-04-131-4/+5
* bpo-40234: Revert "bpo-37266: Daemon threads are now denied in subinterpreter...Victor Stinner2020-04-122-28/+19
* bpo-40246: Report a better error message for invalid string prefixes (GH-19476)Lysandros Nikolaou2020-04-121-1/+1