summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.8] closes bpo-39630: Update pointers to string literals to be const char *...Benjamin Peterson2020-02-132-2/+2
* bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)Miss Islington (bot)2020-02-121-18/+18
* closes bpo-39605: Fix some casts to not cast away const. (GH-18453)Miss Islington (bot)2020-02-112-2/+2
* [3.8] bpo-39579: Fix Attribute end_col_offset to point at the current node (G...Lysandros Nikolaou2020-02-071-2/+3
* Fix compiler warning on Windows (GH-18012)Miss Islington (bot)2020-01-151-1/+1
* [3.8] bpo-39033: Fix NameError in zipimport during hash validation (GH-17588)...Karthikeyan Singaravelan2020-01-141-271/+269
* bpo-39235: Fix end location for genexp in call args (GH-17925)Miss Islington (bot)2020-01-091-8/+8
* bpo-29778: Fix incorrect NULL check in _PyPathConfig_InitDLLPath() (GH-17818)Miss Islington (bot)2020-01-061-1/+1
* Fix constant folding optimization for positional only arguments (GH-17837)Miss Islington (bot)2020-01-051-0/+1
* Fix SystemError when nested function has annotation on positional-only argume...Miss Islington (bot)2020-01-041-0/+2
* Bring Python into the next decade. (GH-17801)Miss Islington (bot)2020-01-021-1/+1
* bpo-39176: Improve error message for 'named assignment' (GH-17777) (GH-17778)Miss Islington (bot)2019-12-311-1/+1
* closes bpo-37446: resolve undefined behavior in Python/hamt.c (GH-17727)Miss Islington (bot)2019-12-301-1/+1
* [3.8] bpo-39080: Starred Expression's column offset fix when inside a CALL (G...Pablo Galindo2019-12-171-1/+1
* The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586)Miss Islington (bot)2019-12-151-3/+1
* Fix elif start column offset when there is an else following (GH-17596) (GH-1...Miss Islington (bot)2019-12-141-2/+2
* Add PYTHONUTF8 to commandline usage. (GH-17587)Miss Islington (bot)2019-12-141-0/+1
* bpo-39031: Include elif keyword when producing lineno/col-offset info for if_...Miss Islington (bot)2019-12-131-2/+2
* bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than raise a dep...Miss Islington (bot)2019-12-091-1/+1
* bpo-38979: fix ContextVar "__class_getitem__" method (GH-17497)Miss Islington (bot)2019-12-081-3/+4
* bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisablehook are...Steve Dower2019-11-283-33/+51
* bpo-38823: Fix refleak in marshal init error path (GH-17260)Miss Islington (bot)2019-11-201-1/+4
* closes bpo-37633: Reëxport some function compatibility wrappers for macros i...Miss Islington (bot)2019-11-041-16/+16
* bpo-38640: Allow break and continue in always false while loops (GH-16992)Miss Skeleton (bot)2019-10-301-0/+8
* bpo-38535: Fix positions for AST nodes for calls without arguments in decorat...Miss Skeleton (bot)2019-10-261-2/+4
* Fix typo in formatter_unicode (GH-16831)Miss Skeleton (bot)2019-10-251-1/+1
* bpo-38540: Fix possible leak in PyArg_Parse for "esGH-" and "etGH-". (GH-16869)Miss Skeleton (bot)2019-10-211-2/+26
* Typo fix - implemention should be implementation (GH-16806)Miss Islington (bot)2019-10-151-1/+1
* bpo-38469: Handle named expression scope with global/nonlocal keywords (GH-16...Miss Islington (bot)2019-10-141-3/+9
* Correct signature of __build_class__ (GH-16735)Miss Islington (bot)2019-10-131-1/+1
* [3.8] Typo fix: "throuhgh" should be "through". (GH-16713)Benjamin Peterson2019-10-101-1/+1
* bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688)Miss Islington (bot)2019-10-101-1/+2
* Typo fix: "empy" should be "empty". (GH-16666)Miss Islington (bot)2019-10-081-1/+1
* Fix typo in _warnings.warn_explicit() docstring (GH-16625)Miss Islington (bot)2019-10-081-1/+1
* bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509)Miss Islington (bot)2019-10-015-54/+13
* bpo-38304: Remove PyConfig.struct_size (GH-16500)Victor Stinner2019-10-016-114/+12
* bpo-38317: Fix PyConfig.warnoptions priority (GH-16478)Miss Islington (bot)2019-09-293-45/+85
* bpo-38304: Add PyConfig.struct_size (GH-16451) (GH-16453)Victor Stinner2019-09-286-28/+175
* [3.8] bpo-38234: Backport init path config changes from master (GH-16423)Victor Stinner2019-09-262-18/+59
* bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335) (GH-16336)Victor Stinner2019-09-231-149/+166
* bpo-38236: Dump path config at first import error (GH-16300) (GH-16332)Victor Stinner2019-09-232-4/+101
* bpo-38237: Shorter docstring (GH-16322) (GH-16323)Miss Islington (bot)2019-09-212-4/+4
* bpo-38237: Let pow() support keyword arguments (GH-16302) (GH-16320)Miss Islington (bot)2019-09-212-26/+32
* [3.8] bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298) ...Victor Stinner2019-09-212-66/+56
* [3.8] bpo-38070: Py_FatalError() logs runtime state (GH-16258)Victor Stinner2019-09-182-34/+75
* [3.8] bpo-37206: Unrepresentable default values no longer represented as None...Serhiy Storchaka2019-09-146-13/+13
* [3.8] bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993) (GH-16...Jason R. Coombs2019-09-121-1019/+900
* bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH...Paul Ganssle2019-09-112-7/+7
* closes bpo-38124: Fix bounds check in PyState_AddModule. (GH-16007)Miss Islington (bot)2019-09-111-8/+6
* [3.8] bpo-37409: fix relative import with no parent (GH-14956) (GH-15913)Brett Cannon2019-09-111-10/+13