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
...
*
gh-100616: Document 'attr' parameter for window.vline() in curses module (#24...
mathieui
2022-12-30
2
-3/+5
*
gh-99433: Fix `doctest` failure on `types.MethodWrapperType` (#99434)
Nikita Sobolev
2022-12-30
3
-1/+6
*
gh-100228: Warn from os.fork() if other threads exist. (#100229)
Gregory P. Smith
2022-12-29
12
-66/+283
*
gh-100540: Remove obsolete Modules/_ctypes/darwin/ dlfcn shim (GH-100541)
Zachary Ware
2022-12-29
15
-540/+15
*
gh-100583: Improve the `pydoc` documentation (#100590)
ram vikram singh
2022-12-29
1
-4/+4
*
gh-100600: Fix "coroutine was never awaited" warning in `test_coroutines` (#1...
Nikita Sobolev
2022-12-29
1
-0/+1
*
gh-100585: Fixed a bug where importlib.resources.as_file was leaving file poi...
Samet YASLAN
2022-12-28
2
-1/+2
*
GH-100101: Clarify documentation of zip's strict option (GH-100103)
JustAnotherArchivist
2022-12-28
1
-4/+14
*
Restore early-out to factor(). Strengthen tests. (GH-100591)
Raymond Hettinger
2022-12-28
1
-5/+15
*
gh-94172: Update docs for params removed in 3.12 (#100431)
Hugo van Kemenade
2022-12-28
7
-56/+58
*
gh-100540: Remove unused Modules/_ctypes/libffi_osx/ (GH-100543)
Zachary Ware
2022-12-28
22
-6651/+5
*
gh-100540: Remove obsolete '--with-system-ffi' configure option (GH-100544)
Zachary Ware
2022-12-28
4
-156/+87
*
gh-100540: Remove unnecessary '-DMACOSX' for ctypes on macOS (GH-100542)
Zachary Ware
2022-12-28
3
-4/+4
*
gh-100577: Replace `assert(0)` with `Py_UNREACHABLE` in `symtable.c` (#100579)
Nikita Sobolev
2022-12-28
1
-1/+1
*
Fix mock code coverage. (#100580)
Chris Withers
2022-12-28
1
-6/+3
*
Improve factor() recipe and fix its tests (GH-100576)
Raymond Hettinger
2022-12-28
1
-20/+20
*
Remove skipped test in test for async mocks. (#100559)
Chris Withers
2022-12-28
1
-4/+0
*
GH-100192: fix `asyncio` subprocess tests to pass env vars to subprocess (#10...
Kumar Aditya
2022-12-28
1
-2/+4
*
gh-55688: Add note about ending backslashes for raw strings (#94768)
Stanley
2022-12-28
2
-0/+45
*
add tests for `asyncio` transport sockets (#100263)
Kumar Aditya
2022-12-28
1
-0/+23
*
Fix copy-paste error in `Tools/clinic.py` (#100560)
Nikita Sobolev
2022-12-28
1
-1/+1
*
GH-100342: check for allocation failure in AC `*args` parsing (#100343)
Kumar Aditya
2022-12-28
4
-2/+16
*
GH-100192: add more `asyncio` subprocess tests (#100194)
Kumar Aditya
2022-12-28
1
-0/+82
*
GH-98831: Modernize a ton of simpler instructions (#100545)
Guido van Rossum
2022-12-28
3
-349/+242
*
gh-100553: Improve accuracy of sqlite3.Row iter test (#100555)
Nikita Sobolev
2022-12-28
1
-2/+8
*
Remove `NoneType` redefinition from `clinic.py` (#100551)
Nikita Sobolev
2022-12-27
1
-2/+0
*
gh-94603: micro optimize list.pop (gh-94604)
Pieter Eendebak
2022-12-27
2
-12/+21
*
gh-99509: Add `__class_getitem__` to `multiprocessing.queues.Queue` (#99511)
Nikita Sobolev
2022-12-27
3
-1/+9
*
gh-100520: Fix `rst` markup in `configparser` docstrings (#100524)
Nikita Sobolev
2022-12-26
1
-36/+37
*
Fix name of removed `inspect.Signature.from_builtin` method in 3.11.0a2 chang...
Jakub Kuczys
2022-12-26
1
-1/+1
*
gh-92446: Improve argparse choices docs; revert bad change to lzma docs (#94627)
Guy Yagev
2022-12-26
2
-7/+7
*
gh-99308: Clarify re docs for byte pattern group names (#99311)
Ilya Kulakov
2022-12-25
1
-7/+9
*
gh-100519: simplification to `eff_request_host` in cookiejar.py (#99588)
Glyph
2022-12-25
2
-1/+3
*
gh-100472: Fix docs claim that compileall parameters could be bytes (#100473)
Shantanu
2022-12-24
2
-2/+3
*
[Minor PR] Quotes in documentation changed into code blocks (#99536)
Bart Broere
2022-12-24
1
-0/+4
*
gh-100428: Make float documentation more accurate (#100437)
Shantanu
2022-12-24
1
-9/+12
*
gh-99535: Add test for inheritance of annotations and update documentation (#...
MonadChains
2022-12-24
3
-0/+32
*
gh-100287: Fix unittest.mock.seal with AsyncMock (#100496)
Shantanu
2022-12-24
3
-5/+18
*
gh-100474: Fix handling of dirs named index.html in http.server (GH-100475)
James Frost
2022-12-24
3
-1/+6
*
gh-99908: Tutorial: Modernize the 'data-record class' example (#100499)
JosephSBoyle
2022-12-24
1
-9/+15
*
Remove wrong comment about `repr` in `test_unicode` (#100495)
Nikita Sobolev
2022-12-24
1
-1/+0
*
gh-100357: Convert several functions in `bltinsmodule` to AC (#100358)
Nikita Sobolev
2022-12-24
3
-99/+305
*
Misc Itertools recipe tweaks (GH-100493)
Raymond Hettinger
2022-12-24
1
-5/+49
*
GH-91166: Implement zero copy writes for `SelectorSocketTransport` in asyncio...
Kumar Aditya
2022-12-24
0
-0/+0
*
GH-91166: Implement zero copy writes for `SelectorSocketTransport` in asyncio...
Kumar Aditya
2022-12-24
3
-29/+175
*
gh-77771: Add enterabs example in sched (#92716)
Stanley
2022-12-24
1
-5/+11
*
gh-100268: Add is_integer method to int (#100439)
Shantanu
2022-12-24
5
-1/+45
*
gh-100454: Start running SSL tests with OpenSSL 3.1.0-beta1 (#100456)
Illia Volochii
2022-12-24
3
-5/+6
*
gh-94808: improve test coverage of number formatting (#99472)
Nikita Sobolev
2022-12-24
1
-5/+39
*
Add "strict" to dotproduct(). Add docstring. Factor-out common code. (GH-100480)
Raymond Hettinger
2022-12-23
1
-2/+3
[prev]
[next]