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-103193: Improve `getattr_static` test coverage (#104286)
Alex Waygood
2023-05-08
1
-0/+29
*
gh-104273: Remove redundant len() calls in argparse function (#104274)
Burak Saler
2023-05-07
1
-3/+4
*
gh-104265 Disallow instantiation of `_csv.Reader` and `_csv.Writer` (#104266)
chgnrdv
2023-05-07
1
-1/+8
*
GH-102613: Improve performance of `pathlib.Path.rglob()` (GH-104244)
Barney Gale
2023-05-07
2
-18/+42
*
gh-103650: Fix perf maps address format (#103651)
Arthur Pastel
2023-05-07
1
-3/+9
*
GH-89812: Churn `pathlib.Path` methods (GH-104243)
Barney Gale
2023-05-07
1
-303/+303
*
gh-104240: make _PyCompile_CodeGen support different compilation modes (#104241)
Irit Katriel
2023-05-07
1
-0/+4
*
gh-103193: cache calls to `inspect._shadowed_dict` in `inspect.getattr_static...
Alex Waygood
2023-05-07
2
-2/+28
*
GH-100479: Fix pathlib test failure on WASI (#104215)
Barney Gale
2023-05-07
1
-1/+2
*
gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit builds...
Erlend E. Aasland
2023-05-07
1
-0/+8
*
Re-enable commented-out test in test_generators.py (#104130)
ymki4360
2023-05-07
1
-5/+4
*
gh-101640: Make argparse _print_message catch any write error (#101802)
Oleg Iarygin
2023-05-06
2
-3/+36
*
gh-99113: Add a check for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104206)
Eric Snow
2023-05-06
2
-0/+22
*
GH-103548: Improve performance of `pathlib.Path.[is_]absolute()` (GH-103549)
Barney Gale
2023-05-06
1
-1/+10
*
gh-90953: Emit deprecation warnings for `ast` features deprecated in Python 3...
Alex Waygood
2023-05-06
2
-135/+455
*
gh-104144: Optimize gather to finish eagerly when all futures complete eagerl...
Itamar Ostricher
2023-05-06
1
-1/+12
*
Rewrite the turtledemo makeGraphFrame method (#104224)
Terry Jan Reedy
2023-05-06
1
-10/+14
*
gh-65772: Clean-up turtle module (#104218)
Terry Jan Reedy
2023-05-06
1
-40/+21
*
gh-104144: Skip scheduling a done callback if a TaskGroup task completes eage...
Itamar Ostricher
2023-05-05
1
-2/+8
*
gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)
Eric Snow
2023-05-05
4
-10/+29
*
gh-104108: Add the Py_mod_multiple_interpreters Module Def Slot (gh-104148)
Eric Snow
2023-05-05
1
-21/+61
*
GH-100479: Add `pathlib.PurePath.with_segments()` (GH-103975)
Barney Gale
2023-05-05
2
-45/+73
*
gh-69152: Add _proxy_response_headers attribute to HTTPConnection (#26152)
Alexey Namyotkin
2023-05-05
2
-11/+21
*
gh-103533: Use PEP 669 APIs for cprofile (GH-103534)
Tian Gao
2023-05-05
1
-5/+14
*
gh-64595: Argument Clinic: Touch source file if any output file changed (#104...
Erlend E. Aasland
2023-05-05
1
-3/+4
*
gh-64631: Test exception messages in cloned Argument Clinic funcs (#104167)
Erlend E. Aasland
2023-05-05
1
-0/+13
*
gh-68395: Avoid naming conflicts by mangling variable names in Argument Clini...
Erlend E. Aasland
2023-05-05
1
-0/+169
*
GH-104142: Fix _Py_RefcntAdd to respect immortality (GH-104143)
Brandt Bucher
2023-05-05
1
-18/+25
*
gh-68968: Correcting message display issue with assertEqual (#103937)
Michael Blahay
2023-05-04
3
-11/+86
*
GH-103899: Provide a hint when accidentally calling a module (GH-103900)
Brandt Bucher
2023-05-04
1
-0/+32
*
GH-81079: Add case_sensitive argument to `pathlib.Path.glob()` (GH-102710)
Barney Gale
2023-05-04
2
-15/+31
*
gh-91896: Deprecate collections.abc.ByteString (#102096)
Shantanu
2023-05-04
2
-6/+36
*
gh-99593: Add tests for Unicode C API (part 2) (#99868)
Serhiy Storchaka
2023-05-04
1
-33/+464
*
gh-102500: Implement PEP 688 (#102521)
Jelle Zijlstra
2023-05-04
5
-3/+192
*
gh-102795: Fix use of poll in test_epoll's test_control_and_wait (#102796)
Kevin Krakauer
2023-05-04
1
-4/+11
*
Fix typo "involvin" → "involving" (#104166)
Christopher Chavez
2023-05-04
2
-2/+2
*
gh-97556: Raise null bytes syntax error upon null in multiline string (GH-104...
Lysandros Nikolaou
2023-05-04
1
-0/+13
*
gh-104089: catch DeprecationWarning in `test_fstring` (#104137)
sunmy2019
2023-05-04
1
-5/+12
*
gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)
Petr Viktorin
2023-05-04
2
-1/+159
*
pydoc.safeimport: Use importlib.import_module instead of __import__ (GH-103118)
Yuxin Wu
2023-05-03
1
-4/+1
*
gh-97850: Deprecate `find_loader` and `get_loader` in `pkgutil` (GH-98520)
Nikita Sobolev
2023-05-03
2
-18/+29
*
GH-104114: Fix `pathlib.WindowsPath.glob()` use of literal pattern segment ca...
Barney Gale
2023-05-03
2
-41/+15
*
GH-103944: Remove last use of `utcfromtimestamp` (#103995)
Paul Ganssle
2023-05-03
1
-15/+20
*
gh-103693: Add convenience variable feature to `pdb` (#103694)
Tian Gao
2023-05-03
2
-0/+95
*
gh-103968: Deprecate creating heap types whose metaclass has custom tp_new. (...
Petr Viktorin
2023-05-03
1
-0/+14
*
gh-98040: Remove find_loader, find_module and other deprecated APIs (#98059)
Barry Warsaw
2023-05-03
26
-825/+59
*
gh-103845: Remove line & instruction instrumentations before adding them back...
Tian Gao
2023-05-03
1
-0/+36
*
GH-84976: Re-introduce `datetime.py` and fix reprs
Paul Ganssle
2023-05-03
2
-29/+22
*
GH-84976: Move Lib/datetime.py to Lib/_pydatetime
Paul Ganssle
2023-05-03
3
-5/+13
*
gh-82012: Deprecate bitwise inversion (~) of bool (#103487)
Tim Hoffmann
2023-05-03
1
-2/+16
[next]