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-46417: _PyTypes_FiniTypes() clears object and type (GH-30798)
Victor Stinner
2022-01-22
1
-15/+11
*
bpo-45200: GHA Address Sanitizer skips 3 slowest tests (GH-30797)
Victor Stinner
2022-01-22
1
-1/+6
*
bpo-46417: Cleanup typeobject.c code (GH-30795)
Victor Stinner
2022-01-22
1
-159/+164
*
bpo-46417: Clear more static types (GH-30796)
Victor Stinner
2022-01-22
7
-54/+30
*
bpo-46425: fix direct invocation of `test_fileutils` and `test_zoneinfo` (GH-...
Nikita Sobolev
2022-01-22
2
-3/+7
*
bpo-46425: fix direct invocation of `test_importlib` (GH-30682)
Nikita Sobolev
2022-01-22
39
-61/+74
*
bpo-46425: use absolute imports in `test_sqlite3` (GH-30676)
Nikita Sobolev
2022-01-22
4
-6/+5
*
bpo-46425: fix direct invocation of `test_traceback` (GH-30746)
Nikita Sobolev
2022-01-22
1
-2/+3
*
bpo-46417: remove_subclass() clears tp_subclasses (GH-30793)
Victor Stinner
2022-01-22
2
-9/+32
*
bpo-46417: Fix race condition on setting type __bases__ (GH-30788)
Victor Stinner
2022-01-22
2
-11/+21
*
bpo-46468: document that "-m http.server" defaults to port 8000 (GH-30776)
Jelle Zijlstra
2022-01-22
1
-7/+12
*
bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)
Kumar Aditya
2022-01-22
8
-26/+28
*
fix DeprecationWarning when running asyncio tests (GH-30486)
Kumar Aditya
2022-01-22
1
-1/+1
*
bpo-46460: remove duplicated `versionchanged` from `dis.rst` (GH-30752)
Nikita Sobolev
2022-01-22
1
-2/+0
*
bpo-46425: fix direct invocation of `asyncio` tests (#30725)
Nikita Sobolev
2022-01-22
6
-2/+25
*
bpo-46249: Move set lastrowid out of the sqlite3 query loop (GH-30489)
Erlend Egeberg Aasland
2022-01-22
1
-11/+11
*
bpo-46442: improve and rename testExceptionCleanupNames (GH-30758)
Yellow Dusk
2022-01-22
1
-2/+14
*
Improve the Windows release build scripts (GH-30771)
Steve Dower
2022-01-22
17
-229/+293
*
bpo-29882: _Py_popcount32() doesn't need 64x64 multiply (GH-30774)
Victor Stinner
2022-01-21
1
-1/+1
*
bpo-46417: Use _PyType_CAST() in Objects directory (GH-30764)
Victor Stinner
2022-01-21
9
-20/+13
*
bpo-46417: Use _PyType_CAST() in Python directory (GH-30769)
Victor Stinner
2022-01-21
2
-4/+3
*
bpo-46417: Add _PyType_GetSubclasses() function (GH-30761)
Victor Stinner
2022-01-21
3
-54/+75
*
bpo-46463: Fixes escape4chm.py script used when building the CHM documentatio...
Steve Dower
2022-01-21
2
-4/+7
*
bpo-46445: Cover multiple inheritance of `TypedDict` in `test_typing` (GH-30719)
Nikita Sobolev
2022-01-21
1
-1/+87
*
bpo-43118: Fix bug in inspect.signature around 'base.__text_signature__' (GH-...
Weipeng Hong
2022-01-21
4
-2/+27
*
bpo-46124: Update zoneinfo to rely on importlib.resources traversable API. (G...
Jason R. Coombs
2022-01-21
3
-3/+4
*
Update generated files list and add `diff=generated` attribute (GH-30745)
Erlend Egeberg Aasland
2022-01-21
1
-18/+28
*
bpo-46417: Add _PyType_CAST() macro (GH-30760)
Victor Stinner
2022-01-21
3
-58/+50
*
bpo-46434: Handle missing docstrings in pdb help (GH-30705)
Tom Sparrow
2022-01-21
4
-0/+27
*
bpo-46417: Add missing types of _PyTypes_InitTypes() (GH-30749)
Victor Stinner
2022-01-21
3
-3/+11
*
bpo-46417: Revert remove_subclass() change (GH-30750)
Victor Stinner
2022-01-21
1
-4/+0
*
bpo-46417: Py_Finalize() clears static types (GH-30743)
Victor Stinner
2022-01-21
4
-85/+144
*
bpo-46417: Call _PyDebug_PrintTotalRefs() later (GH-30744)
Victor Stinner
2022-01-21
2
-6/+9
*
bpo-46426: Improve tests for the dir_fd argument (GH-30668)
Serhiy Storchaka
2022-01-21
3
-230/+208
*
bpo-30512: Add CAN Socket support for NetBSD (GH-30066)
Thomas Klausner
2022-01-21
8
-6/+26
*
bpo-21987: Fix TarFile.getmember getting a dir with a trailing slash (GH-30283)
andrei kulakov
2022-01-21
3
-1/+22
*
bpo-46425: Fix direct invocation of `test_contextlib` (GH-30681)
Nikita Sobolev
2022-01-21
1
-4/+10
*
bpo-46417: signal uses PyStructSequence_NewType() (GH-30735)
Victor Stinner
2022-01-21
1
-7/+9
*
bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736)
Victor Stinner
2022-01-21
10
-19/+40
*
bpo-46417: time module uses PyStructSequence_NewType() (GH-30734)
Victor Stinner
2022-01-21
1
-37/+81
*
bpo-46417: _thread uses PyStructSequence_NewType() (GH-30733)
Victor Stinner
2022-01-21
1
-12/+14
*
bpo-46417: _testembed.c avoids Py_SetProgramName() (GH-30732)
Victor Stinner
2022-01-21
2
-31/+33
*
bpo-46417: Finalize structseq types at exit (GH-30645)
Victor Stinner
2022-01-21
17
-2/+230
*
bpo-41857: mention timeout argument units in select.poll() and select.depoll(...
Zane Bitter
2022-01-20
2
-3/+15
*
bpo-46080: fix argparse help generation exception in edge case (GH-30111)
Felix Fontein
2022-01-20
3
-3/+9
*
bpo-46441: Add a boilerplate to test syntax errors in interactive mode (GH-30...
Batuhan Taskaya
2022-01-20
1
-0/+33
*
bpo-46316: optimize `pathlib.Path.iterdir()` (GH-30501)
Barney Gale
2022-01-20
2
-3/+1
*
bpo-40280: Misc fixes for wasm32-emscripten (GH-30722)
Christian Heimes
2022-01-20
9
-6/+34
*
bpo-46429: Merge all deepfrozen files into one (GH-30572)
Kumar Aditya
2022-01-20
6
-243/+120
*
Fix the caret position in some syntax errors in interactive mode (GH-30718)
Pablo Galindo Salgado
2022-01-20
1
-2/+3
[next]