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-112454: Disable TLS-PSK if OpenSSL was built without PSK support (#112491)
Grant Ramsay
2023-11-29
1
-0/+28
*
gh-109802: Increase test coverage for complexobject.c (GH-112452)
Sergey B Kirpichev
2023-11-28
1
-0/+59
*
gh-112105: Make completer delims work on libedit (gh-112106)
Tian Gao
2023-11-28
1
-0/+16
*
gh-112071: Make `_random.Random` methods thread-safe in `--disable-gil` build...
Radislav Chugunov
2023-11-28
2
-10/+46
*
gh-112292 : Catch import error conditions with readline hooks (gh-112313)
Anthony Shaw
2023-11-28
1
-22/+69
*
bpo-41422: Visit the Pickler's and Unpickler's memo in tp_traverse (GH-21664)
kale-smoothie
2023-11-27
1
-0/+15
*
gh-111789: Use PyDict_GetItemRef() in Modules/pyexpat.c (gh-112079)
Serhiy Storchaka
2023-11-27
1
-12/+5
*
gh-111789: Use PyDict_GetItemRef() in Modules/_threadmodule.c (gh-112077)
Serhiy Storchaka
2023-11-27
1
-6/+4
*
gh-111789: Use PyDict_GetItemRef() in Modules/_struct.c (gh-112076)
Serhiy Storchaka
2023-11-27
1
-5/+4
*
gh-111789: Use PyDict_GetItemRef() in Modules/_csv.c (gh-112073)
Serhiy Storchaka
2023-11-27
1
-8/+2
*
gh-112438: Fix support of format units with the "e" prefix in nested tuples i...
Serhiy Storchaka
2023-11-27
1
-5/+9
*
gh-63284: Add support for TLS-PSK (pre-shared key) to the ssl module (#103181)
Grant Ramsay
2023-11-27
2
-1/+360
*
gh-112358: Fix Python 3.12 regression with subclassing struct.Struct. (#112424)
Mark Dickinson
2023-11-26
2
-34/+41
*
gh-76785: Return an "excinfo" Object From Interpreter.run() (gh-111573)
Eric Snow
2023-11-23
1
-69/+25
*
gh-76785: Add _PyType_GetModuleName() to the Internal C-API (gh-112323)
Eric Snow
2023-11-22
2
-0/+17
*
gh-111965: Use critical sections to make io.BufferedIOBase and its related cl...
Mayuresh Kedari
2023-11-22
2
-40/+180
*
gh-59703: restore include of mach-o/dyld.h (gh-112309)
Ned Deily
2023-11-22
1
-0/+1
*
gh-111863: Rename term Py_NOGIL to Py_GIL_DISABLED in sysconfig (gh-112307)
Donghee Na
2023-11-22
1
-3/+3
*
gh-59703: use the system dladdr function in getpath.c for macOS framework bui...
AN Long
2023-11-21
1
-11/+6
*
gh-111863: Rename `Py_NOGIL` to `Py_GIL_DISABLED` (#111864)
Hugo van Kemenade
2023-11-20
16
-31/+31
*
gh-111965: Using critical sections to make ``io.StringIO`` thread safe. (gh-1...
AN Long
2023-11-19
2
-30/+194
*
gh-112213: Update _weakref module to use new AC feature (gh-112250)
Donghee Na
2023-11-19
2
-25/+31
*
gh-111903: Update AC to support "pycore_critical_section.h" header (gh-112251)
Donghee Na
2023-11-19
6
-6/+6
*
gh-111965: Use critical sections to make io.TextIOWrapper thread safe (gh-112...
AN Long
2023-11-18
2
-39/+181
*
gh-111926: Update _weakref to be threadsafe in --disable-gil build (gh-112189)
Donghee Na
2023-11-18
1
-9/+20
*
gh-112070: make `functools.lru_cache` threadsafe in --disable-gil build (gh-1...
Wanderxjtu
2023-11-17
2
-6/+25
*
gh-111482: Fix time_clockid_converter() on AIX (#112170)
Victor Stinner
2023-11-16
1
-2/+2
*
gh-111956: Add thread-safe one-time initialization. (gh-111960)
Sam Gross
2023-11-16
1
-0/+32
*
gh-111798: Use lower Py_C_RECURSION_LIMIT in debug mode (#112124)
Victor Stinner
2023-11-16
1
-0/+9
*
gh-111916: Make hashlib related modules thread-safe without the GIL (#111981)
Tomas R
2023-11-15
9
-137/+187
*
gh-96954: Fix `make regen-unicodedata` in out-of-tree builds (#112118)
Miro HronĨok
2023-11-15
2
-2/+2
*
gh-111789: Use PyDict_GetItemRef() in Modules/_asynciomodule.c (GH-112072)
Serhiy Storchaka
2023-11-15
1
-6/+2
*
gh-112062: Make `_struct` module thread-safe in `--disable-gil` builds (#112094)
Radislav Chugunov
2023-11-15
1
-7/+6
*
gh-111545: Test PyHash_GetFuncDef() function (#112098)
Victor Stinner
2023-11-15
4
-1/+61
*
gh-111995: Add getnameinfo extension flag (#111994)
adder32
2023-11-15
1
-0/+3
*
gh-111942: Fix SystemError in the TextIOWrapper constructor (#112061)
Serhiy Storchaka
2023-11-14
1
-2/+6
*
gh-111942: Fix crashes in TextIOWrapper.reconfigure() (GH-111976)
Serhiy Storchaka
2023-11-14
1
-3/+36
*
gh-111262: Add PyDict_Pop() function (#112028)
Victor Stinner
2023-11-14
4
-27/+105
*
gh-111903: Add `@critical_section` directive to Argument Clinic. (#111904)
Sam Gross
2023-11-14
2
-3/+11
*
gh-111789: Use PyDict_GetItemRef() in _ctypes (GH-111828)
Serhiy Storchaka
2023-11-14
2
-78/+61
*
gh-107149: make new opcode util functions private rather than public and unst...
Irit Katriel
2023-11-14
1
-17/+18
*
gh-111138: Add PyList_Extend() and PyList_Clear() functions (#111862)
Victor Stinner
2023-11-13
1
-0/+21
*
gh-111928: make "memo" dict local to scan_once call (gh-112005)
AN Long
2023-11-13
1
-23/+19
*
gh-111777: Fix assertion errors on incorrectly still-tracked GC object destru...
T. Wouters
2023-11-12
1
-1/+3
*
Fix undefined behaviour in datetime.time.fromisoformat() (#111982)
T. Wouters
2023-11-11
1
-1/+1
*
gh-111789: Simplify the sqlite code (GH-111829)
Serhiy Storchaka
2023-11-10
2
-17/+6
*
Add private _PyUnicode_AsUTF8NoNUL() function (GH-111957)
Serhiy Storchaka
2023-11-10
2
-13/+2
*
gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Windows (GH...
Serhiy Storchaka
2023-11-10
1
-1/+6
*
gh-111569: Fix critical sections test on WebAssembly (GH-111897)
Sam Gross
2023-11-09
1
-0/+4
*
gh-111835: Add seekable method to mmap.mmap (gh-111852)
Donghee Na
2023-11-09
1
-7/+14
[prev]
[next]