index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-102251: Explicitly free state for test modules with state in test_import (...
sunmy2019
2023-05-31
1
-1/+21
*
gh-105156: Argument Clinic avoids Py_UNICODE type (#105161)
Victor Stinner
2023-05-31
6
-29/+27
*
gh-62948: IOBase finalizer logs close() errors (#105104)
Victor Stinner
2023-05-31
1
-12/+0
*
gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)
Inada Naoki
2023-05-31
2
-87/+0
*
gh-105020: Share tp_bases and tp_mro Between Interpreters For All Static Buil...
Eric Snow
2023-05-31
1
-0/+23
*
gh-105071: add PyUnstable_Exc_PrepReraiseStar to expose except* implementatio...
Irit Katriel
2023-05-30
2
-1/+49
*
gh-88745: Add _winapi.CopyFile2 and update shutil.copy2 to use it (GH-105055)
Steve Dower
2023-05-30
2
-1/+164
*
gh-102251: Fix reference leak in _testsinglephase initialization (#105082)
sunmy2019
2023-05-30
1
-1/+3
*
gh-104803: Implement ntpath.isdevdrive for checking whether a path is on a Wi...
Steve Dower
2023-05-29
2
-1/+159
*
GH-101588: Deprecate pickle/copy/deepcopy support in itertools (GH-104965)
Raymond Hettinger
2023-05-26
1
-1/+43
*
GH-104787: use managed dict in `_asyncio` (#104795)
Kumar Aditya
2023-05-26
1
-9/+5
*
gh-104372: Drop the GIL around the vfork() call. (#104782)
Gregory P. Smith
2023-05-25
1
-1/+18
*
gh-104773: PEP 594: Remove the audioop module (#104937)
Victor Stinner
2023-05-25
4
-3325/+0
*
gh-104773: PEP 594: Remove the crypt module (#104908)
Victor Stinner
2023-05-25
4
-156/+0
*
gh-104820: Fixes os.stat on Windows to better handle file systems that do not...
Steve Dower
2023-05-24
1
-4/+8
*
gh-104773: PEP 594: Remove the nis module (#104897)
Victor Stinner
2023-05-24
3
-540/+0
*
gh-104773: PEP 594: Remove the spwd module (#104871)
Victor Stinner
2023-05-24
4
-351/+0
*
gh-99108: Refresh HACL* (#104808)
Jonathan Protzenko
2023-05-24
14
-140/+214
*
gh-104773: PEP 594: Remove the ossaudiodev module (#104862)
Victor Stinner
2023-05-24
3
-1402/+1
*
gh-104372: use == -1 before PyErr_Occurred (#104831)
Gregory P. Smith
2023-05-24
1
-1/+1
*
gh-103295: fix stack overwrite on 32-bit in perf map test harness (#104811)
Carl Meyer
2023-05-23
1
-4/+9
*
Fix missing/incomplete NULL checks in multiple source files (#104564)
chgnrdv
2023-05-23
5
-1/+20
*
gh-104469: Convert _testcapi/long to use AC (gh-104720)
Dong-hee Na
2023-05-23
2
-35/+250
*
gh-99108: Release the GIL around hashlib built-in computation (#104675)
Gregory P. Smith
2023-05-23
6
-15/+204
*
GH-103092: isolate `_ssl` (#104725)
Kumar Aditya
2023-05-22
3
-14/+21
*
gh-98836: Extend PyUnicode_FromFormat() (GH-98838)
Serhiy Storchaka
2023-05-21
4
-29/+52
*
gh-103857: Document utcnow and utcfromtimestamp deprecations in What's New (#...
Hugo van Kemenade
2023-05-21
1
-1/+1
*
GH-101291: Add low level, unstable API for pylong (GH-101685)
Mark Shannon
2023-05-21
1
-0/+13
*
gh-103295: expose API for writing perf map files (#103546)
gsallam
2023-05-21
1
-0/+27
*
gh-104469: Convert _testcapi/exceptions to use AC (gh-104502)
Dong-hee Na
2023-05-21
2
-97/+531
*
gh-104698: Fix reference leak in mmapmodule.c (#104700)
Kirill Podoprigora
2023-05-21
1
-3/+19
*
gh-104372: Use non-Raw malloc for c_fds_to_keep in _posixsubprocess (#104697)
Gregory P. Smith
2023-05-20
1
-2/+2
*
gh-103987: fix several crashes in mmap module (#103990)
Prince Roshan
2023-05-20
1
-2/+13
*
gh-94906: Support multiple steps in math.nextafter (#103881)
Matthias Görgens
2023-05-19
2
-12/+152
*
gh-103839: Allow building Tkinter against Tcl 8.7 without external libtommath...
Christopher Chavez
2023-05-19
1
-0/+3
*
gh-104645: fix error handling in marshal tests (#104646)
Irit Katriel
2023-05-19
1
-18/+14
*
GH-102818: Do not call `PyTraceBack_Here` in sys.settrace trampoline. (GH-10...
Mark Shannon
2023-05-19
1
-0/+28
*
GH-103545: Add macOS specific constants for ``os.setpriority`` to ``os`` (#10...
Ronald Oussoren
2023-05-19
1
-0/+12
*
gh-104549: Set __module__ on TypeAliasType (#104550)
Jelle Zijlstra
2023-05-18
1
-1/+4
*
gh-104615: don't make unsafe swaps in apply_static_swaps (#104620)
Carl Meyer
2023-05-18
2
-12/+18
*
GH-96803: Document and test new unstable internal frame API functions (GH-104...
Mark Shannon
2023-05-18
1
-0/+36
*
gh-104372: Cleanup _posixsubprocess `make_inheritable` for async signal safet...
Gregory P. Smith
2023-05-17
1
-34/+91
*
GH-101520: Move tracemalloc functionality into core, leaving interface in Mod...
Mark Shannon
2023-05-17
1
-1541/+12
*
gh-104469: Update README.txt for _testcapi (gh-104529)
Dong-hee Na
2023-05-17
1
-0/+7
*
GH-103092: isolate `_elementtree` (#104561)
Kumar Aditya
2023-05-16
1
-43/+42
*
GH-103092: isolate `pyexpat` (#104506)
Kumar Aditya
2023-05-16
1
-8/+21
*
GH-104510: Fix refleaks in `_io` base types (#104516)
Kumar Aditya
2023-05-16
3
-26/+6
*
gh-103763: Implement PEP 695 (#103764)
Jelle Zijlstra
2023-05-16
3
-1/+29
*
gh-104469: Convert _testcapi/watchers.c to use Argument Clinic (#104503)
Nikita Sobolev
2023-05-15
2
-43/+259
*
gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...
Eric Snow
2023-05-15
4
-4/+5
[next]