summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-40016: re docstring: Clarify relationship of inline and argument flags (G...Miss Islington (bot)2020-03-252-2/+5
* bpo-40013: Clarify documentation of restval in csv.DictReader (GH-19099) (GH-...Miss Islington (bot)2020-03-251-1/+2
* bpo-40014: Fix os.getgrouplist() (GH-19126)Miss Islington (bot)2020-03-242-25/+29
* Clarify a guarantee of the logging module. (GH-19132)Miss Islington (bot)2020-03-241-0/+1
* bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120) (GH-19136)Victor Stinner2020-03-243-2/+14
* bpo-40014: Fix os.getgrouplist() on macOS (GH-19118)Miss Islington (bot)2020-03-232-0/+22
* bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516...Miss Islington (bot)2020-03-225-1/+34
* bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. ...Miss Islington (bot)2020-03-215-14/+32
* [3.8] bpo-27807: Skip test_site.test_startup_imports() if pth file (GH-19060)...Victor Stinner2020-03-202-0/+21
* bpo-39797 Changes to socketserver.BaseServer's shutdown() method. (GH-18929)Miss Islington (bot)2020-03-201-0/+2
* Fix "versionchanged" for pow named arguments (GH-19042) (GH-19079)Miss Islington (bot)2020-03-191-1/+1
* bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (G...Miss Islington (bot)2020-03-193-3/+15
* bpo-39973: Fix the docs for PyObject_GenericSetDict() (GH-19026)Miss Islington (bot)2020-03-172-2/+3
* bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977) (GH-19029)Victor Stinner2020-03-162-0/+4
* bpo-39360: Ensure all workers exit when finalizing a multiprocessing Pool (GH...Miss Islington (bot)2020-03-153-2/+27
* Fix a possible refleak in tupleobject.c (GH-19018)Miss Islington (bot)2020-03-151-1/+3
* bpo-39965: Correctly raise SyntaxError if await is used outside async functio...Miss Islington (bot)2020-03-153-4/+49
* bpo-39869: Fix typo in 'Instance objects' section. (GH-18889)Miss Islington (bot)2020-03-141-1/+1
* Link to list of keywords in the laguage reference (GH-18024)Miss Islington (bot)2020-03-141-5/+6
* bpo-38576: Disallow control characters in hostnames in http.client (GH-18995)Miss Islington (bot)2020-03-144-3/+57
* bpo-39677: dis: rename the operand of MAKE_FUNCTION from `argc` to `flags` fo...Miss Islington (bot)2020-03-142-1/+2
* bpo-39582: ossaudiodev module update helpers signature for ioctl calls. (GH-1...Miss Islington (bot)2020-03-141-3/+3
* [3.8] bpo-39871: Fix possible SystemError in atan2, copysign and remainder (G...Mark Dickinson2020-03-143-1/+24
* bpo-39915: Ensure await_args_list is updated according to the order in which ...Miss Islington (bot)2020-03-143-1/+16
* [3.8] Doc: Fix grammar in PyErr_ResourceWarning (GH-18879) (GH-18976)Karthikeyan Singaravelan2020-03-131-1/+1
* bpo-39689: Do not test undefined casts to _Bool (GH-18964) (#18966)Miss Islington (bot)2020-03-121-0/+4
* bpo-39930: Fix MSBuild detection for Build Tools (GH-18938)Miss Islington (bot)2020-03-122-16/+27
* bpo-39884: Add method name in "bad call flags" error (GH-18944) (GH-18956)Victor Stinner2020-03-123-2/+6
* [3.8] bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase i...Serhiy Storchaka2020-03-124-9/+36
* Fix syntax error in an example in the ast documentation and sync docstrings (...Miss Islington (bot)2020-03-122-3/+3
* bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780)Miss Islington (bot)2020-03-112-3/+5
* bpo-39520: Fix un-parsing of ext slices with no dimensions (GH-18304)Miss Islington (bot)2020-03-113-0/+8
* bpo-39916: Use os.scandir() as context manager in Path.glob(). (GH-18880)Miss Islington (bot)2020-03-112-2/+6
* bpo-39930: Convert error to warning for more silent failure (GH-18921)Miss Islington (bot)2020-03-112-1/+5
* bpo-39930: Ensure vcruntime140.dll is included in all Windows packages (GH-18...Miss Islington (bot)2020-03-116-10/+67
* Fix download.html (GH-18902)Miss Islington (bot)2020-03-111-1/+1
* bpo-38662: ensurepip invokes pip via runpy (GH-18901)Miss Islington (bot)2020-03-102-3/+17
* tracemalloc: 'pretty top' example no longer changes the filename (GH-18903)Miss Islington (bot)2020-03-101-3/+1
* [3.8] bpo-39828: Fix json.tool to catch BrokenPipeError (GH-18779). (GH-18894)Dong-hee Na2020-03-103-1/+16
* bpo-27115: Use Query subclass for IDLE editor Goto (GH-18871)Miss Islington (bot)2020-03-095-12/+74
* bpo-36184: Port python-gdb.py to FreeBSD (GH-18873)Miss Islington (bot)2020-03-092-1/+5
* [3.8] bpo-39850: Add support for abstract sockets in multiprocessing (GH-1886...Pablo Galindo2020-03-096-5/+50
* bpo-39903: Fix double decref in _elementtree.Element.__getstate__ (GH-18850)Miss Islington (bot)2020-03-091-26/+17
* bpo-27115: Move IDLE Query error blanking (GH-18868)Miss Islington (bot)2020-03-091-5/+2
* bpo-39517: Allow runpy.run_path() to accept path-like objects (GH-18699)Miss Islington (bot)2020-03-083-2/+14
* bpo-39885: IDLE context menu clears selection (GH-18859)Miss Islington (bot)2020-03-083-0/+6
* bpo-39852: IDLE 'Go to line' deletes selection, updates status (GH-18801)Miss Islington (bot)2020-03-085-16/+31
* fix typo: add space (GH-18853)Miss Islington (bot)2020-03-081-2/+2
* bpo-38894: Fix pathlib.Path.glob in the presence of symlinks and insufficient...Miss Islington (bot)2020-03-073-13/+56
* [3.8] bpo-39889: Fix unparse.py for subscript. (GH-18824). (GH-18826)Serhiy Storchaka2020-03-073-2/+34