summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-42780: Fix set_inheritable() for O_PATH file descriptors on Linux (GH-241...cptpcrd2021-01-211-0/+7
* Bring Python into the new year. (GH-24036)Miss Islington (bot)2021-01-011-1/+1
* bpo-26564: fix obsolete comment in traceback.c (GH-23819)Miss Islington (bot)2020-12-171-1/+2
* bpo-32381: Fix PyRun_SimpleFileExFlags() encoding (GH-23642) (GH-23692) (GH-2...Victor Stinner2020-12-081-92/+132
* bpo-42536: GC track recycled tuples (GH-23623) (GH-23652)Brandt Bucher2020-12-071-0/+6
* bpo-41686: Always create the SIGINT event on Windows (GH-23344) (GH-23347) (G...Victor Stinner2020-11-171-25/+2
* bpo-41819: Fix compiler warning in init_dump_ascii_wstr() (GH-22332)Miss Skeleton (bot)2020-10-211-1/+1
* bpo-38324: Fix test__locale.py Windows failures (GH-20529)Miss Skeleton (bot)2020-10-201-2/+13
* bpo-41894: Fix UnicodeDecodeError while loading native module (GH-22466)Miss Skeleton (bot)2020-10-143-8/+25
* Fix compiler warnings in init_dump_ascii_wstr() (GH-22150)Miss Islington (bot)2020-09-091-1/+1
* bpo-41525: Make the Python program help ASCII-only (GH-21836)Miss Islington (bot)2020-09-081-1/+1
* [3.8] closes bpo-41533: Fix a potential memory leak when allocating a stack (...Miss Islington (bot)2020-09-041-0/+3
* bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845) (GH-22016)Miss Islington (bot)2020-08-301-7/+11
* Fix -Wstrict-prototypes warning in thread_pthread.h. (GH-21477)Miss Islington (bot)2020-07-151-1/+1
* bpo-41218: Only mark async code with CO_COROUTINE. (GH-21357)Miss Islington (bot)2020-07-061-4/+6
* bpo-29778: Ensure python3.dll is loaded from correct locations when Python is...Miss Islington (bot)2020-07-062-48/+0
* bpo-41162: Clear audit hooks later during finalization (GH-21222)Steve Dower2020-07-041-7/+7
* bpo-41180: Audit code.__new__ when unmarshalling (GH-21271)Miss Islington (bot)2020-07-031-0/+6
* [3.8] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#2...Guido van Rossum2020-06-272-2/+3
* [3.8] bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173) (GH...Lysandros Nikolaou2020-06-271-7/+7
* bpo-41094: Fix decoding errors with audit when open files. (GH-21095)Miss Islington (bot)2020-06-241-4/+19
* bpo-41056: Fix reference to deallocated stack in pathconfig (Coverity) (GH-21...Miss Islington (bot)2020-06-221-1/+1
* bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827)Miss Islington (bot)2020-06-131-0/+1
* bpo-40834: Fix truncate when sending str object with channel (GH-20555)Miss Islington (bot)2020-06-131-1/+1
* bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)Miss Islington (bot)2020-06-061-0/+22
* bpo-40614: Respect feature version for f-string debug expressions (GH-20196) ...Shantanu2020-06-061-0/+6
* bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)Miss Islington (bot)2020-05-241-3/+24
* [3.8] bpo-40663: Correctly handle annotations with subscripts in ast_unparse....Batuhan Taskaya2020-05-221-2/+19
* bpo-35890: Use RegQueryInfoKeyW and CryptAcquireContextW explicitly (GH-19974)Miss Islington (bot)2020-05-181-2/+2
* bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20...Miss Islington (bot)2020-05-181-1/+1
* bpo-40636: Clarify the zip built-in docstring. (GH-20118)Miss Islington (bot)2020-05-151-5/+8
* bpo-40527: Fix command line argument parsing (GH-19955)Miss Islington (bot)2020-05-061-7/+16
* [3.8] bpo-40417: Fix deprecation warning in PyImport_ReloadModule (GH-19750) ...Robert Rouhani2020-05-051-7/+7
* bpo-40412: Nullify inittab_copy during finalization (GH-19746)Miss Islington (bot)2020-05-011-0/+1
* [3.8] bpo-39562: Prevent collision of future and compiler flags (GH-19230) (G...Pablo Galindo2020-05-011-1/+1
* bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691) (GH-19698)Victor Stinner2020-04-241-1/+1
* [3.8] closes bpo-40184: Only define pysiphash if the hash algorithm is SIPHAS...Benjamin Peterson2020-04-041-7/+7
* Document most common signals (GH-19245) (GH-19257)Victor Stinner2020-03-311-1/+1
* bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120) (GH-19136)Victor Stinner2020-03-241-2/+10
* bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516...Miss Islington (bot)2020-03-221-0/+11
* bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (G...Miss Islington (bot)2020-03-191-2/+5
* bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977) (GH-19029)Victor Stinner2020-03-161-0/+2
* bpo-39965: Correctly raise SyntaxError if await is used outside async functio...Miss Islington (bot)2020-03-141-4/+8
* bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780)Miss Islington (bot)2020-03-111-3/+3
* bpo-39520: Fix un-parsing of ext slices with no dimensions (GH-18304)Miss Islington (bot)2020-03-111-0/+1
* bpo-39831: Remove outdated comment. (GH-18764)Miss Islington (bot)2020-03-031-3/+1
* bpo-39776: Lock ++interp->tstate_next_unique_id. (GH-18746) (#18746) (#18752)Stefan Krah2020-03-031-2/+1
* [3.8] bpo-39831: Fix a reference leak in PyErr_WarnEx(). (GH-18750) (GH-18761)Pablo Galindo2020-03-031-2/+3
* bpo-38410: Properly handle PySys_Audit() failures (GH-18658)Serhiy Storchaka2020-03-022-32/+55
* [3.8] bpo-38913: Fix segfault in Py_BuildValue("(sGH-O)", ...) if entered wit...Serhiy Storchaka2020-03-021-3/+3