summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-39360: Ensure all workers exit when finalizing a multiprocessing Pool (GH...Miss Islington (bot)2020-03-151-0/+4
* bpo-39965: Correctly raise SyntaxError if await is used outside async functio...Miss Islington (bot)2020-03-151-0/+3
* bpo-38576: Disallow control characters in hostnames in http.client (GH-18995)Miss Islington (bot)2020-03-141-0/+1
* bpo-39677: dis: rename the operand of MAKE_FUNCTION from `argc` to `flags` fo...Miss Islington (bot)2020-03-141-0/+1
* [3.8] bpo-39871: Fix possible SystemError in atan2, copysign and remainder (G...Mark Dickinson2020-03-141-0/+3
* bpo-39915: Ensure await_args_list is updated according to the order in which ...Miss Islington (bot)2020-03-141-0/+4
* bpo-39884: Add method name in "bad call flags" error (GH-18944) (GH-18956)Victor Stinner2020-03-121-0/+2
* [3.8] bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase i...Serhiy Storchaka2020-03-121-0/+2
* bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780)Miss Islington (bot)2020-03-111-0/+2
* bpo-39520: Fix un-parsing of ext slices with no dimensions (GH-18304)Miss Islington (bot)2020-03-111-0/+2
* bpo-39916: Use os.scandir() as context manager in Path.glob(). (GH-18880)Miss Islington (bot)2020-03-111-0/+2
* bpo-39930: Ensure vcruntime140.dll is included in all Windows packages (GH-18...Miss Islington (bot)2020-03-111-0/+2
* bpo-38662: ensurepip invokes pip via runpy (GH-18901)Miss Islington (bot)2020-03-101-0/+4
* [3.8] bpo-39828: Fix json.tool to catch BrokenPipeError (GH-18779). (GH-18894)Dong-hee Na2020-03-101-0/+1
* bpo-27115: Use Query subclass for IDLE editor Goto (GH-18871)Miss Islington (bot)2020-03-091-0/+2
* bpo-36184: Port python-gdb.py to FreeBSD (GH-18873)Miss Islington (bot)2020-03-091-0/+4
* [3.8] bpo-39850: Add support for abstract sockets in multiprocessing (GH-1886...Pablo Galindo2020-03-091-0/+2
* bpo-39517: Allow runpy.run_path() to accept path-like objects (GH-18699)Miss Islington (bot)2020-03-081-0/+1
* bpo-39885: IDLE context menu clears selection (GH-18859)Miss Islington (bot)2020-03-081-0/+2
* bpo-39852: IDLE 'Go to line' deletes selection, updates status (GH-18801)Miss Islington (bot)2020-03-081-0/+2
* bpo-38894: Fix pathlib.Path.glob in the presence of symlinks and insufficient...Miss Islington (bot)2020-03-071-0/+4
* [3.8] bpo-39889: Fix unparse.py for subscript. (GH-18824). (GH-18826)Serhiy Storchaka2020-03-071-0/+3
* bpo-17422: slightly more precise language (GH-18682)Miss Islington (bot)2020-03-061-0/+2
* bpo-39868: Update Language Reference for PEP 572. (GH-18793)Miss Islington (bot)2020-03-061-0/+1
* bpo-13487: Use sys.modules.copy() in inspect.getmodule() for thread safety. (...Miss Islington (bot)2020-03-051-0/+3
* Fix misleading statement about mixed-type numeric comparisons (GH-18615) (#18...Miss Islington (bot)2020-03-041-0/+1
* bpo-39776: Lock ++interp->tstate_next_unique_id. (GH-18746) (#18746) (#18752)Stefan Krah2020-03-031-0/+6
* bpo-38597: Never statically link extension initialization code on Windows (GH...Miss Islington (bot)2020-03-031-0/+4
* [3.8] bpo-39778: Don't traverse weak-reference lists OrderedDict's tp_travers...Pablo Galindo2020-03-021-0/+2
* bpo-38380: Update macOS & Windows builds to SQLite v3.31.1 (GH-18678)Miss Islington (bot)2020-03-022-0/+2
* bpo-39764: Make Task.get_stack accept ag_frame (GH-18669)Miss Islington (bot)2020-03-021-0/+1
* bpo-38971: Open file in codecs.open() closes if exception raised. (GH-17666)Miss Islington (bot)2020-03-021-0/+3
* bpo-38410: Properly handle PySys_Audit() failures (GH-18658)Serhiy Storchaka2020-03-021-0/+2
* [3.8] bpo-38913: Fix segfault in Py_BuildValue("(sGH-O)", ...) if entered wit...Serhiy Storchaka2020-03-021-0/+2
* [3.8] bpo-39815: add cached_property to all (GH-18726) (GH-18728)Pablo Galindo2020-03-021-0/+1
* bpo-39769: Fix compileall ddir for subpkgs. (GH-18676) (GH-18718)Gregory P. Smith2020-03-011-0/+4
* [3.8] bpo-39794: Add --without-decimal-contextvar (GH-18702)Stefan Krah2020-02-291-0/+2
* bpo-39548: Fix handling of 'WWW-Authenticate' header for Digest Auth (GH-18338)Miss Islington (bot)2020-02-291-0/+2
* bpo-39789: Update Windows release build machines to VS 2019 (GH-18695)Miss Islington (bot)2020-02-291-0/+1
* bpo-39718: add TYPE_IGNORE, COLONEQUAL to py38 changes in token (GH-18598)Miss Islington (bot)2020-02-281-0/+1
* bpo-13790: Change 'string' to 'specification' in format doc (GH-18690)Miss Islington (bot)2020-02-281-0/+1
* bpo-39781: Do not jump when select in IDLE codecontext (GH-18683)Miss Islington (bot)2020-02-281-0/+1
* bpo-38403: Update nuspec file for deprecated field and git repository (GH-18657)Miss Islington (bot)2020-02-251-0/+2
* Merge tag 'v3.8.2' into 3.8Łukasz Langa2020-02-2511-17/+97
|\
| * Python 3.8.2v3.8.2Łukasz Langa2020-02-2411-17/+97
* | bpo-30566: Fix IndexError when using punycode codec (GH-18632)Miss Islington (bot)2020-02-251-0/+2
|/
* bpo-39649: Remove obsolete check for `__args__` in bdb.Bdb.format_stack_entry...Miss Islington (bot)2020-02-241-0/+1
* bpo-39654: Update pyclbr doc to reflect additional information returned (GH-1...Miss Islington (bot)2020-02-241-0/+2
* bpo-39681: Fix C pickle regression with minimal file-like objects (GH-18592) ...Miss Islington (bot)2020-02-231-0/+2
* [3.8] bpo-39427: Document -X opt options in the CLI --help and the man page (...Pablo Galindo2020-02-232-1/+41