149 Commits (dd74c01d3bd2833f72ffe400a1d10b8583c0ba6a)

Author SHA1 Message Date
Victor Stinner 52a327c1cb
bpo-39465: Add pycore_atomic_funcs.h header (GH-20766) 5 years ago
Victor Stinner fe6e5e7cfd
bpo-35134: Add Include/cpython/pythonrun.h file (GH-23701) 5 years ago
Serhiy Storchaka 2ad93821a6
bpo-42431: Fix outdated bytes comments (GH-23458) 5 years ago
Victor Stinner 8e3b9f9283
bpo-42161: Add _PyLong_GetZero() and _PyLong_GetOne() (GH-22993) 5 years ago
Victor Stinner 47e1afd2a1
bpo-1635741: _PyUnicode_Name_CAPI moves to internal C API (GH-22713) 5 years ago
Maggie Moss 1b4552c5e8
bpo-41428: Implementation for PEP 604 (GH-21515) 6 years ago
Mark Shannon 6e8128f02e
bpo-41323: Perform 'peephole' optimizations directly on the CFG. (GH-21517) 6 years ago
Nikita Nemkin fe2a48c605
bpo-41089: Filters and other issues in Visual Studio projects (GH-21070) 6 years ago
Victor Stinner c45dbe93b7
bpo-41078: Add pycore_list.h internal header file (GH-21057) 6 years ago
Victor Stinner 384621c42f
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056) 6 years ago
Lysandros Nikolaou 564cd18767
bpo-40939: Rename PyPegen* functions to PyParser* (GH-21016) 6 years ago
Lysandros Nikolaou 314858e276
bpo-40939: Remove the old parser (Part 2) (GH-21005) 6 years ago
Pablo Galindo 1ed83adb0e
bpo-40939: Remove the old parser (GH-20768) 6 years ago
Victor Stinner c6b292cdee
bpo-29882: Add _Py_popcount32() function (GH-20518) 6 years ago
Victor Stinner b617993b7c
bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044) 6 years ago
Petr Viktorin e1becf46b4
bpo-38787: C API for module state access from extension methods (PEP 573) (GH-19936) 6 years ago
Victor Stinner b8f704d219
bpo-40421: Add Include/cpython/code.h header file (GH-19756) 6 years ago
Victor Stinner 7c59d7c986
bpo-40421: Add pyframe.h header file (GH-19755) 6 years ago
Ammar Askar a494caa14b
bpo-40401: Remove duplicate pyhash.h include from pythoncore.vcxproj (GH-19725) 6 years ago
Lysandros Nikolaou ebebb6429c
bpo-40334: Improve various PEG-Parser related stuff (GH-19669) 6 years ago
Pablo Galindo c5fc156852
bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) 6 years ago
Victor Stinner 1ae035b7e8
bpo-40302: Add pycore_byteswap.h header file (GH-19552) 6 years ago
Victor Stinner 0c13e1f96a
bpo-40241: Add pycore_interp.h header (GH-19499) 6 years ago
Victor Stinner 1c4cbdf94d
bpo-40268: Add pycore_runtime.h header file (GH-19493) 6 years ago
Victor Stinner a15e260b70
bpo-40170: Add _PyIndex_Check() internal function (GH-19426) 6 years ago
Guido van Rossum 48b069a003
bpo-39481: Implementation for PEP 585 (#18239) 6 years ago
Victor Stinner 08faf0016e
bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180) 6 years ago
Steve Dower 2dd41740c9
bpo-39930: Ensure vcruntime140.dll is included in all Windows packages (GH-18918) 6 years ago
Steve Dower ce3a498408
bpo-38597: Never statically link extension initialization code on Windows (GH-18724) 6 years ago
Victor Stinner 8c3aee65ed
bpo-35134: Add Include/cpython/fileutils.h header file (GH-18493) 6 years ago
Victor Stinner 98921aeaf5
bpo-35134: Add Include/cpython/bytesobject.h file (GH-18494) 6 years ago
Victor Stinner e9e7d284c4
bpo-35081: Move dtoa.h header to the internal C API (GH-18489) 6 years ago
Victor Stinner 45876a90e2
bpo-35081: Move bytes_methods.h to the internal C API (GH-18492) 6 years ago
Victor Stinner bec4186c67
bpo-35134: Create Include/cpython/listobject.h (GH-18395) 6 years ago
Steve Dower 6a65eba44b
bpo-39401: Avoid unsafe DLL load on Windows 7 and earlier (GH-18231) 6 years ago
Victor Stinner 4d231bcc77
bpo-38644: Add _PyObject_Call() (GH-17089) 6 years ago
Victor Stinner f4b1e3d7c6
bpo-38644: Add Py_EnterRecursiveCall() to the limited API (GH-17046) 6 years ago
Dong-hee Na 0a18ee4be7 bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266) 7 years ago
Victor Stinner 01b63ecac6
bpo-35134: Add Include/cpython/import.h header file (GH-14213) 7 years ago
Paul Monson 04856c2193 bpo-37238: Enable building for Windows using Visual Studio 2019 (GH-13988) 7 years ago
Inada Naoki 91234a1636
bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884) 7 years ago
Victor Stinner 331a6a56e9
bpo-36763: Implement the PEP 587 (GH-13592) 7 years ago
Antoine Pitrou 91f4380ced
bpo-36785: PEP 574 implementation (GH-7076) 7 years ago
Victor Stinner 438a12dd9d
bpo-36710: Add tstate parameter in ceval.c (GH-13547) 7 years ago
Steve Dower b82e17e626
bpo-36842: Implement PEP 578 (GH-12613) 7 years ago
Victor Stinner fd1e0e93b1
bpo-35134: Register new traceback.h header files (GH-13431) 7 years ago
Paul Monson f96e7fd924 bpo-36941: Windows build changes for Windows ARM64 (GH-13365) 7 years ago
Victor Stinner 5c75f37d47
bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853) 7 years ago
Victor Stinner aba7d662ab
bpo-35134: Add cpython/pymem.h to build system (GH-12842) 7 years ago
Pablo Galindo f2cf1e3e28
bpo-36623: Clean parser headers and include files (GH-12253) 7 years ago