summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-08108-1573/+2282
* bpo-45952: Get the C analyzer tool working again. (gh-31220)Eric Snow2022-02-081-0/+1
* bpo-46475: Add typing.Never and typing.assert_never (GH-30842)Jelle Zijlstra2022-02-084-19/+151
* bpo-45952: Get the C analyzer tool working again. (gh-31219)Eric Snow2022-02-081-0/+3
* bpo-46323: Use PyObject_Vectorcall while calling ctypes callback function (GH...Dong-hee Na2022-02-082-38/+42
* bpo-46521: Fix codeop to use a new partial-input mode of the parser (GH-31010)Pablo Galindo Salgado2022-02-087-55/+49
* bpo-46675: Allow object value arrays and split key dictionaries larger than 1...Mark Shannon2022-02-086-51/+91
* Print summary stats for overall success of specialization. (GH-31211)Mark Shannon2022-02-081-0/+32
* bpo-46676: Make ParamSpec args and kwargs equal to themselves (GH-31203)Gregory Beauregard2022-02-083-0/+19
* bpo-46323 Fix ref leak if ctypes.CFuncPtr raises an error. (GH-31209)Dong-hee Na2022-02-081-0/+1
* bpo-46678: Fix Invalid cross device link in Lib/test/support/import_helper.py...Jason Wilkes2022-02-082-1/+5
* bpo-46659: calendar uses locale.getlocale() (GH-31166)Victor Stinner2022-02-075-4/+15
* bpo-46534: Implement PEP 673 Self in typing.py (GH-30924)James Hilton-Balfe2022-02-075-2/+116
* Skip cron workflow for forks (GH-30748)Hugo van Kemenade2022-02-071-0/+1
* bpo-46638: Makes registry virtualisation setting stable when building MSIX pa...Steve Dower2022-02-073-4/+16
* bpo-46072: Merge dxpairs into py_stats. (GH-31197)Mark Shannon2022-02-073-62/+21
* bpo-46166: Fix compiler warnings in What's New in Python 3.11 (GH-31198)Victor Stinner2022-02-071-4/+4
* bpo-46670: Fix #ifdef in sha3module.c (GH-31180)Victor Stinner2022-02-071-1/+3
* bpo-46670: Remove unused macros in the Python directory (GH-31192)Victor Stinner2022-02-074-29/+2
* bpo-46670: Remove unused macros in the Objects directory (GH-31193)Victor Stinner2022-02-074-12/+0
* bpo-46670: Remove unused macros in the Modules directory (GH-31194)Victor Stinner2022-02-076-14/+0
* bpo-39277: Fix PY_TIMEOUT_MAX cast in _threadmodule.c (GH-31195)Victor Stinner2022-02-071-1/+1
* bpo-46670: Remove unused macros in ceval.c (GH-31196)Victor Stinner2022-02-071-7/+2
* bpo-46072: Improve LOAD_METHOD stats (GH-31104)Mark Shannon2022-02-071-3/+17
* bpo-46323: _ctypes.CFuncPtr fails if _argtypes_ is too long (GH-31188)Victor Stinner2022-02-076-22/+45
* bpo-46648: Rewrite test_urllib2.test_issue16464() with a local HTTP server (G...Nikita Sobolev2022-02-072-18/+18
* bpo-40479: Fix undefined behavior in Modules/_hashopenssl.c (GH-31153)Zackery Spytz2022-02-072-0/+2
* bpo-46589: Improve documentation for typing._GenericAlias (GH-31026)Matthew Rahtz2022-02-071-32/+110
* bpo-46611: add coverage to instance and class checks in `typing.py` (GH-31078)Nikita Sobolev2022-02-072-16/+59
* bpo-46670: Test if a macro is defined, not its value (GH-31178)Victor Stinner2022-02-077-16/+16
* bpo-46670: Define all macros for stringlib (GH-31176)Victor Stinner2022-02-0710-17/+24
* bpo-46670: Remove unused get_frame_state() function (GH-31177)Victor Stinner2022-02-071-9/+0
* bpo-46655: allow stringized TypeAlias with get_type_hints (GH-31156)Gregory Beauregard2022-02-063-1/+7
* bpo-46659: test.support avoids locale.getdefaultlocale() (GH-31167)Victor Stinner2022-02-061-1/+1
* bpo-46659: Update the test on the mbcs codec alias (GH-31168)Victor Stinner2022-02-063-19/+15
* Add more tests for variable substitution in generics (GH-31170)Serhiy Storchaka2022-02-061-0/+27
* bpo-46648: Skip test_urllib2.test_issue16464() (GH-31161)Victor Stinner2022-02-061-0/+2
* bpo-23952: Document cgi module's maxlen variable (GH-30338)Hugo van Kemenade2022-02-062-0/+10
* [doc] Enhance readability by avoiding big blocks for small numbers. (GH-31157)Julien Palard2022-02-061-9/+3
* bpo-46640: Py_NAN now uses the C99 NAN constant (GH-31134)Victor Stinner2022-02-063-21/+20
* Allows to specify the port on which serve documentation (GH-31145)Christophe Nanteuil2022-02-061-1/+2
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-0527-50/+228
* bpo-46608: Fix argument parsing in freeze_modules.py (GH-31131)Kumar Aditya2022-02-051-10/+12
* Fix __init_subclass__ using self instead of class (#31135)Gregory Beauregard2022-02-051-1/+1
* bpo-31369: include ``RegexFlag`` in ``re.__all__`` (GH-30279)andrei kulakov2022-02-053-1/+20
* bpo-46608: exclude marshalled-frozen data if deep-freezing to save 300 KB spa...Kumar Aditya2022-02-049-84/+87
* bpo-46629: Update classicAppCompat.sccd for new signing certificate (GH-31111)Steve Dower2022-02-042-29/+42
* Add miss stats for specialized instructions. (GH-31108)Mark Shannon2022-02-043-31/+43
* Optimize images by IMGbot (GH-21348)Manish Kumar ⛄2022-02-0425-1/+1
* bpo-46588: fix typo in test_calltip.py (GH-31119)Caio Agiani2022-02-041-1/+1