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
/
Lib
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
bpo-43218: Prevent venv creation when the target directory contains a PATH se...
Dustin Rodrigues
2022-04-13
2
-0/+11
*
bpo-43224: Forbid TypeVar substitution with Unpack (GH-32031)
Serhiy Storchaka
2022-04-13
2
-0/+16
*
gh-91243: Add typing.Required and NotRequired (PEP 655) (GH-32419)
Jelle Zijlstra
2022-04-12
3
-6/+239
*
bpo-47152: Automatically regenerate sre_constants.h (GH-91439)
Serhiy Storchaka
2022-04-12
1
-43/+0
*
gh-90839: Forward gzip.compress() compresslevel to zlib (gh-31215)
Ilya Leoshkevich
2022-04-12
1
-1/+2
*
gh-91276: make space for longer opcodes in dis output (GH-91444)
Irit Katriel
2022-04-12
2
-228/+216
*
gh-88513: clarify shutil.copytree's dirs_exist_ok arg (GH-91434)
Jack DeVries
2022-04-12
1
-3/+5
*
gh-79097: Add support for aggregate window functions in sqlite3 (GH-20903)
Erlend Egeberg Aasland
2022-04-12
2
-5/+165
*
gh-91217: deprecate crypt (GH-91459)
Brett Cannon
2022-04-12
2
-2/+6
*
gh-47061: Deprecate `chunk` (GH-91419)
Brett Cannon
2022-04-11
3
-4/+122
*
gh-91117: Ensure integer mod and pow operations use cached small ints (GH-31843)
Dennis Sweeney
2022-04-11
1
-0/+42
*
bpo-44807: Allow Protocol classes to define __init__ (GH-31628)
Adrian Garcia Badaracco
2022-04-11
2
-1/+28
*
bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)
John Belmonte
2022-04-11
6
-27/+171
*
bpo-47120: make POP_JUMP_IF_TRUE/FALSE/NONE/NOT_NONE relative (GH-32400)
Irit Katriel
2022-04-11
5
-21/+39
*
bpo-47000: Add `locale.getencoding()` (GH-32068)
Inada Naoki
2022-04-09
2
-15/+15
*
bpo-47061: deprecate cgi and cgitb (GH-32410)
Brett Cannon
2022-04-09
6
-7/+25
*
Add feature macro PY_HAVE_THREAD_NATIVE_ID to the stable ABI definition (GH-3...
Petr Viktorin
2022-04-08
1
-1/+0
*
Add new PyFrame_GetLasti C-API function (GH-32413)
Mark Shannon
2022-04-08
1
-0/+1
*
Deprecate audioop (GH-32392)
Brett Cannon
2022-04-07
9
-26/+59
*
bpo-40280: Detect missing threading on WASM platforms (GH-32352)
Christian Heimes
2022-04-07
30
-7/+100
*
bpo-47239: Fixes py.exe output when run in a virtual environment. (GH-32364)
Steve Dower
2022-04-06
1
-8/+74
*
bpo-46576: Speed up test_peg_generator by using a static library for shared s...
Jeremy Kloth
2022-04-06
1
-2/+22
*
bpo-47061: use `warnings._deprecated()` with asynchat, asyncore, and smtpd (G...
Brett Cannon
2022-04-06
3
-18/+14
*
Minor code nit: Move an unrelated statement out of a try clause in Sequence.i...
Géry Ogam
2022-04-06
1
-2/+2
*
bpo-26579: Add object.__getstate__(). (GH-2821)
Serhiy Storchaka
2022-04-06
14
-67/+159
*
bpo-47227: Suppress expression chaining for more RE parsing errors (GH-32333)
Serhiy Storchaka
2022-04-06
1
-5/+5
*
bpo-47211: Remove function re.template() and flag re.TEMPLATE (GH-32300)
Serhiy Storchaka
2022-04-06
5
-16/+5
*
Fix whitespace/indentation issues in test_sys (GH-32369)
Ken Jin
2022-04-06
1
-2/+2
*
bpo-40421: test_capi uses assertEqual(), not assertEquals() (GH-32361)
Victor Stinner
2022-04-06
1
-1/+1
*
bpo-47103: Copy pgort140.dll into output directory when building PGInstrument...
Steve Dower
2022-04-06
1
-14/+5
*
Python 3.11.0a7
v3.11.0a7
Pablo Galindo
2022-04-05
1
-135/+135
*
bpo-47061: deprecate the `aifc` module (GH-32134)
Brett Cannon
2022-04-05
8
-6/+86
*
bpo-4833: Add ZipFile.mkdir (GH-32160)
Sam Ezeh
2022-04-05
2
-17/+89
*
bpo-46607: Add DeprecationWarning for LegacyInterpolation, deprecated in docs...
Hugo van Kemenade
2022-04-05
2
-0/+17
*
bpo-47088: Add typing.LiteralString (PEP 675) (GH-32064)
Jelle Zijlstra
2022-04-05
2
-2/+85
*
bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728)
Erlend Egeberg Aasland
2022-04-05
1
-0/+55
*
bpo-47212: Improve error messages for un-parenthesized generator expressions ...
Matthieu Dartiailh
2022-04-05
2
-1/+17
*
bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)
Irit Katriel
2022-04-05
3
-3/+5
*
bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309)
Irit Katriel
2022-04-05
2
-2/+3
*
bpo-46890: Fix setting of sys._base_executable with framework builds on macOS...
Ronald Oussoren
2022-04-05
1
-0/+177
*
bpo-43224: typing: Add tests for pickling and copying of unpacked native tupl...
Matthew Rahtz
2022-04-05
1
-17/+56
*
bpo-46998: Allow subclassing Any at runtime (GH-31841)
Shantanu
2022-04-05
4
-31/+38
*
bpo-46484:Add test for Calendar.iterweekdays (GH-30825)
180909
2022-04-04
1
-0/+8
*
bpo-47208: Allow vendors to override CTYPES_MAX_ARGCOUNT (GH-32297)
Christian Heimes
2022-04-04
1
-2/+1
*
bpo-47152: Remove unused import in re (GH-32298)
Serhiy Storchaka
2022-04-04
1
-4/+0
*
bpo-47152: Move sources of the _sre module into a subdirectory (GH-32290)
Serhiy Storchaka
2022-04-04
1
-1/+1
*
bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)
Inada Naoki
2022-04-04
3
-6/+21
*
bpo-46126: Restore 'descriptions' when running tests internally. (GH-32128)
Jason R. Coombs
2022-04-03
1
-5/+1
*
bpo-23689: re module, fix memory leak when a match is terminated by a signal ...
Ma Lin
2022-04-03
3
-25/+66
*
bpo-47205: Skip error check of sched_get/setaffinity on FreeBSD (GH-32285)
Christian Heimes
2022-04-03
1
-2/+6
[prev]
[next]