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-96471: Correct documentation for asyncio queue shutdown (#117621)
Laurie O
2024-04-08
3
-6/+9
*
gh-117293: Fix race condition in run_workers.py (#117298)
Sam Gross
2024-04-08
1
-16/+21
*
gh-117552: Add timeout in HTTPHandlerTest (#117553)
Sam Gross
2024-04-08
1
-1/+2
*
gh-116303: Skip tests if C recursion limit is unavailable (GH-117368)
Erlend E. Aasland
2024-04-08
14
-35/+32
*
gh-106023: Update What's New in 3.13: _PyObject_FastCall() (#117633)
Victor Stinner
2024-04-08
1
-5/+0
*
gh-111726: Explicitly close database connections in sqlite3 doctests (#111730)
Nikita Sobolev
2024-04-08
1
-0/+27
*
gh-111726: Remove some doctests from sqlite3 docs (#117623)
Erlend E. Aasland
2024-04-08
1
-36/+7
*
gh-113317: Remove unused INVALID constant in Argument Clinic (#117624)
Victor Stinner
2024-04-08
2
-5/+0
*
gh-111726: Cleanup test files after running sqlite3 doctest (#117604)
Hugo van Kemenade
2024-04-08
1
-0/+8
*
gh-117594: Require cpu resource to test_search_anchor_at_beginning (gh-117595)
Donghee Na
2024-04-07
1
-1/+4
*
Fix reference in code.rst (#117615)
Anita Hammer
2024-04-07
1
-1/+1
*
Cases generator: Remove type_prop and passthrough (#117614)
Ken Jin
2024-04-07
3
-33/+22
*
gh-117584: Raise TypeError for non-paths in posixpath.relpath() (GH-117585)
Nice Zombies
2024-04-07
3
-1/+3
*
GH-117512: Allow 64-bit JIT operands on 32-bit platforms (GH-117527)
Brandt Bucher
2024-04-06
4
-31/+47
*
gh-96471: Add asyncio queue shutdown (#104228)
Laurie O
2024-04-06
5
-3/+301
*
gh-116622: Test updates for Android (#117299)
Malcolm Smith
2024-04-05
8
-14/+21
*
GH-77609: Add recurse_symlinks argument to `pathlib.Path.glob()` (#117311)
Barney Gale
2024-04-05
5
-95/+34
*
gh-116608: Ignore UTF-16 BOM in importlib.resources._functional tests (GH-117...
Petr Viktorin
2024-04-05
1
-4/+10
*
gh-111140: PyLong_From/AsNativeBytes: Take *flags* rather than just *endianne...
Steve Dower
2024-04-05
6
-88/+319
*
GH-114847: Speed up `posixpath.realpath()` (#114848)
Barney Gale
2024-04-05
3
-34/+64
*
gh-116608: importlib.resources: Un-deprecate functional API & add subdirector...
Petr Viktorin
2024-04-05
6
-15/+533
*
gh-117457: Regen executor cases post PR #117477 (#117559)
Erlend E. Aasland
2024-04-05
1
-2/+8
*
gh-116303: Don't build xxlimited and xxlimited_35 if --disable-test-modules i...
Erlend E. Aasland
2024-04-05
2
-4/+4
*
GH-117457: Correct pystats uop "miss" counts (GH-117477)
Michael Droettboom
2024-04-04
4
-144/+548
*
gh-117549: Match declaration order for _Py_BackoffCounter initializer (#117551)
Michael Droettboom
2024-04-04
1
-1/+1
*
gh-117474: Skip GIL test in free-threaded build (#117475)
Sam Gross
2024-04-04
1
-0/+1
*
gh-112075: Make _PyDict_LoadGlobal thread safe (#117529)
Dino Viehland
2024-04-04
6
-29/+23
*
gh-117478: Add `@support.requires_gil_enabled` decorator (#117479)
Sam Gross
2024-04-04
7
-11/+23
*
gh-117435: Make `SemLock` thread-safe in free-threaded build (#117436)
Sam Gross
2024-04-04
2
-9/+37
*
gh-117494: extract the Instruction Sequence data structure into a separate fi...
Irit Katriel
2024-04-04
13
-224/+283
*
gh-116968: Reimplement Tier 2 counters (#117144)
Guido van Rossum
2024-04-04
19
-235/+313
*
gh-109802: Add coverage test for complex_abs() (GH-117449)
Sergey B Kirpichev
2024-04-04
1
-0/+3
*
[doc] Update logging documentation to improve grammar and elucidate an exampl...
Vinay Sajip
2024-04-04
2
-11/+72
*
gh-117521: Improve typing.TypeGuard docstring (#117522)
Jelle Zijlstra
2024-04-04
1
-11/+14
*
gh-117467: Add preserving of mailbox owner on flush (GH-117510)
Tony Mountifield
2024-04-04
3
-3/+51
*
gh-113317: Finish splitting Argument Clinic into sub-files (#117513)
Victor Stinner
2024-04-04
10
-2194/+2238
*
gh-117459: Keep the traceback in _convert_future_exc (#117460)
rsp4jack
2024-04-04
3
-4/+22
*
gh-117205: Increase chunksize when compiling pyc in parallel (#117206)
Shantanu
2024-04-03
2
-1/+3
*
gh-117267: Ensure DirEntry.stat().st_ctime still contains creation time durin...
Steve Dower
2024-04-03
2
-0/+9
*
gh-114329: Fix PyList_GetItemRef() limited C API definition (#117520)
Victor Stinner
2024-04-03
6
-4/+12
*
gh-113317: Argument Clinic: Add libclinic.clanguage (#117455)
Victor Stinner
2024-04-03
5
-1602/+1635
*
gh-116168: Remove extra `_CHECK_STACK_SPACE` uops (#117242)
Peter Lazorchak
2024-04-03
8
-126/+494
*
gh-76785: Raise InterpreterError, Not RuntimeError (gh-117489)
Eric Snow
2024-04-03
8
-23/+40
*
gh-117431: Adapt str.find and friends to Argument Clinic (#117468)
Erlend E. Aasland
2024-04-03
4
-217/+439
*
GH-114847: Raise FileNotFoundError when getcwd() returns '(unreachable)' (#11...
Barney Gale
2024-04-03
2
-0/+16
*
gh-117215 Make the fromskey() signature match dict.fromkeys(). (gh-117493)
Raymond Hettinger
2024-04-03
1
-3/+3
*
gh-59215: unittest: restore _top_level_dir at end of discovery (GH-15242)
Zackery Spytz
2024-04-03
4
-6/+40
*
gh-116303: Skip test module dependent tests if test modules are unavailable (...
Erlend E. Aasland
2024-04-03
57
-124/+256
*
gh-117381: Improve error messages for ntpath.commonpath() (GH-117382)
Nice Zombies
2024-04-03
3
-53/+54
*
gh-117483: Accept "Broken pipe" as valid error message in `test_wrong_cert_tl...
Sam Gross
2024-04-03
1
-1/+3
[next]