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-84783: Make the slice object hashable (GH-101264)
Furkan Onder
2023-02-19
3
-10/+11
*
gh-97930: Apply changes from importlib_resources 5.12. (GH-102010)
Jason R. Coombs
2023-02-18
14
-127/+237
*
gh-100226: Clarify StreamReader.read behavior (#101807)
Jan Gosmann
2023-02-17
1
-8/+9
*
gh-101766: Fix refleak for _BlockingOnManager resources from test suite level...
Dong-hee Na
2023-02-17
2
-5/+5
*
gh-100809: Fix handling of drive-relative paths in pathlib.Path.absolute() (G...
Barney Gale
2023-02-17
3
-1/+61
*
gh-101360: Fix anchor matching in pathlib.PureWindowsPath.match() (GH-101363)
Barney Gale
2023-02-17
3
-8/+10
*
gh-101766: Fix refleak for _BlockingOnManager resources (gh-101942)
Dong-hee Na
2023-02-17
1
-0/+5
*
gh-101758: Fix Refleak-Related Failures in test_singlephase_variants (gh-101969)
Eric Snow
2023-02-17
1
-1/+13
*
gh-101758: Add _PyState_AddModule() Back for the Stable ABI (gh-101956)
Eric Snow
2023-02-16
1
-0/+1
*
GH-96764: rewrite `asyncio.wait_for` to use `asyncio.timeout` (#98518)
Kumar Aditya
2023-02-16
3
-79/+132
*
gh-101881: Support (non-)blocking read/write functions on Windows pipes (GH-1...
Rayyan Ansari
2023-02-16
1
-0/+1
*
gh-101951: use textwrap.dedent in compiler tests to make them more readable (...
Irit Katriel
2023-02-16
1
-143/+145
*
gh-101928: fix crash in compiler on multi-line lambda in function call (#101933)
penguin_wwy
2023-02-16
1
-0/+11
*
gh-99108: Refactor _sha256 & _sha512 into _sha2. (#101924)
Gregory P. Smith
2023-02-16
2
-19/+15
*
gh-98627: Add an Optional Check for Extension Module Subinterpreter Compatibi...
Eric Snow
2023-02-16
6
-7/+411
*
gh-101758: Fix the wasm Buildbots (gh-101943)
Eric Snow
2023-02-16
1
-1/+11
*
gh-101758: Add a Test For Single-Phase Init Modules in Multiple Interpreters ...
Eric Snow
2023-02-15
1
-0/+73
*
gh-101758: Clean Up Uses of Import State (gh-101919)
Eric Snow
2023-02-15
2
-2/+1
*
gh-99138: Isolate _zoneinfo (#99218)
Erlend E. Aasland
2023-02-15
1
-3/+1
*
gh-101693: In sqlite3, deprecate using named placeholders with parameters sup...
Erlend E. Aasland
2023-02-15
1
-0/+15
*
gh-101758: Add a Test For Single-Phase Init Module Variants (gh-101891)
Eric Snow
2023-02-14
1
-0/+199
*
gh-101799: implement PREP_RERAISE_STAR as an intrinsic function (#101800)
Irit Katriel
2023-02-14
2
-2/+3
*
gh-74895: getaddrinfo no longer raises OverflowError (#2435)
Radek Smejkal
2023-02-14
1
-0/+48
*
GH-87849: Simplify stack effect of SEND and specialize it for generators and ...
Mark Shannon
2023-02-13
4
-16/+29
*
gh-85984: Utilize new "winsize" functions from termios in pty tests. (#101831)
Soumendra Ganguly
2023-02-12
1
-69/+27
*
Fix typo in test_fstring.py (#101823)
mjoerg
2023-02-11
1
-1/+1
*
gh-101517: make bdb avoid looking up in linecache with lineno=None (#101787)
Irit Katriel
2023-02-10
2
-3/+10
*
Fix typo in `test_fstring.py` (#101600)
Ikko Eltociear Ashimine
2023-02-09
1
-1/+1
*
gh-85984: Remove legacy Lib/pty.py code. (#92365)
Soumendra Ganguly
2023-02-09
1
-13/+7
*
gh-101283: Fix use of unbound variable (GH-101712)
Steve Dower
2023-02-08
1
-0/+2
*
gh-101283: Improved fallback logic for subprocess with shell=True on Windows ...
Oleg Iarygin
2023-02-08
1
-1/+15
*
gh-101196: Make isdir/isfile/exists faster on Windows (GH-101324)
Michael Droettboom
2023-02-08
5
-33/+54
*
gh-100933: Improve `check_element` helper in `test_xml_etree` (#100934)
Nikita Sobolev
2023-02-08
1
-23/+4
*
GH-101578: Normalize the current exception (GH-101607)
Mark Shannon
2023-02-08
3
-4/+47
*
gh-101446: Change `repr` of `collections.OrderedDict` (#101661)
Nikita Sobolev
2023-02-08
2
-3/+3
*
gh-101632: Add the new RETURN_CONST opcode (#101633)
penguin_wwy
2023-02-07
8
-106/+84
*
Merge branch 'main' of https://github.com/python/cpython into main
Thomas Wouters
2023-02-07
1
-7/+6
|
\
|
*
Make use of TESTFN_ASCII in test_fileio (GH-101645)
Zachary Ware
2023-02-07
1
-7/+6
*
|
Python 3.12.0a5
v3.12.0a5
Thomas Wouters
2023-02-07
1
-1/+13
|
/
*
gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.11+ (#1...
Matthieu Dartiailh
2023-02-07
1
-0/+56
*
gh-99108: Replace SHA2-224 & 256 with verified code from HACL* (#99109)
Jonathan Protzenko
2023-02-07
1
-0/+10
*
gh-59956: Add a Test to Verify GILState Matches the "Current" Thread State (g...
Eric Snow
2023-02-06
1
-0/+3
*
gh-101562: typing: add tests for inheritance with NotRequired & Required in p...
Eclips4
2023-02-06
1
-0/+33
*
gh-76961: Fix buildbot failures in test_pep3118 (#101587)
Mark Dickinson
2023-02-06
1
-10/+10
*
gh-101541: [Enum] create flag psuedo-member without calling original __new__ ...
Ethan Furman
2023-02-06
2
-3/+42
*
Trivial Change: Remove unhelpful doc in `datetime.timedelta` (#100164)
Matty G
2023-02-06
1
-2/+5
*
gh-101334: Don't force USTAR format in test_tarfile. (GH-101572)
Gregory P. Smith
2023-02-05
1
-0/+5
*
bpo-33591: Add support for path like objects to `ctypes.CDLL` (#7032)
mrh1997
2023-02-05
2
-4/+16
*
gh-76961: Fix the PEP3118 format string for ctypes.Structure (#5561)
Eric Wieser
2023-02-05
1
-3/+20
*
Revert "gh-89381: Fix invalid signatures of math/cmath.log (#101404)" (#101580)
Mark Dickinson
2023-02-05
1
-1/+0
[next]