summaryrefslogtreecommitdiff
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* Fix typos mostly in comments, docs and test names (GH-15209)Miss Islington (bot)2019-08-301-1/+1
* Post v3.8.0b4Łukasz Langa2019-08-301-1/+1
* Python 3.8.0b4v3.8.0b4Łukasz Langa2019-08-291-2/+2
* [3.8] bpo-37034: Display argument name on errors with keyword arguments with ...Serhiy Storchaka2019-08-291-1/+1
* bpo-36763: Make Py_BytesMain() public (GH-15532)Miss Islington (bot)2019-08-262-2/+2
* [3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (G...Nick Coghlan2019-08-262-1/+3
* bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435)Victor Stinner2019-08-231-0/+2
* bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423)Miss Islington (bot)2019-08-231-0/+3
* Fix _PyTime_MIN/MAX values (GH-15384) (GH-15426)Victor Stinner2019-08-231-2/+2
* bpo-37834: Normalise handling of reparse points on Windows (GH-15370)Steve Dower2019-08-211-0/+1
* Post v3.8.0b3Łukasz Langa2019-07-291-1/+1
* Python 3.8.0b3v3.8.0b3Łukasz Langa2019-07-291-2/+2
* [3.8] bpo-36974: separate vectorcall functions for each calling convention (G...Jeroen Demeyer2019-07-232-8/+0
* bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...Miss Islington (bot)2019-07-141-2/+2
* Post v3.8.0b2Łukasz Langa2019-07-041-1/+1
* Python 3.8.0b2v3.8.0b2Łukasz Langa2019-07-041-2/+2
* bpo-36763: Add PyConfig_SetWideStringList() (GH-14444)Miss Islington (bot)2019-07-011-0/+3
* bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode...Miss Islington (bot)2019-07-011-0/+5
* bpo-37369: Fix initialization of sys members when launched via an app contain...Steve Dower2019-06-292-4/+7
* [3.8] bpo-37250: put back tp_print for backwards compatibility (GH-14193)Jeroen Demeyer2019-06-251-0/+3
* bpo-37189: Export old PyRun_XXX() functions (GH-14142)Miss Islington (bot)2019-06-171-2/+18
* bpo-37077: Add native thread ID (TID) for AIX (GH-13624)Miss Islington (bot)2019-06-131-1/+1
* bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020)Miss Islington (bot)2019-06-131-1/+0
* bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)Miss Islington (bot)2019-06-121-0/+3
* bpo-37160: Thread native ID NetBSD support (GH-13835)Miss Islington (bot)2019-06-121-1/+1
* bpo-37191: Avoid declaration-after-statement in header included from Python.h...Petr Viktorin2019-06-071-4/+7
* Post v3.8.0b1Łukasz Langa2019-06-041-1/+1
* Python 3.8.0b1v3.8.0b1Łukasz Langa2019-06-041-3/+3
* Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795)Victor Stinner2019-06-044-15/+20
* Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...Victor Stinner2019-06-032-18/+7
* bpo-37087: Adding native ID support for OpenBSD (GH-13654)David Carlier2019-06-031-1/+1
* bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)Inada Naoki2019-06-033-0/+47
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13...Eric Snow2019-06-012-7/+18
* bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)Eric Snow2019-05-314-20/+15
* bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)Jeroen Demeyer2019-05-303-3/+3
* bpo-36974: remove _PyObject_HasFastCall (GH-13460)Jeroen Demeyer2019-05-301-4/+0
* bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...Antoine Pitrou2019-05-291-8/+10
* bpo-22385: Support output separators in hex methods. (#13578)Gregory P. Smith2019-05-291-0/+3
* bpo-36974: implement PEP 590 (GH-13185)Jeroen Demeyer2019-05-297-44/+103
* bpo-37001: Makes symtable.symtable have parity with compile for input (#13483)Dino Viehland2019-05-281-0/+13
* Fix comments in initconfig.h (GH-13636)MandarJKulkarni2019-05-281-3/+3
* bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980)Zackery Spytz2019-05-2811-104/+114
* bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)Jeroen Demeyer2019-05-281-0/+3
* bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-1...Matthias Bussonnier2019-05-282-5/+0
* bpo-1230540: Add threading.excepthook() (GH-13515)Victor Stinner2019-05-281-0/+2
* bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...Eric V. Smith2019-05-271-4/+3
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-279-291/+287
* bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)Victor Stinner2019-05-271-0/+3
* bpo-36785: PEP 574 implementation (GH-7076)Antoine Pitrou2019-05-262-0/+32
* bpo-36710: Add tstate parameter in ceval.c (GH-13547)Victor Stinner2019-05-244-3/+68