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
...
*
bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251)
Mark Shannon
2020-11-12
6
-4655/+4653
*
bpo-42308: Add threading.__excepthook__ (GH-23218)
Mario Corchero
2020-11-12
5
-0/+40
*
bpo-38823: Always build _ctypes with wchar_t (GH-23248)
Victor Stinner
2020-11-12
6
-31/+7
*
bpo-42260: Initialize time and warnings earlier at startup (GH-23249)
Victor Stinner
2020-11-12
7
-133/+68
*
bpo-38823: Fix refleaks in _ctypes extension init (GH-23247)
Victor Stinner
2020-11-12
2
-162/+156
*
Bump magic number. (GH-23245)
Mark Shannon
2020-11-12
3
-112/+114
*
bpo-42237: Fix os.sendfile() on illumos (GH-23154)
Jakub Stasiak
2020-11-12
2
-0/+16
*
bpo-42246: Partial implementation of PEP 626. (GH-23113)
Mark Shannon
2020-11-12
19
-4994/+5358
*
Fix memory leak introduced by GH-22780 (GH-23237)
Andrew Svetlov
2020-11-11
1
-0/+1
*
bpo-40170: Fix PyType_Ready() refleak on static type (GH-23236)
Victor Stinner
2020-11-11
2
-2/+8
*
bpo-40932: Note security caveat of shlex.quote on Windows (GH-21502)
Ammar Askar
2020-11-11
2
-5/+16
*
bpo-39411: pyclbr rewrite on AST (#18103)
Batuhan Taskaya
2020-11-11
4
-211/+118
*
bpo-1635741: Fix typo in PyModule_AddObjectRef() doc (GH-23234)
Victor Stinner
2020-11-11
2
-2/+2
*
bpo-42294: Grammar fixes in doc glossary strong/weak refs (GH-23227)
kj
2020-11-10
2
-6/+6
*
bpo-42140: Improve asyncio.wait function (GH-22938)
Diogo Dutra
2020-11-10
3
-2/+29
*
bpo-41073: PyType_GetSlot() can now accept static types. (GH-21931)
Hai Shi
2020-11-10
7
-101/+205
*
bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220)
Victor Stinner
2020-11-10
8
-95/+93
*
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...
Vladimir Matveev
2020-11-10
13
-49/+146
*
bpo-42014: shutil.rmtree: call onerror with correct function (GH-22585)
Michal Čihař
2020-11-10
2
-1/+2
*
Update whatsnew for 3.10 release about addition of contextlib.aclosing (GH-23...
Joongi Kim
2020-11-10
1
-0/+7
*
bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-2...
Andrew Svetlov
2020-11-10
3
-3/+44
*
bpo-42171: Add PEP573-related items to the limited API (GH-23009)
Petr Viktorin
2020-11-10
4
-3/+13
*
Fix typo in test_array.py (GH-23189)
Ikko Ashimine
2020-11-10
1
-1/+1
*
bpo-42260: Compute the path config in the main init (GH-23211)
Victor Stinner
2020-11-10
6
-74/+85
*
Fix typo in unicodeobject.c (GH-23180)
Ikko Ashimine
2020-11-10
1
-1/+1
*
bpo-36310: Allow pygettext.py to detect calls to gettext in f-strings. (GH-19...
jack1142
2020-11-09
4
-0/+126
*
bpo-41712: Avoid runaway regex match in upload scripts (GH-23166)
Yash Shete
2020-11-09
1
-1/+1
*
bpo-42294: Add borrowed/strong reference to doc glossary (GH-23206)
Victor Stinner
2020-11-09
11
-22/+72
*
bpo-41543: contextlib.nullcontext can fill in for an async context manager (G...
Tom Gringauz
2020-11-09
4
-2/+39
*
bpo-40624: Add support for the XPath != operator in xml.etree (GH-22147)
Ammar Askar
2020-11-09
4
-7/+78
*
bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...
kj
2020-11-09
6
-17/+51
*
bpo-41754: Ignore NotADirectoryError in invocation of xdg-settings (GH-23075)
Ronald Oussoren
2020-11-08
2
-1/+2
*
bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)
Ronald Oussoren
2020-11-08
27
-345/+1587
*
Minor wording change in concurrent.futures. (GH-23194)
Don Kirkby
2020-11-08
1
-3/+3
*
bpo-40077: Convert _queuemodule to use heap types (GH-23136)
Erlend Egeberg Aasland
2020-11-07
3
-105/+138
*
bpo-42282: Fold constants inside named expressions (GH-23190)
Nick Coghlan
2020-11-07
2
-11/+46
*
bpo-41028: Doc: Move switchers to docsbuild-scripts. (GH-20969)
Julien Palard
2020-11-07
6
-173/+16
*
bpo-42133: update parts of the stdlib to fall back to `__spec__.loader` when ...
Brett Cannon
2020-11-07
6
-14/+59
*
Remove outdated reference to pywin32 from platform module (GH-22005)
Andre Delfino
2020-11-06
1
-7/+0
*
bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123)
Hai Shi
2020-11-06
7
-4/+44
*
Minor grammar edits for the descriptor howto guide (GH-#23175)
Raymond Hettinger
2020-11-06
1
-10/+10
*
bpo-42179: Doc/tutorial: Remove mention of __cause__ (GH-23162)
Inada Naoki
2020-11-06
1
-9/+10
*
bpo-26389: Allow passing an exception object in the traceback module (GH-22610)
Zackery Spytz
2020-11-05
5
-24/+97
*
bpo-42260: PyConfig_Read() only parses argv once (GH-23168)
Victor Stinner
2020-11-05
6
-105/+134
*
bpo-42260: Add _PyConfig_FromDict() (GH-23167)
Victor Stinner
2020-11-05
6
-60/+653
*
bpo-41877 Check for asert, aseert, assrt in mocks (GH-23165)
vabr-g
2020-11-05
3
-3/+14
*
[docs] fix wrongly named AsyncContextDecorator (GH-23164)
kj
2020-11-05
1
-3/+5
*
bpo-42262: Add Py_NewRef() and Py_XNewRef() (GH-23152)
Victor Stinner
2020-11-05
7
-6/+85
*
bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157)
Pablo Galindo
2020-11-05
4
-7/+28
*
bpo-40816 Add AsyncContextDecorator class (GH-20516)
Kazantcev Andrey
2020-11-05
4
-1/+114
[prev]
[next]