summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Complete switch cases in symtable.c; fixes bpo-35963 (GH-11821)Guido van Rossum2019-02-111-0/+4
* bpo-35766 follow-up: Add an error check to new_type_comment() (#11766)Guido van Rossum2019-02-111-0/+2
* Fix compiler warning about non initialised variable (GH-11806)Pablo Galindo2019-02-101-2/+2
* Fix compiler warnings about end_col_offset and end_lineno (GH-11735)Ivan Levkivskyi2019-02-101-5/+2
* bpo-35321: Set the spec origin to frozen in frozen modules (#11732)Nina Zakharenko2019-02-051-656/+657
* bpo-35890 : Fix some API calling consistency (GH-11742)Minmin Gong2019-02-032-6/+12
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-022-0/+8
* bpo-33316: PyThread_release_lock always fails (GH-6541)native-api2019-02-021-2/+3
* bpo-35879: Fix type comment leaks (GH-11728)Guido van Rossum2019-02-011-3/+8
* bpo-35877: Make parenthesis optional for named expression in while statement ...Xtreak2019-02-011-1/+1
* bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11...Guido van Rossum2019-02-011-3/+2
* bpo-35766: Merge typed_ast back into CPython (GH-11645)Guido van Rossum2019-01-315-520/+1343
* bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-1...Ivan Levkivskyi2019-01-252-4/+10
* bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse2019-01-245-552/+871
* bpo-35713: Reorganize sys module initialization (GH-11658)Victor Stinner2019-01-232-71/+89
* bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)Victor Stinner2019-01-221-83/+172
* bpo-35713: Rework Python initialization (GH-11647)Victor Stinner2019-01-222-25/+26
* bpo-33416: Add end positions to Python AST (GH-11605)Ivan Levkivskyi2019-01-224-221/+712
* bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642)Serhiy Storchaka2019-01-181-0/+47
* bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561)Serhiy Storchaka2019-01-151-10/+15
* bpo-34756: Silence only ImportError and AttributeError in sys.breakpointhook(...Serhiy Storchaka2019-01-141-0/+6
* bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)Anthony Sottile2019-01-134-24/+28
* bpo-35634: Raise an error when first passed kwargs contains duplicated keys. ...Serhiy Storchaka2019-01-121-48/+45
* bpo-35494: Improve syntax error messages for unbalanced parentheses in f-stri...Serhiy Storchaka2019-01-121-4/+27
* bpo-35582: Inline arguments tuple unpacking in handwritten code. (GH-11524)Serhiy Storchaka2019-01-121-13/+18
* bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972)Eric Snow2019-01-111-25/+83
* bpo-34569: Fix subinterpreter 32-bit ABI, pystate.c/_new_long_object() (gh-9...Michael Felt2019-01-111-1/+1
* bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520)Serhiy Storchaka2019-01-114-49/+89
* bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G...Serhiy Storchaka2019-01-115-33/+124
* bpo-35470: Fix a reference counting bug in _PyImport_FindExtensionObjectEx()....Zackery Spytz2019-01-101-1/+0
* remove doc-string declaration no longer used after AC conversion (GH-11444)Tal Einat2019-01-061-4/+0
* Bump copyright years to 2019. (GH-11404)Benjamin Peterson2019-01-021-1/+1
* bpo-20182: AC convert Python/sysmodule.c (GH-11328)Tal Einat2018-12-312-409/+1447
* bpo-35550: Fix incorrect Solaris define guards (GH-11275)Jakub KulĂ­k2018-12-311-2/+2
* bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726)Michael Felt2018-12-281-0/+14
* bpo-23867: Argument Clinic: inline parsing code for a single positional param...Serhiy Storchaka2018-12-254-10/+53
* bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438)Xtreak2018-12-211-14/+24
* bpo-35454: Fix miscellaneous minor issues in error handling. (#11077)Serhiy Storchaka2018-12-115-6/+18
* bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...Serhiy Storchaka2018-12-111-0/+14
* bpo-35452: Make PySys_HasWarnOptions() never raising an exception. (GH-11075)Serhiy Storchaka2018-12-101-1/+2
* bpo-35451: Fix reference counting for sys.warnoptions and sys._xoptions. (GH-...Serhiy Storchaka2018-12-101-2/+0
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Zackery Spytz2018-12-082-3/+3
* bpo-9566: Fix compiler warnings in peephole.c (GH-10652)Victor Stinner2018-12-071-21/+47
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-073-3/+12
* bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10...Zackery Spytz2018-12-051-0/+1
* bpo-33015: Fix UB in pthread PyThread_start_new_thread (GH-6008)Siddhesh Poyarekar2018-11-301-4/+36
* bpo-35336: Fix PYTHONCOERCECLOCALE=1 (GH-10806)Victor Stinner2018-11-301-2/+8
* bpo-30167: Remove __cached__ from __main__ when removing __file__ (GH-7415)INADA Naoki2018-11-291-2/+8
* bpo-34100: compile: Re-enable frozenset merging (GH-10760)INADA Naoki2018-11-281-2/+57
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-272-3/+4