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-40280: Use presence of msvcrt module to detect Windows (GH-30930)
Christian Heimes
2022-01-27
2
-4/+9
*
bpo-42982: Improve the text on suggested number of iterations of PBKDF2 (GH-2...
Illia Volochii
2022-01-27
1
-2/+7
*
[doc]: Spotted errors while working on rstlint. (GH-30879)
Julien Palard
2022-01-27
9
-12/+20
*
bpo-45162: Revert "Remove many old deprecated unittest features" (GH-30935)
Gregory P. Smith
2022-01-27
14
-55/+376
*
bpo-46496: news11-10 for bpo45296 (GH-30937)
Terry Jan Reedy
2022-01-27
1
-0/+6
*
bpo-45296: Clarify close, quit, and exit in IDLE (GH-30936)
Terry Jan Reedy
2022-01-27
4
-15/+23
*
bpo-46539: Pass status of special typeforms to forward references (GH-30926)
Gregory Beauregard
2022-01-27
3
-3/+18
*
bpo-40170: Remove _Py_GetAllocatedBlocks() function (GH-30940)
Victor Stinner
2022-01-27
4
-9/+16
*
bpo-40170: PyType_SUPPORTS_WEAKREFS() becomes a regular function (GH-30938)
Victor Stinner
2022-01-27
7
-10/+24
*
bpo-46502: Remove "How do I tell incomplete input" from FAQ (GH-30925)
Mateusz Ĺoskot
2022-01-26
1
-122/+0
*
make regen-all now suggests running: make autoconf (GH-30893)
Victor Stinner
2022-01-26
1
-1/+1
*
bpo-38472: setup.py uses LC_ALL=C to check the C compiler (GH-30929)
Victor Stinner
2022-01-26
2
-1/+5
*
bpo-46528: Simplify the VM's stack manipulations (GH-30902)
Brandt Bucher
2022-01-26
12
-320/+285
*
bpo-35134: Add Include/cpython/descrobject.h (GH-30923)
Victor Stinner
2022-01-26
5
-69/+78
*
bpo-43853: Expand test suite for SQLite UDF's (GH-27642)
Erlend Egeberg Aasland
2022-01-26
3
-67/+78
*
bpo-46527: allow calling enumerate(iterable=...) again (GH-30904)
Jelle Zijlstra
2022-01-26
3
-12/+55
*
Use existing unbound_local_error label in DELETE_FAST opcode (GH-30882)
Kumar Aditya
2022-01-26
1
-6/+1
*
bpo-46529: increase coverage of `typing.Union.__repr__` method (GH-30911)
Nikita Sobolev
2022-01-26
1
-0/+9
*
bpo-43698: do not use `...` as argument name in docs (GH-30502)
Nikita Sobolev
2022-01-26
4
-19/+16
*
bpo-45578: add a test case for `dis.findlabels` (GH-30058)
Nikita Sobolev
2022-01-26
1
-0/+10
*
bpo-46513: Remove AC_C_CHAR_UNSIGNED / __CHAR_UNSIGNED__ (GH-30851)
Christian Heimes
2022-01-26
5
-46/+2
*
bpo-41844: Update IDLE part of What's New 3.9 to 20228 (GH-30905)
Terry Jan Reedy
2022-01-26
1
-0/+14
*
bpo-48146: Update IDLE part of What's New 3.10 to 2022 (GH-30906)
Terry Jan Reedy
2022-01-26
1
-6/+11
*
bpo-46431: use raw string for regex in test (GH-30901)
Irit Katriel
2022-01-25
1
-1/+1
*
Add skips to crashing tests under sanitizers instead of manually skipping the...
Pablo Galindo Salgado
2022-01-25
7
-7/+37
*
bpo-46091: Correctly calculate indentation levels for whitespace lines with c...
Pablo Galindo Salgado
2022-01-25
5
-16/+165
*
Refactor sanitiser skip tests into test.support (GH-30889)
Pablo Galindo Salgado
2022-01-25
3
-34/+42
*
bpo-45382: test.pythoninfo: set wmic.exe encoding to OEM (GH-30890)
Victor Stinner
2022-01-25
1
-0/+3
*
bpo-46510: Add missing test for types.TracebackType/FrameType. Calculate them...
Irit Katriel
2022-01-25
3
-5/+14
*
bpo-46510: simplify exception handling code in xmlrpc (GH-30878)
Irit Katriel
2022-01-25
1
-31/+15
*
bpo-46510: update Python2-style exception handling in argparse (GH-30881)
Kumar Aditya
2022-01-25
1
-6/+4
*
Move doctests to the main docs. Eliminate duplication. Improve coverage. (GH-...
Raymond Hettinger
2022-01-25
2
-393/+238
*
bpo-46420: Use NOTRACE_DISPATCH() in specialized opcodes (GH-30652)
Dennis Sweeney
2022-01-25
1
-26/+43
*
bpo-46496: Update IDLE News to 2021 Jan 24 (GH-30875)
Terry Jan Reedy
2022-01-25
1
-0/+12
*
bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)
Christian Heimes
2022-01-25
42
-23/+139
*
bpo-46491: Allow Annotated on outside of Final/ClassVar (GH-30864)
Gregory Beauregard
2022-01-25
3
-4/+13
*
bpo-41841: update idlelib News up to 3.10.0. (GH-30868)
Terry Jan Reedy
2022-01-25
3
-3/+34
*
bpo-46503: Prevent an assert from firing when parsing some invalid \N sequenc...
Eric V. Smith
2022-01-25
3
-2/+19
*
bpo-46504: faster code for trial quotient in x_divrem() (GH-30856)
Tim Peters
2022-01-25
1
-1/+8
*
bpo-46431: Add example of subclassing ExceptionGroup. Document the message an...
Irit Katriel
2022-01-24
1
-31/+55
*
bpo-46431: improve error message on invalid calls to BaseExceptionGroup.__new...
Irit Katriel
2022-01-24
3
-2/+6
*
fixed flaky test (GH-30845)
Kumar Aditya
2022-01-24
1
-5/+7
*
bpo-40280: Get help() working and more (GH-30858)
Christian Heimes
2022-01-24
3
-13/+20
*
bpo-45711: move whatsnew entries which are incorrectly listed under New Featu...
Irit Katriel
2022-01-24
1
-10/+11
*
bpo-46470: remove unused branch from `typing._remove_dups_flatten` (GH-30780)
Nikita Sobolev
2022-01-24
2
-2/+1
*
bpo-41906: Accept built filters in dictConfig (GH-30756)
Mario Corchero
2022-01-24
4
-1/+55
*
bpo-46422: use `dis.Positions` in `dis.Instruction` (GH-30716)
Nikita Sobolev
2022-01-24
4
-14/+42
*
bpo-43683: Streamline YIELD_VALUE and SEND (GH-30723)
Mark Shannon
2022-01-24
9
-43/+72
*
fix typo in typing.rst (#30841)
Jelle Zijlstra
2022-01-23
1
-1/+1
*
bpo-46486: Fixed misspelled name DesciptorClassification
Kumar Aditya
2022-01-23
1
-8/+8
[prev]
[next]