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-114685: Check flags in PyObject_GetBuffer() (GH-114707)
Serhiy Storchaka
2024-01-31
1
-2/+4
*
gh-110190: Fix ctypes structs with array on Windows ARM64 (GH-114753)
Diego Russo
2024-01-30
1
-1/+1
*
gh-112919: Speed-up datetime, date and time.replace() (GH-112921)
Eugene Toder
2024-01-30
2
-96/+426
*
gh-113732: Fix support of QUOTE_NOTNULL and QUOTE_STRINGS in csv.reader (GH-1...
Serhiy Storchaka
2024-01-30
1
-17/+29
*
gh-114678: Fix incorrect deprecation warning for 'N' specifier in Decimal for...
Serhiy Storchaka
2024-01-29
1
-6/+8
*
gh-85984: Add POSIX pseudo-terminal functions. (GH-102413)
Soumendra Ganguly
2024-01-29
2
-1/+314
*
gh-91325: Skip Stable ABI checks with Py_TRACE_REFS special build (GH-92046)
Petr Viktorin
2024-01-29
1
-0/+9
*
gh-112050: Adapt collections.deque to Argument Clinic (#113963)
mpage
2024-01-29
2
-152/+678
*
Use Unicode unconditionally for _winapi.CreateFile (GH-114611)
Steve Dower
2024-01-26
2
-13/+17
*
gh-114569: Use PyMem_* APIs for most non-PyObject uses (#114574)
Erlend E. Aasland
2024-01-26
4
-19/+22
*
gh-114312: Fix rare event counter tests on aarch64 (GH-114554)
Michael Droettboom
2024-01-26
1
-5/+5
*
gh-114315: Make `threading.Lock` a real class, not a factory function (#114479)
Nikita Sobolev
2024-01-25
1
-4/+29
*
gh-114312: Collect stats for unlikely events (GH-114493)
Michael Droettboom
2024-01-25
1
-0/+16
*
gh-114492: Initialize struct termios before calling tcgetattr() (GH-114495)
Serhiy Storchaka
2024-01-23
1
-0/+2
*
gh-113884: Make queue.SimpleQueue thread-safe when the GIL is disabled (#114161)
mpage
2024-01-23
2
-90/+136
*
gh-114321: Expose more constants in the fcntl module (GH-114322)
Serhiy Storchaka
2024-01-22
1
-0/+53
*
gh-103092: Ensure `_ctypes.c` static types are accessed via global state (#11...
neonene
2024-01-22
6
-106/+172
*
gh-113796: Add more validation checks in the csv.Dialect constructor (GH-113797)
Serhiy Storchaka
2024-01-22
1
-0/+39
*
gh-114414: Assert PyType_GetModuleByDef result in _threadmodule (#114415)
Nikita Sobolev
2024-01-22
1
-0/+3
*
gh-113884: Refactor `queue.SimpleQueue` to use a ring buffer to store items (...
mpage
2024-01-19
1
-40/+169
*
gh-114286: Fix `maybe-uninitialized` warning in `Modules/_io/fileio.c` (GH-11...
Nikita Sobolev
2024-01-19
1
-1/+1
*
gh-114123: Migrate docstring from _csv to csv (#114124)
Skip Montanaro
2024-01-18
1
-70/+1
*
gh-103092: Convert some `_ctypes` metatypes to heap types (GH-113620)
AN Long
2024-01-18
2
-281/+141
*
gh-104522: Fix OSError raised when run a subprocess (#114195)
Serhiy Storchaka
2024-01-18
1
-10/+11
*
gh-104282: Fix null pointer dereference in `lzma._decode_filter_properties` (...
Radislav Chugunov
2024-01-17
1
-1/+3
*
gh-114096: Restore privileges in _winapi.CreateJunction after creating the ju...
Steve Dower
2024-01-16
1
-7/+21
*
Fix an incorrect comment in iobase_is_closed (GH-102952)
Jonathon Reinhart
2024-01-16
1
-10/+9
*
gh-114101: Correct PyErr_Format arguments in _testcapi module (#114102)
AN Long
2024-01-16
2
-8/+8
*
gh-78502: Add a trackfd parameter to mmap.mmap() (GH-25425)
Zackery Spytz
2024-01-16
1
-6/+20
*
gh-113666: Adding missing UF_ and SF_ flags to module 'stat' (#113667)
Ronald Oussoren
2024-01-15
1
-3/+68
*
gh-113868: Add a number of MAP_* flags from macOS to module mmap (#113869)
Ronald Oussoren
2024-01-12
1
-0/+33
*
gh-111877: Fixes stat() handling for inaccessible files on Windows (GH-113716)
Steve Dower
2024-01-12
1
-6/+10
*
gh-81489: Use Unicode APIs for mmap tagname on Windows (GH-14133)
Zackery Spytz
2024-01-11
1
-19/+15
*
gh-89811: Check for valid tp_version_tag in specializer (GH-113558)
Peter Lazorchak
2024-01-11
1
-0/+29
*
gh-77046: os.pipe() sets _O_NOINHERIT flag on fds (#113817)
Victor Stinner
2024-01-10
2
-4/+4
*
gh-111139: Optimize math.gcd(int, int) (#113887)
Victor Stinner
2024-01-10
1
-5/+9
*
gh-111789: Use PyDict_GetItemRef() in Modules/_zoneinfo.c (GH-112078)
Serhiy Storchaka
2024-01-10
1
-14/+5
*
gh-89850: Add default C implementations of persistent_id() and persistent_loa...
Serhiy Storchaka
2024-01-10
2
-211/+151
*
gh-70835: Clarify error message for CSV file opened with wrong newline (GH-11...
Serhiy Storchaka
2024-01-10
1
-1/+2
*
gh-112182: Replace StopIteration with RuntimeError for future (#113220)
Jamie Phan
2024-01-10
1
-5/+20
*
gh-66060: Use actual class name in _io type's __repr__ (#30824)
AN Long
2024-01-09
3
-20/+29
*
gh-113848: Use PyErr_GivenExceptionMatches() for check for CancelledError (GH...
Serhiy Storchaka
2024-01-09
1
-15/+1
*
gh-87868: Sort and remove duplicates in getenvironment() (GH-102731)
AN Long
2024-01-09
1
-4/+155
*
gh-113791: Expose CLOCK_MONOTONIC_RAW_APPROX and CLOCK_UPTIME_RAW_APROX on ma...
Ronald Oussoren
2024-01-08
1
-6/+10
*
gh-113755: Fully adapt gcmodule.c to Argument Clinic (#113756)
Erlend E. Aasland
2024-01-08
2
-27/+174
*
gh-113787: Fix refleaks in test_capi (gh-113816)
neonene
2024-01-08
2
-3/+2
*
gh-110721: Remove unused code from suggestions.c after moving PyErr_Display t...
Pablo Galindo Salgado
2024-01-08
3
-0/+105
*
gh-80109: Fix io.TextIOWrapper dropping the internal buffer during write() (G...
Zackery Spytz
2024-01-08
1
-4/+8
*
gh-89532: Remove LibreSSL workarounds (#28728)
Rami
2024-01-06
2
-6326/+3
*
gh-113750: Fix object resurrection in free-threaded builds (gh-113751)
Sam Gross
2024-01-06
1
-3/+1
[next]