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
...
*
bpo-47000: Add `locale.getencoding()` (GH-32068)
Inada Naoki
2022-04-09
3
-13/+19
*
Add new PyFrame_GetLasti C-API function (GH-32413)
Mark Shannon
2022-04-08
1
-0/+16
*
bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)
Brandt Bucher
2022-04-07
1
-1/+1
*
Deprecate audioop (GH-32392)
Brett Cannon
2022-04-07
1
-0/+7
*
Remove micro-optimization that no longer shows a benefit. (GH-32397)
Raymond Hettinger
2022-04-07
1
-21/+1
*
Change parameter name from *x* for reals to *n* for integers. (GH-32377)
Raymond Hettinger
2022-04-06
2
-6/+6
*
bpo-26579: Add object.__getstate__(). (GH-2821)
Serhiy Storchaka
2022-04-06
2
-35/+10
*
bpo-47211: Remove function re.template() and flag re.TEMPLATE (GH-32300)
Serhiy Storchaka
2022-04-06
2
-2/+0
*
bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728)
Erlend Egeberg Aasland
2022-04-05
2
-1/+280
*
bpo-46890: Fix setting of sys._base_executable with framework builds on macOS...
Ronald Oussoren
2022-04-05
2
-2/+19
*
bpo-47208: Allow vendors to override CTYPES_MAX_ARGCOUNT (GH-32297)
Christian Heimes
2022-04-04
2
-1/+4
*
bpo-47152: Move sources of the _sre module into a subdirectory (GH-32290)
Serhiy Storchaka
2022-04-04
6
-5/+5
*
bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)
Inada Naoki
2022-04-04
2
-7/+16
*
bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads (...
Hood Chatham
2022-04-03
1
-0/+2
*
bpo-23689: re module, fix memory leak when a match is terminated by a signal ...
Ma Lin
2022-04-03
5
-46/+83
*
bpo-47196: Fix one more PyInit function signature (GH-32280)
Hood Chatham
2022-04-03
1
-1/+1
*
bpo-47152: Convert the re module into a package (GH-32177)
Serhiy Storchaka
2022-04-02
1
-2/+2
*
bpo-47196: Fix function pointer cast in test_imp (GH-32244)
Hood Chatham
2022-04-02
1
-24/+24
*
bpo-46023: makesetup: skip all duplicate modules (GH-32234)
Christian Heimes
2022-04-01
1
-6/+12
*
bpo-47167: Allow overriding a future compliance check in asyncio.Task (GH-32197)
Andrew Svetlov
2022-04-01
2
-8/+102
*
bpo-47151: Fallback to fork when vfork fails in subprocess. (GH-32186)
Gregory P. Smith
2022-03-31
1
-0/+6
*
bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)
Mark Shannon
2022-03-31
1
-0/+44
*
bpo-45847: Port _tkinter to PY_STDLIB_MOD (GH-31698)
Erlend Egeberg Aasland
2022-03-31
1
-3/+2
*
bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)
Victor Stinner
2022-03-31
1
-1/+1
*
asyncio.Task: rename internal nested variable to don't hide another declarati...
Andrew Svetlov
2022-03-29
1
-13/+13
*
bpo-35859: Fix a few long-standing bugs in re engine (GH-12427)
Ma Lin
2022-03-29
2
-19/+76
*
bpo-47070: Add _PyBytes_Repeat() (GH-31999)
Pieter Eendebak
2022-03-28
1
-31/+18
*
bpo-44493: Add missing terminated NUL in sockaddr_un's length (GH-26866)
ty
2022-03-27
1
-1/+6
*
bpo-47098: Replace Keccak Code Package with tiny_sha3 (GH-32060)
Christian Heimes
2022-03-26
22
-5632/+335
*
bpo-47095: Use libb2 to provide blake2 implementation (GH-32059)
Christian Heimes
2022-03-26
12
-17786/+27
*
bpo-47101: list only activated algorithms in hashlib.algorithms_available (GH...
Christian Heimes
2022-03-23
1
-1/+12
*
bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...
Andrew Svetlov
2022-03-23
1
-0/+20
*
bpo-42885: Optimize search for regular expressions starting with "\A" or "^" ...
Serhiy Storchaka
2022-03-22
1
-0/+7
*
bpo-47045: Remove `f_state` field (GH-31963)
Mark Shannon
2022-03-22
1
-4/+1
*
bpo-433030: Add support of atomic grouping in regular expressions (GH-31982)
Serhiy Storchaka
2022-03-21
3
-16/+237
*
bpo-23691: Protect the re.finditer() iterator from re-entering (GH-32012)
Serhiy Storchaka
2022-03-21
2
-4/+41
*
bpo-38256: Fix binascii.crc32() when inputs are 4+GiB (GH-32000)
Gregory P. Smith
2022-03-20
3
-31/+63
*
bpo-47040: improve document of checksum functions (gh-31955)
Ma Lin
2022-03-19
1
-5/+3
*
bpo-47057: Use FASTCALL convention for FutureIter.throw() (GH-31973)
Andrew Svetlov
2022-03-19
1
-8/+13
*
bpo-46968: Check for 'sys/auxv.h' in the configure script (GH-31961)
Pablo Galindo Salgado
2022-03-18
1
-3/+3
*
bpo-46030: socket module add couple of FreeBSD constants. (GH-30018)
David CARLIER
2022-03-17
1
-0/+9
*
bpo-46996: Remove support of Tcl/Tk < 8.5.12 (GH-31839)
Serhiy Storchaka
2022-03-17
1
-24/+4
*
bpo-44859: Raise more accurate exceptions in `sqlite3` (GH-27695)
Erlend Egeberg Aasland
2022-03-17
2
-5/+7
*
bpo-47039: Normalize repr() of asyncio future and task objects (GH-31950)
Andrew Svetlov
2022-03-17
2
-91/+22
*
bpo-40280: Detect presence of time.tzset and thread_time clock (GH-31898)
Christian Heimes
2022-03-15
1
-1/+3
*
bpo-46920: Remove code that has explainers why it was disabled (GH-31813)
Oleg Iarygin
2022-03-14
2
-34/+0
*
bpo-46920: Remove code that has no explainer why it was disabled (GH-31814)
Oleg Iarygin
2022-03-14
1
-39/+2
*
bpo-40280: select: Use NULL for empty fdset (GH-31865)
Christian Heimes
2022-03-14
1
-1/+6
*
bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...
Andrew Svetlov
2022-03-14
2
-12/+25
*
bpo-47003: Cleanup _overlapped module (GH-31848)
Andrew Svetlov
2022-03-13
2
-81/+99
[prev]
[next]