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
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-98966: Handle stdout=subprocess.STDOUT (GH-98967)
Paulo Neves
2024-03-26
3
-0/+12
*
gh-66543: Fix mimetype.guess_type() (GH-117217)
Serhiy Storchaka
2024-03-26
4
-9/+45
*
GH-117108: Set the "old space bit" to "visited" for all young objects (#117213)
Mark Shannon
2024-03-26
5
-43/+56
*
GH-116422: Tier2 hot/cold splitting (GH-116813)
Mark Shannon
2024-03-26
21
-1001/+1660
*
bpo-24612: Improve syntax error for 'not' after an operator (GH-28170)
Pablo Galindo Salgado
2024-03-26
4
-594/+1022
*
gh-83845: Add tests for operator module (#115883)
Hugo van Kemenade
2024-03-26
1
-0/+47
*
gh-115627: Fix PySSL_SetError handling SSL_ERROR_SYSCALL (GH-115628)
yevgeny hong
2024-03-26
3
-43/+35
*
gh-83434: Disable XML in regrtest when -R option is used (#117232)
Victor Stinner
2024-03-26
3
-1/+34
*
gh-117187: Fix XML tests for vanilla Expat <2.6.0 (GH-117203)
Sebastian Pipping
2024-03-26
3
-9/+9
*
gh-99108: Refresh HACL*; update modules accordingly; fix namespacing (GH-117237)
Jonathan Protzenko
2024-03-26
23
-1845/+1605
*
gh-109870: Dataclasses: batch up exec calls (gh-110851)
Eric V. Smith
2024-03-25
2
-144/+185
*
Sync main docs and docstring for median_grouped(). (gh-117214)
Raymond Hettinger
2024-03-25
1
-38/+39
*
gh-117114: Make os.path.isdevdrive available on all platforms (GH-117115)
Nice Zombies
2024-03-25
5
-57/+39
*
Add information about negative indexes to sequence datamodel doc (#110903)
Adorilson Bezerra
2024-03-25
1
-3/+6
*
A few minor tweaks to get stats working and compiling cleanly. (#117219)
Mark Shannon
2024-03-25
3
-8/+5
*
gh-116936: Add PyType_GetModuleByDef() to the limited C API (#116937)
Victor Stinner
2024-03-25
8
-1/+14
*
gh-87193: Support bytes objects with refcount > 1 in _PyBytes_Resize() (GH-11...
Serhiy Storchaka
2024-03-25
11
-30/+123
*
gh-112948: Make pdb completion similar to repl completion (#112950)
Tian Gao
2024-03-25
3
-15/+80
*
Minor markup and grammar fixes in the statistics docs (gh-117216)
Raymond Hettinger
2024-03-25
1
-3/+3
*
gh-117176: Fix compiler warning in Python/optimizer_bytecodes.c (GH-117199)
Kirill Podoprigora
2024-03-24
2
-2/+2
*
gh-112571: Move fish venv activation script into the common folder (GH-117169)
Totally a booplicate
2024-03-24
1
-0/+0
*
gh-117194: Properly format 'base64' header in What's New (#117198)
Terry Jan Reedy
2024-03-24
1
-1/+1
*
GH-115986 Docs: promote pprint.pp usage as a default (#116614)
Kerim Kabirov
2024-03-24
1
-15/+18
*
gh-101760: Improve the imaplib.IMAP4 example (#101764)
LilKS
2024-03-24
1
-1/+1
*
Add cumulative option for the new statistics.kde() function. (#117033)
Raymond Hettinger
2024-03-24
3
-21/+75
*
gh-112383: teach dis how to interpret ENTER_EXECUTOR (#117171)
Irit Katriel
2024-03-23
7
-50/+120
*
gh-117180: Complete call sequence when trace stack overflow (GH-117184)
Ken Jin
2024-03-23
2
-0/+27
*
gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (#32011)
Erik Soma
2024-03-23
5
-12/+174
*
gh-117008: Fix functools test_recursive_pickle() (#117009)
Victor Stinner
2024-03-23
2
-2/+6
*
GH-106747: Document another difference between `glob` and `pathlib`. (#116518)
Barney Gale
2024-03-22
1
-0/+4
*
GH-117108: Change the size of the GC increment to about 1% of the total heap ...
Mark Shannon
2024-03-22
6
-28/+47
*
gh-113024: C API: Add PyObject_GenericHash() function (GH-113025)
Serhiy Storchaka
2024-03-22
14
-13/+51
*
gh-117084: Fix ZIP file extraction for directory entry names with backslashes...
Serhiy Storchaka
2024-03-22
4
-1/+27
*
gh-117134: Microoptimize glob() for include_hidden=True (GH-117135)
Serhiy Storchaka
2024-03-22
1
-2/+2
*
[docs] Fix typo in docstring and add example to logging cookbook. (GH-117157)
Vinay Sajip
2024-03-22
2
-15/+127
*
GH-113171: Fix "private" (non-global) IP address ranges (GH-113179)
Jakub Stasiak
2024-03-22
5
-7/+82
*
Fix get_packagefamilyname helper function on Windows 32-bit (GH-117153)
Steve Dower
2024-03-22
1
-1/+1
*
gh-117068: Remove useless code in bytesio.c:resize_buffer() (GH-117069)
NGRsoftlab
2024-03-22
1
-3/+0
*
gh-117127: glob tests: Reopen dir_fd to pick up directory changes (GH-117128)
Petr Viktorin
2024-03-22
1
-0/+9
*
GH-116939: Rewrite binarysort() (#116940)
Tim Peters
2024-03-22
2
-66/+141
*
gh-108716:: Remove _PyStaticCode_Init/Fini (#117141)
Guido van Rossum
2024-03-22
1
-46/+0
*
gh-105716: Fix _PyInterpreterState_IsRunningMain() For Embedders (gh-117140)
Eric Snow
2024-03-22
3
-22/+39
*
gh-116745: Remove all internal usage of @LIBPYTHON@ (#116746)
Thomas A Caswell
2024-03-21
2
-2/+2
*
gh-71052: Add Android build script and instructions (#116426)
Malcolm Smith
2024-03-21
7
-19/+403
*
gh-117061: Fix test_posix.test_sched_setaffinity() on RHEL9 (#117126)
Victor Stinner
2024-03-21
1
-1/+10
*
docs: fix over-linking in dataclasses.rst (#117005)
Ned Batchelder
2024-03-21
1
-78/+80
*
gh-117045: Add code object to function version cache (#117028)
Guido van Rossum
2024-03-21
8
-96/+209
*
gh-116333: Relax error string text expectations in SSL-related tests (GH-116334)
Will Childs-Klein
2024-03-21
4
-38/+96
*
gh-116522: Refactor `_PyThreadState_DeleteExcept` (#117131)
Sam Gross
2024-03-21
5
-23/+41
*
gh-116996: Add pystats about _Py_uop_analyse_and_optimize (GH-116997)
Michael Droettboom
2024-03-21
5
-3/+56
[next]