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
/
Lib
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-111262: Add PyDict_Pop() function (#112028)
Victor Stinner
2023-11-14
1
-0/+87
*
gh-110944: Make pdb completion work for alias and convenience vars (GH-110945)
Tian Gao
2023-11-14
2
-1/+38
*
gh-111903: Add `@critical_section` directive to Argument Clinic. (#111904)
Sam Gross
2023-11-14
1
-0/+75
*
gh-112007: Re-organize help utility intro message (#112017)
Terry Jan Reedy
2023-11-13
1
-11/+13
*
GH-72904: Add `glob.translate()` function (#106703)
Barney Gale
2023-11-13
4
-106/+181
*
gh-111138: Add PyList_Extend() and PyList_Clear() functions (#111862)
Victor Stinner
2023-11-13
1
-5/+72
*
gh-110944: Move pty helper to test.support and add basic pdb completion test ...
Tian Gao
2023-11-13
3
-54/+91
*
gh-102837: more tests for the math module (GH-111930)
Sergey B Kirpichev
2023-11-13
1
-0/+55
*
gh-111999: Add signatures and improve docstrings for builtins (GH-112000)
Serhiy Storchaka
2023-11-13
1
-3/+8
*
GH-111429: Speed up `pathlib.PurePath.[is_]relative_to()` (#111431)
Barney Gale
2023-11-12
1
-4/+8
*
gh-111969: refactor to make it easier to construct a dis.Instruction object (...
Irit Katriel
2023-11-12
2
-64/+101
*
gh-112001: Fix test_builtins_have_signatures in test_inspect (GH-112002)
Serhiy Storchaka
2023-11-12
1
-12/+7
*
gh-90890: New methods to access mailbox.Maildir message info and flags (#103905)
Stephen Gildea
2023-11-11
2
-0/+136
*
gh-107431: Make `multiprocessing.managers.{DictProxy,ListProxy}` generic (#10...
Nikita Sobolev
2023-11-10
2
-4/+10
*
gh-80731: Avoid executing code in except block in cmd (GH-111740)
Tian Gao
2023-11-10
3
-3/+42
*
gh-110722: Make `-m test -T -j` use sys.monitoring (GH-111710)
Łukasz Langa
2023-11-10
11
-33/+155
*
gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Windows (GH...
Serhiy Storchaka
2023-11-10
2
-8/+11
*
gh-103791: handle `BaseExceptionGroup` in `contextlib.suppress()` (#111910)
Zac Hatfield-Dodds
2023-11-10
2
-1/+19
*
gh-111912: Run test_posix on Windows (GH-111913)
Serhiy Storchaka
2023-11-10
1
-3/+7
*
gh-111356: io: Add missing documented objects to io.__all__ (#111370)
Nicolas Tessore
2023-11-10
2
-11/+16
*
gh-111881: Import _sha2 lazily in random (#111889)
Victor Stinner
2023-11-09
1
-11/+15
*
gh-110875: Handle '.' properties in logging formatter configuration c… (GH-...
Vinay Sajip
2023-11-09
2
-5/+41
*
gh-111881: Import doctest lazily in libregrtest (#111884)
Victor Stinner
2023-11-09
1
-5/+8
*
gh-108303: Move more files to `Lib/test/test_module` (#111880)
Nikita Sobolev
2023-11-09
3
-5/+5
*
gh-111881: Use lazy import in test.support (#111885)
Victor Stinner
2023-11-09
2
-8/+13
*
gh-108303: Move config parser data to `Lib/test/configparserdata/` (gh-111879)
Nikita Sobolev
2023-11-09
5
-12/+12
*
GH-109369: Exit tier 2 if executor is invalid (GH-111657)
Mark Shannon
2023-11-09
1
-0/+25
*
gh-111835: Add seekable method to mmap.mmap (gh-111852)
Donghee Na
2023-11-09
1
-5/+6
*
gh-110543: Fix CodeType.replace in presence of comprehensions (#110586)
Jelle Zijlstra
2023-11-08
1
-2/+43
*
gh-111495: Add tests for PyList C API (#111562)
Kalyan
2023-11-08
1
-0/+277
*
gh-68166: Tkinter: Add tests and examples for element_create() (GH-111453)
Serhiy Storchaka
2023-11-08
1
-1/+183
*
gh-111246: Remove listening Unix socket on close (#111483)
Pierre Ossman (ThinLinc team)
2023-11-08
2
-1/+108
*
gh-111768: Add `wsgiref.util.is_hop_by_hop` to `__all__` (#111770)
Stefan
2023-11-08
1
-1/+1
*
gh-108303: Move more `typing` related files to `Lib/test/typinganndata` (#111...
Nikita Sobolev
2023-11-08
4
-3/+2
*
GH-111848: Tidy up tier 2 handling of FOR_ITER specialization by using DEOPT_...
Mark Shannon
2023-11-08
1
-3/+3
*
gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)
Victor Stinner
2023-11-07
2
-5/+1
*
gh-61199: Remove superfluous global statements from `base64._b32{en,de}code()...
Romuald Brunet
2023-11-07
1
-2/+0
*
gh-111806: Fix `test_recursion` in `test_richcmp` on WASI builds (GH-111830)
Nikita Sobolev
2023-11-07
1
-0/+1
*
gh-111808: Fix recursion error on WASM in `test_typing` (GH-111819)
Nikita Sobolev
2023-11-07
1
-5/+6
*
gh-81137: deprecate assignment of code object to a function of a mismatched t...
Irit Katriel
2023-11-07
1
-0/+22
*
gh-111623: Add Support for Cross-interpreter tuples (gh-111628)
Anthony Shaw
2023-11-07
2
-0/+30
*
gh-85098: Implement functional CLI of symtable (#109112)
Serhiy Storchaka
2023-11-07
2
-8/+103
*
gh-106672: C API: Report indiscriminately ignored errors (GH-106674)
Serhiy Storchaka
2023-11-07
3
-20/+109
*
gh-111765: Move old PyFloat_* tests to Lib/test/test_capi/test_float.py (GH-...
Sergey B Kirpichev
2023-11-07
2
-65/+65
*
GH-111485: Allow arbitrary annotations on instructions and micro-ops. (GH-111...
Mark Shannon
2023-11-07
1
-0/+43
*
gh-79932: raise exception if frame.clear() is called on a suspended frame (#1...
Irit Katriel
2023-11-07
1
-6/+9
*
gh-110395: test: assert after the child dies. (#111816)
Gregory P. Smith
2023-11-07
1
-1/+1
*
gh-96954: Use skip_if_missing in test_makeunicodedata (GH-111764)
Dennis Sweeney
2023-11-06
1
-1/+2
*
gh-101180: Fix a bug where iso2022_jp_3 and iso2022_jp_2004 codecs read out o...
Masayuki Moriyama
2023-11-06
1
-0/+46
*
gh-109466: Add ipv6_mapped property to IPv4Address (#109467)
Charles Machalow
2023-11-05
2
-0/+18
[next]