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-89812: Churn `pathlib.Path` methods (GH-104243)
Barney Gale
2023-05-07
1
-303/+303
*
gh-104240: make _PyCompile_CodeGen support different compilation modes (#104241)
Irit Katriel
2023-05-07
9
-15/+43
*
gh-103193: cache calls to `inspect._shadowed_dict` in `inspect.getattr_static...
Alex Waygood
2023-05-07
3
-5/+32
*
GH-100479: Fix pathlib test failure on WASI (#104215)
Barney Gale
2023-05-07
1
-1/+2
*
gh-101819: Port _io.PyBytesIOBuffer_Type to heap type (#104264)
Erlend E. Aasland
2023-05-07
4
-51/+29
*
gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit builds...
Erlend E. Aasland
2023-05-07
4
-9/+36
*
gh-101819: Adapt _io.PyWindowsConsoleIO_Type to heap type (#104197)
Erlend E. Aasland
2023-05-07
4
-70/+51
*
gh-101819: Port _io.PyIncrementalNewlineDecoder_Type to heap type (#104249)
Erlend E. Aasland
2023-05-07
4
-48/+42
*
Re-enable commented-out test in test_generators.py (#104130)
ymki4360
2023-05-07
1
-5/+4
*
gh-104018: remove unused format "z" handling in string formatfloat() (#104107)
John Belmonte
2023-05-07
4
-8/+0
*
gh-97696: Use `PyObject_CallMethodNoArgs` and inline is_loop_running check in...
Itamar Ostricher
2023-05-07
1
-18/+5
*
gh-103886: Improve `builtins.__doc__` (#104179)
Tomas R
2023-05-07
1
-2/+9
*
gh-104254: Document the optional keyword-only "context" argument to Task cons...
Itamar Ostricher
2023-05-07
1
-4/+8
*
gh-101640: Make argparse _print_message catch any write error (#101802)
Oleg Iarygin
2023-05-06
3
-3/+37
*
gh-99113: Make Sure the GIL is Acquired at the Right Places (gh-104208)
Eric Snow
2023-05-06
4
-40/+113
*
gh-99113: Add a check for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104206)
Eric Snow
2023-05-06
5
-2/+99
*
gh-101819: Remove unused 'locale_module' from _io state (#104246)
Erlend E. Aasland
2023-05-06
2
-5/+0
*
GH-103548: Improve performance of `pathlib.Path.[is_]absolute()` (GH-103549)
Barney Gale
2023-05-06
2
-1/+14
*
gh-90953: Emit deprecation warnings for `ast` features deprecated in Python 3...
Alex Waygood
2023-05-06
4
-135/+472
*
gh-104144: Optimize gather to finish eagerly when all futures complete eagerl...
Itamar Ostricher
2023-05-06
2
-1/+15
*
Rewrite the turtledemo makeGraphFrame method (#104224)
Terry Jan Reedy
2023-05-06
1
-10/+14
*
gh-65772: Clean-up turtle module (#104218)
Terry Jan Reedy
2023-05-06
2
-40/+22
*
gh-104233: Fix "unused variable" warning in `ceval_gil.c` (#104234)
Nikita Sobolev
2023-05-06
1
-0/+2
*
GH-97950: Use new-style index directive ('builtin') (#104164)
Adam Turner
2023-05-06
23
-77/+77
*
gh-102215: importlib documentation cleanups
Sam Morris
2023-05-06
2
-10/+10
*
gh-101819: Prepare to modernize the _io extension (#104178)
Victor Stinner
2023-05-05
9
-37/+92
*
gh-97696: Remove redundant #include (#104216)
Jacob Bower
2023-05-05
1
-1/+0
*
gh-104144: Skip scheduling a done callback if a TaskGroup task completes eage...
Itamar Ostricher
2023-05-05
2
-2/+9
*
gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)
Eric Snow
2023-05-05
11
-19/+80
*
gh-104146: Remove unused var 'parser_body_declarations' from clinic.py (#104214)
Erlend E. Aasland
2023-05-05
1
-3/+1
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
99
-4/+144
*
gh-104108: Add the Py_mod_multiple_interpreters Module Def Slot (gh-104148)
Eric Snow
2023-05-05
5
-22/+122
*
gh-99113: Share the GIL via PyInterpreterState.ceval.gil (gh-104203)
Eric Snow
2023-05-05
5
-40/+65
*
GH-100479: Add `pathlib.PurePath.with_segments()` (GH-103975)
Barney Gale
2023-05-05
5
-47/+108
*
gh-69152: Add _proxy_response_headers attribute to HTTPConnection (#26152)
Alexey Namyotkin
2023-05-05
3
-11/+24
*
gh-103533: Use PEP 669 APIs for cprofile (GH-103534)
Tian Gao
2023-05-05
4
-73/+200
*
GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...
Mark Shannon
2023-05-05
9
-8/+48
*
gh-64595: Argument Clinic: Touch source file if any output file changed (#104...
Erlend E. Aasland
2023-05-05
2
-9/+17
*
gh-64631: Test exception messages in cloned Argument Clinic funcs (#104167)
Erlend E. Aasland
2023-05-05
3
-1/+353
*
gh-68395: Avoid naming conflicts by mangling variable names in Argument Clini...
Erlend E. Aasland
2023-05-05
2
-1/+181
*
gh-64658: Expand Argument Clinic return converter docs (#104175)
Erlend E. Aasland
2023-05-05
1
-13/+28
*
GH-103092: port `_asyncio` freelist to module state (#104196)
Kumar Aditya
2023-05-05
1
-27/+25
*
gh-104051: fix crash in test_xxtestfuzz with -We (#104052)
Irit Katriel
2023-05-05
1
-3/+10
*
gh-104190: fix ubsan crash (#104191)
sunmy2019
2023-05-05
1
-1/+1
*
gh-104106: Add gcc fallback of mkfifoat/mknodat for macOS (gh-104129)
Dong-hee Na
2023-05-05
2
-4/+13
*
GH-104142: Fix _Py_RefcntAdd to respect immortality (GH-104143)
Brandt Bucher
2023-05-05
3
-18/+30
*
gh-104112: link from cached_property docs to method-caching FAQ (#104113)
Carl Meyer
2023-05-04
1
-12/+4
*
gh-68968: Correcting message display issue with assertEqual (#103937)
Michael Blahay
2023-05-04
4
-11/+87
*
GH-103899: Provide a hint when accidentally calling a module (GH-103900)
Brandt Bucher
2023-05-04
3
-6/+73
*
gh-103963: fix 'make regen-opcode' in out-of-tree builds (#104177)
Carl Meyer
2023-05-04
3
-3/+5
[prev]
[next]