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
path:
root
/
Doc
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-102211: Document `re.{Pattern,Match}`’s existence (#102212)
Philipp A
2023-08-25
1
-30/+37
*
Docs: Resolve Sphinx warnings in dis.rst (#108476)
Erlend E. Aasland
2023-08-25
3
-11/+14
*
Datamodel: Add headings to the standard type hierarchy (#108146)
Adam Turner
2023-08-25
1
-1000/+1104
*
Docs: Datamodel: Merge "Notes on using __slots__" with the parent section (#1...
Adam Turner
2023-08-25
1
-2/+1
*
gh-107932: Fix dis module for bytecode that does not have an associated sourc...
Corvin
2023-08-25
1
-2/+13
*
gh-103384: Generalize the regex pattern `BaseConfigurator.INDEX_PATTERN` to a...
Peeyush Aggarwal
2023-08-25
1
-1/+2
*
GH-108202: Document ``calendar`` exceptions (#108398)
Adam Turner
2023-08-25
1
-0/+23
*
gh-108444: Add PyLong_AsInt() public function (#108445)
Victor Stinner
2023-08-24
3
-0/+15
*
Fix a code snippet typo in asyncio docs (#108427)
A
2023-08-24
1
-1/+1
*
gh-108314: Add PyDict_ContainsString() function (#108323)
Victor Stinner
2023-08-24
2
-4/+21
*
gh-107432 Update Porting Python 2 Code to Python 3 how-to (GH-107434)
Daniele Procida
2023-08-24
1
-121/+94
*
gh-70766: Mention the object getstate caveat in 3.11 What's new. (#108379)
Gregory P. Smith
2023-08-23
1
-0/+4
*
gh-107298: Fix a few more refs in the C API docs (GH-108361)
Serhiy Storchaka
2023-08-23
5
-14/+14
*
gh-108294: Add time.sleep audit event (GH-108298)
Petr Viktorin
2023-08-23
1
-0/+5
*
gh-108267: Dataclasses docs: Fix object.__setattr__ typo (#108355)
FrozenBob
2023-08-23
1
-1/+1
*
gh-107136: Remove Plausible for docs metrics (#107856)
Hugo van Kemenade
2023-08-22
1
-3/+0
*
GH-92584: Remove distutils from the newtypes tutorial includes (#108024)
Adam Turner
2023-08-22
10
-43/+42
*
gh-105857: Document that asyncio subprocess std{in,out,err} can be file handl...
Hadházy Tamás
2023-08-22
1
-0/+1
*
Document 3.13, 3.14 and future removals (#108055)
Hugo van Kemenade
2023-08-22
1
-0/+13
*
Docs: Add link to skip to datetime's format codes (#108027)
Hugo van Kemenade
2023-08-22
1
-0/+6
*
gh-107700: [Enum] Document that `EnumType` was added in 3.11 (GH-108260)
Nikita Sobolev
2023-08-22
1
-0/+4
*
Docs: align the param spec of sqlite3.Connection methods with the implementat...
Erlend E. Aasland
2023-08-22
1
-2/+2
*
gh-107298: Fix numerous ref errors and typos in the C API docs (GH-108258)
Serhiy Storchaka
2023-08-22
21
-74/+85
*
gh-106971: Docs: Add missing issue reference (#106992)
Junya Fukuda
2023-08-22
1
-1/+1
*
gh-105539: Emit ResourceWarning if sqlite3 database is not closed explicitly ...
Erlend E. Aasland
2023-08-22
2
-0/+13
*
gh-107801: Improve the accuracy of io.TextIOWrapper.seek docs (#107933)
Erlend E. Aasland
2023-08-22
1
-0/+16
*
gh-108223: Document --disable-gil flag in configure (#108236)
Sam Gross
2023-08-21
1
-0/+9
*
gh-107298: Fix C API datetime documentation (GH-108034)
Serhiy Storchaka
2023-08-21
2
-15/+57
*
gh-108224: Fix asyncio doc inconsistency (#108230)
temach
2023-08-21
1
-1/+1
*
gh-107298: Fix references to deprecated and removed PyUnicode C API (GH-108077)
Serhiy Storchaka
2023-08-21
4
-51/+51
*
gh-108113: Make it possible to create an optimized AST (#108154)
Irit Katriel
2023-08-21
2
-2/+19
*
docs: fix grammar in isolating-extensions.rst (#108037)
David Lechner
2023-08-21
1
-1/+1
*
gh-107845: Fix symlink handling for tarfile.data_filter (GH-107846)
Petr Viktorin
2023-08-21
1
-0/+5
*
Improve references in the tutorial (GH-108069)
Serhiy Storchaka
2023-08-21
6
-49/+48
*
Resolve reference warnings in faq/gui.rst (#108147)
Adam Turner
2023-08-21
2
-5/+5
*
Resolve reference warnings in faq/library.rst (#108149)
Adam Turner
2023-08-20
2
-6/+8
*
Resolve reference warnings in faq/design.rst (#108148)
Adam Turner
2023-08-20
2
-3/+2
*
Docs: document 'manager' and '_log' attrs of logging.Logging (#108145)
Erlend E. Aasland
2023-08-20
1
-0/+8
*
Resolve reference warnings in faq/programming.rst (#108150)
Adam Turner
2023-08-20
2
-4/+3
*
Docs: Fix Sphinx warnings in logging.rst (GH-108139)
Erlend E. Aasland
2023-08-20
2
-24/+27
*
Docs: Fix Sphinx warnings in license.rst (#108142)
Erlend E. Aasland
2023-08-20
2
-6/+5
*
Docs: Fix Sphinx warnings in sys.rst (#108106)
Erlend E. Aasland
2023-08-20
3
-115/+153
*
gh-107659: Improve wording of the description of `ctypes.pointer` and `ctypes...
Tomas R
2023-08-20
1
-7/+7
*
gh-107619: Extend functools LRU cache docs with generators and async function...
Hadházy Tamás
2023-08-20
1
-2/+3
*
Fix misspellings in sysconfig docs (#108156)
Rafael Fontenelle
2023-08-20
1
-5/+5
*
gh-107980: fix doc role for asyncio.timeouts (#108126)
Tin Tvrtković
2023-08-19
1
-3/+3
*
Docs: Remove links to external C functions and macros in os.rst (#108138)
Erlend E. Aasland
2023-08-19
1
-25/+27
*
gh-72684: Tkinter: provide interface for "tk busy" subcommands (GH-107684)
Serhiy Storchaka
2023-08-19
1
-0/+9
*
Docs: format sys.float_info properly (#108107)
Erlend E. Aasland
2023-08-19
1
-52/+73
*
gh-107704: Argument Clinic: add support for deprecating keyword use of parame...
Serhiy Storchaka
2023-08-19
1
-22/+43
[next]