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
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-46376: Return existing pointer when possible in ctypes (#107131)
Konstantin
2023-07-31
1
-0/+29
*
gh-106263: Fix segfault in `signaldict_repr` in `_decimal` module (#106270)
Charlie Zhao
2023-07-30
1
-4/+28
*
gh-106881: Check for linux/limits.h before including it (#107397)
justdan6
2023-07-28
1
-1/+1
*
gh-106078: Isolate `decimal` module (#107287)
Charlie Zhao
2023-07-28
1
-182/+269
*
gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-107359)
Eric Snow
2023-07-27
4
-31/+21
*
gh-104432: Use `memcpy()` to avoid misaligned loads (#104433)
Christopher Chavez
2023-07-27
2
-7/+25
*
gh-103731: Remove unneeded checks for TCL_WIDE_INT_TYPE (GH-103732)
Christopher Chavez
2023-07-27
1
-4/+0
*
gh-107279 Add `<stddef.h>` to `Modules/zlibmodule.c` to fix failing builds (#...
shailshouryya
2023-07-27
1
-0/+1
*
gh-103735: Tkinter: remove handling for uninteresting "procbody" Tcl value ty...
Christopher Chavez
2023-07-26
1
-6/+0
*
gh-106350: Tkinter: do not ignore return value of `mp_init()` (GH-106351)
Christopher Chavez
2023-07-25
1
-2/+3
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
48
-253/+261
*
gh-86493: Modernize modules initialization code (GH-106858)
Serhiy Storchaka
2023-07-25
25
-275/+78
*
gh-106320: Remove private _PyMem API (#107187)
Victor Stinner
2023-07-24
3
-15/+18
*
gh-106320: Remove private _PyDict C API (#107145)
Victor Stinner
2023-07-24
2
-3/+5
*
Docs: fix typo in os.pwrite docstring (#107087)
Jérôme Carretero
2023-07-23
2
-4/+4
*
gh-106320: Remove _PyBytes_Join() C API (#107144)
Victor Stinner
2023-07-23
1
-1/+2
*
gh-106320: Remove private _PyObject C API (#107147)
Victor Stinner
2023-07-23
3
-76/+81
*
gh-106320: Remove _PyIsSelectable_fd() C API (#107142)
Victor Stinner
2023-07-23
1
-0/+1
*
gh-107122: Add clear method to dbm.ndbm module (gh-107126)
Dong-hee Na
2023-07-23
2
-1/+56
*
gh-107122: Add clear method to dbm.gdbm.module (gh-107127)
Dong-hee Na
2023-07-23
2
-1/+55
*
gh-106320: Remove private _PyInterpreterID C API (#107053)
Victor Stinner
2023-07-22
3
-4/+4
*
gh-106320: Move private _PySet API to the internal API (#107041)
Victor Stinner
2023-07-22
2
-0/+2
*
gh-106320: Remove _PyOS_ReadlineTState API (#107034)
Victor Stinner
2023-07-22
1
-0/+3
*
gh-106320: Move _PyNone_Type to the internal C API (#107030)
Victor Stinner
2023-07-22
1
-0/+1
*
gh-106320: Move private _PyHash API to the internal C API (#107026)
Victor Stinner
2023-07-22
4
-1/+9
*
gh-106004: Add PyDict_GetItemRef() function (#106005)
Victor Stinner
2023-07-21
1
-0/+191
*
gh-47146: Fix reference counting in _testcapi.structmember initializer (GH-10...
Serhiy Storchaka
2023-07-21
1
-1/+1
*
gh-105481: do not auto-generate pycore_intrinsics.h (#106913)
Irit Katriel
2023-07-20
2
-1/+94
*
gh-106078: Prepare to isolate decimal module (#106880)
Charlie Zhao
2023-07-20
1
-21/+53
*
gh-86493: Use PyModule_Add() instead of PyModule_AddObjectRef() (GH-106860)
Serhiy Storchaka
2023-07-18
11
-88/+20
*
gh-105481: Generate the opcode lists in dis from data extracted from bytecode...
Irit Katriel
2023-07-18
2
-1/+255
*
gh-86493: Fix possible leaks in some modules initialization (GH-106768)
Serhiy Storchaka
2023-07-18
8
-45/+37
*
gh-86493: Fix possible leaks in modules initialization: _curses_panel, _decim...
Serhiy Storchaka
2023-07-18
4
-55/+37
*
gh-106831: Fix NULL check of d2i_SSL_SESSION() result in _ssl.c (#106832)
Nikita Sobolev
2023-07-17
1
-3/+4
*
gh-106687: _ssl: use uint64_t for SSL options (#106700)
Victor Stinner
2023-07-17
1
-26/+54
*
gh-81283: compiler: remove indent from docstring (#106411)
Inada Naoki
2023-07-15
2
-2/+79
*
gh-105481: expose opcode metadata via the _opcode module (#106688)
Irit Katriel
2023-07-14
2
-1/+407
*
gh-105293: Do not call SSL_CTX_set_session_id_context on client side SSL cont...
Grant Ramsay
2023-07-14
1
-5/+9
*
gh-105235: Prevent reading outside buffer during mmap.find() (#105252)
Dennis Sweeney
2023-07-13
2
-1/+120
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
18
-60/+60
*
gh-106307: C API: Add PyMapping_GetOptionalItem() function (GH-106308)
Serhiy Storchaka
2023-07-11
2
-22/+15
*
gh-106078: Move external C-API functions to decimal module global state (#106...
Charlie Zhao
2023-07-11
1
-23/+24
*
gh-105227: Add PyType_GetDict() (GH-105747)
Eric Snow
2023-07-10
1
-0/+25
*
gh-106078: Move static variables initialized once to decimal module global st...
Charlie Zhao
2023-07-10
1
-22/+28
*
GH-104787: use managed weakrefs in `_asyncio` (#106516)
Kumar Aditya
2023-07-10
1
-21/+6
*
gh-99593: Add tests for Unicode C API (part 3) (GH-104728)
Serhiy Storchaka
2023-07-10
1
-1/+506
*
gh-105927: PyWeakref_GetRef() returns 1 on success (#106561)
Victor Stinner
2023-07-09
1
-1/+1
*
gh-104469: Convert_testcapi/vectorcall.c to use AC (gh-106557)
littlebutt's workshop
2023-07-09
2
-25/+140
*
gh-106508: Improve debugging of the _sre module (GH-106509)
Serhiy Storchaka
2023-07-08
3
-5/+31
*
gh-105873: Make `_xxsubinterpreters` use exception type name in shared except...
Radislav Chugunov
2023-07-08
1
-1/+1
[next]