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-105684: Require `asyncio.Task` implementations to support `set_name` metho...
Kumar Aditya
2023-06-13
5
-16/+8
*
GH-104787: use bitfields in `_asyncio` (#104788)
Kumar Aditya
2023-06-13
1
-7/+10
*
gh-105540: Fix code generator tests (#105707)
Guido van Rossum
2023-06-12
1
-128/+47
*
gh-105375: Explicitly initialise all {Pickler,Unpickler}Object fields (#105686)
Erlend E. Aasland
2023-06-12
1
-37/+53
*
gh-105331: Change `asyncio.sleep` to raise ``ValueError` for nan (#105641)
Jay
2023-06-12
4
-0/+24
*
Remove support for legacy bytecode instructions (#105705)
Guido van Rossum
2023-06-12
3
-22/+3
*
gh-105229: Remove syntactic support for super-instructions (#105703)
Guido van Rossum
2023-06-12
2
-143/+38
*
gh-105436: The environment block should end with two null wchar_t values (GH-...
Dora203
2023-06-12
3
-1/+22
*
gh-103968: PyType_FromMetaclass: Allow metaclasses with tp_new=NULL (GH-105386)
Petr Viktorin
2023-06-12
5
-9/+53
*
ARM64 clamping bug also exists in MSVC 14.35 (GH-105679)
Steve Dower
2023-06-12
1
-1/+1
*
gh-105673: Fix uninitialized warning in sysmodule.c (#105674)
Nikita Sobolev
2023-06-12
1
-1/+1
*
gh-105481: add pseudo-instructions to the bytecodes DSL (#105506)
Irit Katriel
2023-06-11
8
-267/+507
*
gh-105375: Harden pyexpat initialisation (#105606)
Erlend E. Aasland
2023-06-11
2
-7/+14
*
gh-105375: Improve error handling in the sys extension module (#105611)
Erlend E. Aasland
2023-06-11
2
-6/+20
*
gh-105375: Improve error handling in _ctypes (#105593)
Erlend E. Aasland
2023-06-11
2
-4/+15
*
gh-105375: Improve error handling in PyUnicode_BuildEncodingMap() (#105491)
Erlend E. Aasland
2023-06-11
2
-12/+19
*
gh-105375: Improve PyErr_WarnExplicit() error handling (#105610)
Erlend E. Aasland
2023-06-11
2
-12/+18
*
bpo-44185: Added close() to mock_open __exit__ (#26902)
Samet YASLAN
2023-06-11
3
-3/+10
*
gh-102676: Add more convenience properties to `dis.Instruction` (#103969)
Tomas R
2023-06-11
4
-196/+435
*
Fix typo in configparser module docstring (#105652)
litlighilit
2023-06-11
1
-1/+1
*
gh-105375: Improve error handling in the builtins extension module (#105585)
Erlend E. Aasland
2023-06-11
2
-8/+34
*
gh-105375: Improve _decimal error handling (#105605)
Erlend E. Aasland
2023-06-11
2
-1/+6
*
gh-105375: Harden _datetime initialisation (#105604)
Erlend E. Aasland
2023-06-11
2
-5/+32
*
gh-105375: Improve array.array exception handling (#105594)
Erlend E. Aasland
2023-06-11
2
-3/+7
*
gh-105375: Harden _ssl initialisation (#105599)
Erlend E. Aasland
2023-06-11
2
-5/+13
*
gh-80480: Emit DeprecationWarning for array's 'u' type code (#95760)
Hugo van Kemenade
2023-06-11
7
-10/+48
*
gh-99108: Mention HACL\* in the hashlib docs. (#105634)
Gregory P. Smith
2023-06-10
1
-5/+6
*
Cleanup and clarify our hashlib docs. (#105624)
Gregory P. Smith
2023-06-10
1
-47/+90
*
gh-105375: Harden error handling in `_testcapi/heaptype.c` (#105608)
Erlend E. Aasland
2023-06-09
1
-1/+4
*
gh-105375: Improve error handling in `zoneinfo` module (#105586)
Nikita Sobolev
2023-06-09
2
-6/+12
*
Docs: fix formatting in 2023-06-09-12-59-18 NEWS item (#105607)
Erlend E. Aasland
2023-06-09
1
-2/+2
*
gh-105549: Tokenize separately NUMBER and NAME tokens and allow 0-prefixed li...
Pablo Galindo Salgado
2023-06-09
3
-3/+45
*
gh-105375: Improve error handling in _elementtree (#105591)
Erlend E. Aasland
2023-06-09
2
-3/+8
*
gh-105375: Improve posix error handling (#105592)
Erlend E. Aasland
2023-06-09
2
-4/+10
*
gh-105375: Improve errnomodule error handling (#105590)
Erlend E. Aasland
2023-06-09
2
-3/+6
*
gh-105375: Improve _pickle error handling (#105475)
Erlend E. Aasland
2023-06-09
2
-12/+28
*
gh-105375: Improve error handling in compiler_enter_scope() (#105494)
Erlend E. Aasland
2023-06-09
2
-1/+6
*
gh-105564: Don't include artificial newlines in the line attribute of tokens ...
Pablo Galindo Salgado
2023-06-09
4
-25/+30
*
Clarify the supported cases in the tokenize module (#105569)
Pablo Galindo Salgado
2023-06-09
1
-0/+9
*
gh-105497: [Enum] Fix Flag inversion when alias/mask members exist. (GH-105542)
Ethan Furman
2023-06-09
3
-8/+47
*
Miscellaneous improvements to the typing docs (#105529)
Alex Waygood
2023-06-09
3
-145/+229
*
gh-105557: Remove duplicate sqlite3 test method (#105558)
Erlend E. Aasland
2023-06-09
1
-7/+2
*
gh-94924: support `inspect.iscoroutinefunction` in `create_autospec(async_def...
Thomas Grainger
2023-06-09
3
-2/+54
*
gh-105407: Remove unused imports (#105554)
Victor Stinner
2023-06-09
5
-5/+3
*
gh-102304: Remove Py_INCREF() doc change (#105552)
Victor Stinner
2023-06-09
1
-9/+0
*
gh-102304: Fix Py_INCREF() for limited C API 3.9 (#105550)
Victor Stinner
2023-06-09
1
-2/+14
*
gh-105545: Remove deprecated `MacOSXOSAScript._name` (gh-105546)
Nikita Sobolev
2023-06-09
4
-15/+7
*
gh-105396: Deprecate PyImport_ImportModuleNoBlock() function (#105397)
Victor Stinner
2023-06-09
5
-1/+18
*
CI: Configure macOS build as per updated devguide recommendations (#105533)
Erlend E. Aasland
2023-06-08
1
-3/+2
*
gh-102832: IDLE - update stackviewer open (#105528)
Terry Jan Reedy
2023-06-08
1
-2/+2
[prev]
[next]