summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Add more comments to hypot() (GH-102817)Raymond Hettinger2023-03-181-18/+12
* Simplify and improve accuracy for subnormals in hypot() (GH-102785)Raymond Hettinger2023-03-171-35/+28
* gh-102755: Add PyErr_DisplayException(exc) (#102756)Irit Katriel2023-03-161-10/+3
* gh-99726: Improves correctness of stat results for Windows, and uses faster A...Steve Dower2023-03-161-45/+146
* gh-102192: remove redundant exception fields from ssl module socket (#102466)Irit Katriel2023-03-162-23/+12
* gh-102594: PyErr_SetObject adds note to exception raised on normalization err...Irit Katriel2023-03-161-0/+21
* Simplify and speed-up math.hypot() and math.dist() (GH-102734)Raymond Hettinger2023-03-151-154/+139
* gh-102281: Fix potential nullptr dereference + use of uninitialized memory (g...Max Bachmann2023-03-151-1/+4
* gh-102013: Add PyUnstable_GC_VisitObjects (#102014)Jacob Bower2023-03-142-0/+93
* gh-101659: Avoid Allocation for Shared Exceptions in the _xxsubinterpreters M...Eric Snow2023-03-131-74/+49
* gh-101524: Fix the ChannelID tp_name (gh-102655)Eric Snow2023-03-131-1/+1
* gh-102650: Remove duplicate include directives from multiple source files (#1...chgnrdv2023-03-133-6/+2
* gh-102519: Add os.listdrives, os.listvolumes and os.listmounts on Windows (GH...Steve Dower2023-03-102-1/+321
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives in ...Irit Katriel2023-03-102-26/+21
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-0920-83/+176
* gh-100227: Isolate the Import State to Each Interpreter (gh-101941)Eric Snow2023-03-091-5/+8
* gh-102304: Consolidate Direct Usage of _Py_RefTotal (gh-102514)Eric Snow2023-03-081-6/+1
* gh-102507 Remove invisible pagebreak characters (#102531)JosephSBoyle2023-03-081-3/+0
* GH-102397: Fix segfault from race condition in signal handling (#102399)Kumar Aditya2023-03-081-0/+4
* gh-102381: don't call watcher callback with dead object (#102382)Carl Meyer2023-03-081-1/+12
* gh-102493: fix normalization in PyErr_SetObject (#102502)Irit Katriel2023-03-071-0/+15
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives in ...Irit Katriel2023-03-061-14/+8
* gh-101863: Fix wrong comments in EUC-KR codec (gh-102417)Byeongmin Choi2023-03-041-2/+2
* gh-102179: Fix `os.dup2` error reporting for negative fds (#102180)Alexey Izbyshev2023-03-041-5/+0
* gh-101101: Fix test_code_extra to reset value for refleak test (gh-102350)Dong-hee Na2023-03-021-1/+5
* gh-102336: Ensure CancelIoEx result is not ignored (GH-102347)Max Bachmann2023-03-011-1/+1
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives in ...Irit Katriel2023-03-011-34/+24
* gh-102336: Remove code specifically for handling Windows 7 (GH-102337)Max Bachmann2023-03-015-152/+54
* gh-99108: Add missing md5/sha1 defines to Modules/Setup (#102308)Anthony Sottile2023-02-281-2/+2
* gh-101101: Unstable C API tier (PEP 689) (GH-101102)Petr Viktorin2023-02-284-1/+120
* gh-102251: Updates to test_imp Toward Fixing Some Refleaks (gh-102254)Eric Snow2023-02-271-11/+11
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-2418-169/+136
* gh-101476: Use _PyType_GetModuleState where applicable (#102188)Erlend E. Aasland2023-02-249-15/+19
* gh-102141: replace use of getpid on Windows with GetCurrentProcessId (GH-102142)Max Bachmann2023-02-242-7/+12
* gh-81652: Add MAP_ALIGNED_SUPER FreeBSD and MAP_CONCEAL OpenBSD constants (gh...Yeojin Kim2023-02-241-0/+6
* gh-101476: Add _PyType_GetModuleState (GH-101477)Erlend E. Aasland2023-02-231-1/+2
* gh-99108: Followup fix for Modules/Setup (GH-102183)Jonathan Protzenko2023-02-231-2/+2
* gh-93649: Split exception tests from _testcapimodule.c (GH-102173)Erlend E. Aasland2023-02-234-288/+282
* bpo-23224: Fix segfaults and multiple leaks in the lzma and bz2 modules (GH-7...Zackery Spytz2023-02-234-175/+274
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-231-0/+11
* gh-99108: Import MD5 and SHA1 from HACL* (#102089)Jonathan Protzenko2023-02-2218-690/+2471
* Few coverage nitpicks for the cmath module (#102067)Sergey B Kirpichev2023-02-221-2/+2
* gh-101965: Fix usage of Py_EnterRecursiveCall return value in _bisectmodule.c...Owain Davies2023-02-211-2/+2
* gh-101819: Adapt _io types to heap types, batch 1 (GH-101949)Erlend E. Aasland2023-02-208-469/+373
* Add missing 'is' to `cmath.log()` docstring (#102049)Owain Davies2023-02-192-4/+4
* gh-101881: Support (non-)blocking read/write functions on Windows pipes (GH-1...Rayyan Ansari2023-02-162-19/+1
* gh-99108: Refactor _sha256 & _sha512 into _sha2. (#101924)Gregory P. Smith2023-02-168-1375/+1247
* gh-98627: Add an Optional Check for Extension Module Subinterpreter Compatibi...Eric Snow2023-02-161-2/+10
* gh-101758: Add a Test For Single-Phase Init Modules in Multiple Interpreters ...Eric Snow2023-02-152-2/+62
* gh-99138: Isolate _zoneinfo (#99218)Erlend E. Aasland2023-02-152-198/+536