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-91432: Specialize FOR_ITER (GH-91713)
Dennis Sweeney
2022-06-21
22
-282/+447
*
gh-93839: Move Lib/unttest/test/ to Lib/test/test_unittest/ (#94043)
Victor Stinner
2022-06-21
38
-137/+77
*
gh-93839: Move Lib/ctypes/test/ to Lib/test/test_ctypes/ (#94041)
Victor Stinner
2022-06-21
60
-93/+83
*
GH-93678: refactor compiler so that optimizer does not need the assembler and...
Irit Katriel
2022-06-21
2
-160/+170
*
gh-94021: Address unreachable code warning in specialize code (GH-94022)
Christian Heimes
2022-06-21
2
-1/+3
*
GH-93249: relax overly strict assertion on bounds->ar_start (GH-93961)
Irit Katriel
2022-06-20
2
-2/+33
*
gh-93937: PyOS_StdioReadline() uses PyConfig.legacy_windows_stdio (#94024)
Victor Stinner
2022-06-20
2
-1/+5
*
gh-87347: Add parenthesis around macro arguments (#93915)
Victor Stinner
2022-06-20
30
-144/+172
*
gh-90539: doc: Expand on what should not go into CFLAGS, LDFLAGS (#92754)
Matthias Köppe
2022-06-20
1
-0/+18
*
GH-93516: Speedup line number checks when tracing. (GH-93763)
Mark Shannon
2022-06-20
6
-8/+101
*
GH-93897: Store frame size in code object and de-opt if insufficient space on...
Mark Shannon
2022-06-20
8
-67/+50
*
gh-84461: Silence some compiler warnings on WASM (GH-93978)
Christian Heimes
2022-06-20
7
-8/+12
*
gh-79009: sqlite3.iterdump now correctly handles tables with autoincrement (#...
itssme
2022-06-19
4
-1/+62
*
gh-61162: Clarify sqlite3 connection context manager docs (GH-93890)
Erlend Egeberg Aasland
2022-06-19
2
-4/+19
*
gh-93925: Improve clarity of sqlite3 commit/rollback, and close docs (#93926)
Erlend Egeberg Aasland
2022-06-19
3
-19/+30
*
gh-84461: Skip test_unwritable_directory again on Emscripten (GH-94007)
Christian Heimes
2022-06-19
1
-0/+1
*
gh-84461: Fix Emscripten umask and permission issues (GH-94002)
Christian Heimes
2022-06-19
4
-0/+23
*
gh-93991: Use boolean instead of 0/1 for condition check (GH-93992)
Lei Zhang
2022-06-19
1
-4/+4
*
gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)
Victor Stinner
2022-06-19
21
-28/+61
*
gh-74953: Reformat PyThread_acquire_lock_timed() (#93947)
Victor Stinner
2022-06-19
1
-46/+62
*
gh-93761: Fix test_logging test_config_queue_handler() race condition (#93952)
Victor Stinner
2022-06-19
1
-0/+3
*
What's new in 3.10: fix link to issue (#93968)
Hugo van Kemenade
2022-06-19
1
-1/+1
*
GH-93990: fix refcounting bug in `add_subclass` in `typeobject.c` (GH-93989)
Kumar Aditya
2022-06-19
1
-1/+4
*
gh-93975: Nicer error reporting in test_venv (GH-93959)
Jason R. Coombs
2022-06-18
2
-14/+32
*
gh-91387: Fix tarfile test on WASI (GH-93984)
Christian Heimes
2022-06-18
1
-1/+1
*
gh-93955: Use unbound methods for slot `__getattr__` and `__getattribute__` (...
Ken Jin
2022-06-18
2
-1/+9
*
gh-84461: Fix pydebug Emscripten browser builds (GH-93982)
Christian Heimes
2022-06-18
2
-16/+28
*
gh-89828: Do not relay the __class__ attribute in GenericAlias (#93754)
Serhiy Storchaka
2022-06-18
7
-20/+18
*
gh-84461: Fix circulare dependency on BUILDPYTHON (GH-93977)
Christian Heimes
2022-06-18
3
-4/+14
*
Add jaraco as primary owner of importlib.metadata and importlib.resources. (#...
Jason R. Coombs
2022-06-18
1
-0/+2
*
gh-91387: Strip trailing slash from tarfile longname directories (GH-32423)
Chris Fernald
2022-06-17
3
-0/+28
*
GH-77403: Fix tests which fail when PYTHONUSERBASE is not normalized (GH-93917)
Irit Katriel
2022-06-17
2
-3/+3
*
gh-92611: Add details on replacements for cgi utility funcs (GH-92792)
CAM Gerlach
2022-06-17
1
-0/+31
*
GH-89858: Fix test_embed for out-of-tree builds (GH-93465)
Kumar Aditya
2022-06-17
2
-5/+5
*
gh-92888: Fix memoryview bad `__index__` use after free (GH-92946)
Ken Jin
2022-06-17
3
-19/+139
*
gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)
Ken Jin
2022-06-17
12
-71/+172
*
gh-77782: Deprecate global configuration variable (#93943)
Victor Stinner
2022-06-17
8
-28/+96
*
gh-74953: Fix PyThread_acquire_lock_timed() code recomputing the timeout (#93...
Victor Stinner
2022-06-17
1
-1/+1
*
gh-74953: Add _PyTime_FromMicrosecondsClamp() function (#93942)
Victor Stinner
2022-06-17
3
-16/+21
*
gh-77782: Py_FdIsInteractive() now uses PyConfig.interactive (#93916)
Victor Stinner
2022-06-17
6
-23/+29
*
gh-93852: Add test.support.create_unix_domain_name() (#93914)
Victor Stinner
2022-06-17
7
-86/+82
*
gh-89745: Avoid exact match when comparing program_name in test_embed on Wind...
neonene
2022-06-17
1
-10/+7
*
gh-91404: Revert "bpo-23689: re module, fix memory leak when a match is termi...
Gregory P. Smith
2022-06-17
9
-146/+74
*
test_logging: Fix BytesWarning in SysLogHandlerTest (GH-93920)
Victor Stinner
2022-06-17
1
-1/+1
*
GH-83658: make multiprocessing.Pool raise an exception if maxtasksperchild is...
Irit Katriel
2022-06-17
3
-0/+9
*
gh-91985: Ensure in-tree builds override platstdlib_dir in every path calcula...
neonene
2022-06-16
4
-2/+125
*
GH-91389: Fix dis position information for CACHEs (GH-93663)
Brandt Bucher
2022-06-16
3
-12/+58
*
gh-93353: regrtest supports checking tmp files with -j2 (#93909)
Victor Stinner
2022-06-16
3
-11/+20
*
gh-93847: Fix repr of enum of generic aliases (GH-93885)
Serhiy Storchaka
2022-06-16
3
-2/+13
*
Fix BINARY_SUBSCR_GETITEM stats (GH-93903)
Ken Jin
2022-06-16
2
-7/+7
[next]