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-41906: Accept built filters in dictConfig (GH-30756)
Mario Corchero
2022-01-24
4
-1/+55
*
bpo-46422: use `dis.Positions` in `dis.Instruction` (GH-30716)
Nikita Sobolev
2022-01-24
4
-14/+42
*
bpo-43683: Streamline YIELD_VALUE and SEND (GH-30723)
Mark Shannon
2022-01-24
9
-43/+72
*
fix typo in typing.rst (#30841)
Jelle Zijlstra
2022-01-23
1
-1/+1
*
bpo-46486: Fixed misspelled name DesciptorClassification
Kumar Aditya
2022-01-23
1
-8/+8
*
Improve grouper() recipe to demonstrate all forms of zip() (GH-30837)
Raymond Hettinger
2022-01-23
2
-9/+41
*
bpo-41403: Improve error message for invalid mock target (GH-30833)
Irit Katriel
2022-01-23
3
-5/+13
*
bpo-46471: Use single byte singletons (GH-30781)
Kumar Aditya
2022-01-23
2
-0/+3
*
bpo-46103: Fix inspect.getmembers to only get __bases__ from class (GH-30147)
Weipeng Hong
2022-01-23
3
-13/+20
*
bpo-46481: Implement vectorcall for weakref.ref.__call__ method. (GH-30820)
Dong-hee Na
2022-01-23
4
-52/+35
*
bpo-46483: change `PurePath.__class_getitem__` to return `GenericAlias` (GH-3...
Nikita Sobolev
2022-01-23
3
-5/+13
*
bpo-46406: Faster single digit int division. (#30626)
Gregory P. Smith
2022-01-23
2
-10/+29
*
bpo-29882: Fix portability bug introduced in GH-30774 (#30794)
Mark Dickinson
2022-01-23
2
-4/+15
*
bpo-46474: Avoid REDoS in EntryPoint.pattern (sync with importlib_metadata 4....
Jason R. Coombs
2022-01-23
2
-2/+4
*
bpo-45382: test.pythoninfo logs more Windows versions (GH-30817)
Victor Stinner
2022-01-23
1
-0/+39
*
This localization technique is no longer cost effective. (GH-30818)
Raymond Hettinger
2022-01-23
1
-12/+12
*
bpo-46474: Apply changes from importlib_metadata 4.10.0 (GH-30802)
Jason R. Coombs
2022-01-23
3
-28/+3
*
bpo-46425: Partially revert "bpo-46425: fix direct invocation of `test_import...
Jason R. Coombs
2022-01-23
10
-40/+22
*
bpo-46477: [Enum] ensure Flag subclasses have correct bitwise methods (GH-30816)
Ethan Furman
2022-01-23
2
-39/+48
*
bpo-46417: _PyList_Fini() clears indexerr (GH-30815)
Victor Stinner
2022-01-23
1
-2/+6
*
Minor code rearrangement to group related methods together. (GH-30813)
Raymond Hettinger
2022-01-23
1
-40/+38
*
bpo-46417: Fix _PyStaticType_Dealloc() (GH-30810)
Victor Stinner
2022-01-22
1
-3/+11
*
bpo-46417: Clear symtable identifiers at exit (GH-30809)
Victor Stinner
2022-01-22
4
-3/+25
*
bpo-41682: Skip unstable test_asyncio sendfile test on Windows (GH-30801)
Nikita Sobolev
2022-01-22
1
-0/+2
*
bpo-46417: Clear _io module static objects at exit (GH-30807)
Victor Stinner
2022-01-22
2
-44/+99
*
bpo-46417: Clear Unicode static types at exit (GH-30806)
Victor Stinner
2022-01-22
6
-22/+25
*
bpo-46417: Py_Finalize() clears static exceptioins (GH-30805)
Victor Stinner
2022-01-22
1
-1/+26
*
bpo-46417: Factorize _PyExc_InitTypes() code (GH-30804)
Victor Stinner
2022-01-22
5
-190/+150
*
bpo-46126: Disable 'descriptions' when running tests internally. (GH-30194)
Jason R. Coombs
2022-01-22
2
-1/+6
*
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
[next]