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-113191: Add support of os.fchmod() on Windows (GH-113192)
Serhiy Storchaka
2023-12-24
2
-27/+59
*
gh-111784: Fix two segfaults in the elementtree module (GH-113405)
Kirill Podoprigora
2023-12-24
1
-2/+14
*
gh-112205: Support docstring for `@getter` (#113160)
Donghee Na
2023-12-20
4
-49/+204
*
gh-113119: Fix the macOS framework installer build (#113268)
Gregory P. Smith
2023-12-19
1
-1/+10
*
gh-113039: Avoid using leading dots in the include path for frozen getpath.py...
Itamar Oren
2023-12-18
1
-1/+1
*
gh-113117: Support posix_spawn in subprocess.Popen with close_fds=True (#113118)
Jakub Kulík
2023-12-17
1
-0/+24
*
gh-113149: Improve error message when JSON has trailing comma (GH-113227)
Carson Radtke
2023-12-17
1
-0/+14
*
gh-113119 fix environment handling in subprocess.Popen when posix_spawn is us...
Jakub Kulík
2023-12-17
1
-6/+10
*
gh-113202: Add a strict option to itertools.batched() (gh-113203)
Raymond Hettinger
2023-12-16
2
-21/+40
*
gh-111964: Add _PyRWMutex a "readers-writer" lock (gh-112859)
Sam Gross
2023-12-16
1
-0/+99
*
gh-113172: Fix compiler warnings in Modules/_xxinterpqueuesmodule.c (GH-113173)
Serhiy Storchaka
2023-12-15
1
-1/+3
*
bpo-36796: Clean the error handling in _testcapimodule.c (GH-13085)
Zackery Spytz
2023-12-14
2
-14/+50
*
gh-86179: Avoid making case-only changes when calculating realpath() during i...
Steve Dower
2023-12-14
1
-2/+11
*
gh-59616: Support os.chmod(follow_symlinks=True) and os.lchmod() on Windows (...
Serhiy Storchaka
2023-12-14
2
-23/+71
*
gh-112205: Update textio module to use `@getter` as possible. (gh-113095)
Donghee Na
2023-12-14
2
-49/+125
*
gh-111049: Fix crash during garbage collection of the BytesIO buffer object (...
Serhiy Storchaka
2023-12-14
1
-10/+4
*
gh-86179: Implement realpath() on Windows for getpath.py calculations (GH-113...
Steve Dower
2023-12-13
1
-0/+39
*
gh-110190: Fix ctypes structs with array on PPCLE64 (GH-112959)
Diego Russo
2023-12-13
2
-59/+124
*
gh-111650: Ensure pyconfig.h includes Py_GIL_DISABLED on Windows (GH-112778)
Steve Dower
2023-12-13
12
-24/+0
*
gh-112205: Support `@setter` annotation from AC (gh-112922)
Donghee Na
2023-12-13
6
-52/+113
*
gh-112723: Call `PyThreadState_Clear()` from the correct interpreter (#112776)
Sam Gross
2023-12-13
1
-0/+2
*
gh-76785: Add Interpreter.prepare_main() (gh-113021)
Eric Snow
2023-12-12
1
-0/+56
*
gh-76785: More Fixes for test.support.interpreters (gh-113012)
Eric Snow
2023-12-12
4
-2/+1692
*
gh-76785: Fixes for test.support.interpreters (gh-112982)
Eric Snow
2023-12-12
4
-169/+401
*
gh-51944: fix type and missing addition in gh-112823 (#112996)
Ronald Oussoren
2023-12-12
1
-1/+4
*
gh-87286: Add a number of LOG_* constants to syslog (#24432)
Ronald Oussoren
2023-12-12
1
-0/+24
*
gh-112529: Use atomic operations for `gcstate->collecting` (#112533)
Sam Gross
2023-12-11
1
-184/+168
*
Add a fuzzer for `Py_CompileStringExFlags` (#111721)
Brad Larsen
2023-12-10
9
-0/+262
*
gh-51944: Add missing macOS constants to termios (#112823)
Ronald Oussoren
2023-12-07
1
-0/+61
*
gh-112730: Use color to highlight error locations (gh-112732)
Pablo Galindo Salgado
2023-12-06
2
-1/+49
*
gh-111178: Define `visitproc` callback functions properly and remove unnecess...
Christopher Chavez
2023-12-06
1
-9/+13
*
gh-111545: Add Py_HashPointer() function (#112096)
Victor Stinner
2023-12-06
1
-0/+16
*
gh-110190: Fix ctypes structs with array on Arm (#112604)
Diego Russo
2023-12-05
2
-18/+71
*
gh-105323: Remove `WITH_APPLE_EDITLINE` to use the same declaration for all e...
Tian Gao
2023-12-05
1
-6/+2
*
gh-112334: Restore subprocess's use of `vfork()` & fix `extra_groups=[]` beha...
Gregory P. Smith
2023-12-04
1
-2/+10
*
gh-112535: Add test on _Py_ThreadId() (#112709)
Victor Stinner
2023-12-04
1
-0/+14
*
gh-105967: Work around a macOS bug, limit zlib C library crc32 API calls to 1...
Gregory P. Smith
2023-12-04
2
-10/+26
*
gh-109786: Fix leaks and crash when re-enter itertools.pairwise.__next__() (G...
Serhiy Storchaka
2023-12-04
1
-2/+11
*
gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679)
Christopher Chavez
2023-12-04
1
-1/+1
*
gh-112567: Add _PyTimeFraction C API (#112568)
Victor Stinner
2023-12-01
1
-35/+19
*
gh-112567: Add _Py_GetTicksPerSecond() function (#112587)
Victor Stinner
2023-12-01
3
-107/+114
*
bpo-37013: Fix the error handling in socket.if_indextoname() (GH-13503)
Zackery Spytz
2023-12-01
1
-5/+11
*
gh-112510: Add `readline.backend` for the backend readline uses (GH-112511)
Tian Gao
2023-12-01
1
-1/+8
*
gh-112205: Update stringio module to use AC for the thread-safe (gh-112549)
Donghee Na
2023-11-30
2
-35/+79
*
gh-112205: Support @getter annotation from AC (gh-112396)
Donghee Na
2023-11-30
2
-49/+88
*
Add more C API tests (GH-112522)
Serhiy Storchaka
2023-11-29
1
-0/+33
*
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
[next]