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-91052: Add C API for watching dictionaries (GH-31787)
Carl Meyer
2022-10-07
10
-17/+487
*
bpo-38693: Use f-strings instead of str.format() within importlib (#17058)
Gregory P. Smith
2022-10-06
3
-26/+1807
*
GH-97002: Prevent `_PyInterpreterFrame`s from backing more than one `PyFrameO...
Brandt Bucher
2022-10-06
3
-6/+91
*
gh-97973: Return all necessary information from the tokenizer (GH-97984)
Lysandros Nikolaou
2022-10-06
6
-146/+159
*
fixes gh-96078: os.sched_yield release the GIL while calling sched_yield(2). ...
Dong-hee Na
2022-10-06
2
-1/+8
*
gh-65961: Do not rely solely on `__cached__` (GH-97990)
Brett Cannon
2022-10-06
11
-35/+130
*
gh-97850: Remove the open issues section from the import reference (#97935)
Brett Cannon
2022-10-06
1
-19/+0
*
Docs: pin sphinx-lint (GH-97992)
Hugo van Kemenade
2022-10-06
1
-1/+1
*
gh-94590: add signatures to operator itemgetter, attrgetter, methodcaller (#9...
Erik Welch
2022-10-06
1
-6/+3
*
Add Pynche's move to the What's new in 3.11 (#97974)
Barry Warsaw
2022-10-06
1
-0/+4
*
gh-97781: Apply changes from importlib_metadata 5. (GH-97785)
Jason R. Coombs
2022-10-06
5
-302/+88
*
gh-86482: Document assignment expression need for ()s (#23291)
Terry Jan Reedy
2022-10-06
2
-0/+8
*
gh-97943: PyFunction_GetAnnotations should return a borrowed reference. (#97949)
larryhastings
2022-10-06
2
-2/+7
*
gh-94808: Coverage: Test that maximum indentation level is handled (#95926)
Michael Droettboom
2022-10-06
1
-1/+21
*
GH-88050: fix race in closing subprocess pipe in asyncio (#97951)
Kumar Aditya
2022-10-06
1
-1/+3
*
gh-93738: Disallow pre-v3 syntax in the C domain (#97962)
Adam Turner
2022-10-06
7
-33/+11
*
gh-95986: Fix the example using match keyword (#95989)
180909
2022-10-06
1
-0/+1
*
gh-97897: Prevent os.mkfifo and os.mknod segfaults with macOS 13 SDK (GH-97944)
Ned Deily
2022-10-06
3
-8/+80
*
gh-94808: Cover `PyUnicode_Count` in CAPI (#96929)
Nikita Sobolev
2022-10-06
2
-0/+59
*
gh-94808: Cover `PyObject_PyBytes` case with custom `__bytes__` method (#96610)
Nikita Sobolev
2022-10-06
1
-0/+16
*
gh-95691: Doc BufferedWriter and BufferedReader (#95703)
180909
2022-10-05
1
-1/+1
*
GH-88968: Add notes about socket ownership transfers (#97936)
Guido van Rossum
2022-10-05
2
-0/+48
*
gh-96865: [Enum] fix Flag to use CONFORM boundary (GH-97528)
Ethan Furman
2022-10-05
3
-2/+11
*
gh-65961: Raise `DeprecationWarning` when `__package__` differs from `__spec_...
Brett Cannon
2022-10-05
9
-102/+45
*
docs(typing): add "see PEP 675" to LiteralString (#97926)
Simon Legner
2022-10-05
1
-0/+2
*
gh-97850: Remove all known instances of module_repr() (#97876)
Barry Warsaw
2022-10-05
6
-35/+7
*
I changed my surname early this year (#96671)
Tshepang Mbambo
2022-10-05
2
-2/+2
*
gh-93738: Documentation C syntax (:c:type:<C type> -> :c:expr:<C type>) (#97768)
Adam Turner
2022-10-05
34
-241/+241
*
gh-91539: improve performance of get_proxies_environment (#91566)
Pieter Eendebak
2022-10-05
2
-10/+17
*
build(deps): bump actions/stale from 5 to 6 (#97701)
dependabot[bot]
2022-10-05
1
-1/+1
*
GH-95172 Make the same version `versionadded` oneline (#95172)
180909
2022-10-05
1
-2/+1
*
gh-88050: Fix asyncio subprocess to kill process cleanly when process is bloc...
Kumar Aditya
2022-10-05
3
-6/+33
*
gh-93738: Documentation C syntax (Function glob patterns -> literal markup) (...
Adam Turner
2022-10-05
7
-20/+20
*
gh-93357: Port test cases to IsolatedAsyncioTestCase, part 2 (#97896)
Oleg Iarygin
2022-10-05
1
-29/+15
*
gh-95196: Disable incorrect pickling of the C implemented classmethod descrip...
Serhiy Storchaka
2022-10-05
3
-1/+20
*
gh-97758: Fix a crash in getpath_joinpath() called without arguments (GH-97759)
Serhiy Storchaka
2022-10-05
1
-1/+1
*
gh-74696: Pass root_dir to custom archivers which support it (GH-94251)
Serhiy Storchaka
2022-10-05
5
-17/+77
*
gh-97661: Improve accuracy of sqlite3.Cursor.fetchone docs (#97662)
Jia Junjie
2022-10-05
1
-1/+3
*
gh-87092: bring compiler code closer to a preprocessing-opt-assembler organis...
Irit Katriel
2022-10-05
2
-40/+62
*
GH-96704: Add {Task,Handle}.get_context(), use it in call_exception_handler()...
Guido van Rossum
2022-10-05
10
-2/+129
*
gh-93738: Documentation C syntax (:c:type:`PyTypeObject*` -> :c:expr:`PyTypeO...
Adam Turner
2022-10-05
2
-2/+2
*
gh-97825: fix AttributeError when calling subprocess.check_output(input=None)...
andrei kulakov
2022-10-05
3
-1/+9
*
Add re.VERBOSE flag documentation example (#97678)
Athos Ribeiro
2022-10-05
1
-1/+2
*
gh-97654: Add auto exception chaining example to tutorial (#97703)
Shahriar Heidrich
2022-10-05
1
-5/+23
*
GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...
Mark Shannon
2022-10-05
22
-99/+165
*
GH-97779: Ensure that *all* frame objects are backed by "complete" frames (GH...
Brandt Bucher
2022-10-05
5
-4/+75
*
gh-97837: Change deprecation warning message in `unittest` (#97838)
Nikita Sobolev
2022-10-05
5
-8/+37
*
gh-95913: Copyedit/improve Implementation Changes What's New section (#97720)
C.A.M. Gerlach
2022-10-05
1
-17/+27
*
gh-93738: Documentation C syntax (:c:type: to :c:expr:, misc. cases) (#97775)
Adam Turner
2022-10-04
4
-7/+7
*
gh-93738: Documentation C syntax (:c:type:`FILE` -> :c:expr:`FILE`) (#97769)
Adam Turner
2022-10-04
3
-8/+8
[next]