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
...
*
bpo-40645: use C implementation of HMAC (GH-24920)
Christian Heimes
2021-03-27
2
-44/+144
*
Revert "bpo-40521: Remove freelist from collections.deque() (GH-21073)" (GH-2...
Raymond Hettinger
2021-03-25
1
-2/+21
*
Fix typo in fuzzer.c (GH-25013)
Ikko Ashimine
2021-03-24
1
-2/+2
*
bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)
Victor Stinner
2021-03-23
1
-2/+0
*
bpo-43422: Revert _decimal C API addition (GH-24960)
Antoine Pitrou
2021-03-21
5
-529/+19
*
bpo-43577: Fix deadlock with SSLContext._msg_callback and sni_callback (GH-24...
Christian Heimes
2021-03-21
2
-0/+6
*
bpo-43571: Add IPPROTO_MPTCP macro (GH-24946)
Rui Cunha
2021-03-20
1
-0/+3
*
bpo-43244: Remove symtable.h header file (GH-24910)
Victor Stinner
2021-03-19
1
-3/+2
*
bpo-39342: Expose X509_V_FLAG_ALLOW_PROXY_CERTS in ssl module (GH-18011)
Chris Burr
2021-03-18
1
-0/+2
*
bpo-41361: Optimized argument parsing for deque_rotate (GH-24796)
Dennis Sweeney
2021-03-16
1
-1/+12
*
bpo-43439: Wrapt the tuple in the audit events for the gc module (GH-24836)
Pablo Galindo
2021-03-14
1
-2/+2
*
bpo-43444: Move sqlite3 MODULE_NAME from setup.py to module.h (GH-24801)
Erlend Egeberg Aasland
2021-03-13
3
-4/+3
*
bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755)
Antoine Pitrou
2021-03-11
2
-37/+68
*
bpo-43439: Add audit hooks for gc functions (GH-24794)
Pablo Galindo
2021-03-10
1
-0/+11
*
bpo-43406: Fix possible race condition where ``PyErr_CheckSignals`` tries to ...
Antoine Pitrou
2021-03-05
1
-1/+25
*
bpo-43369: sqlite3_column_{text,blob} failures now raise MemoryError (GH-24723)
Erlend Egeberg Aasland
2021-03-04
1
-10/+23
*
bpo-43394: Fix -Wstrict-prototypes warnings (GH-24737)
Brandt Bucher
2021-03-04
2
-6/+6
*
bpo-43368: Fix fetching empty bytes in sqlite3 (GH-24706)
Mariusz Felisiak
2021-03-03
1
-6/+2
*
missing multiply symbol in the documentation (GH-24686)
Alperen Serkan Aksöz
2021-03-03
1
-1/+1
*
bpo-39523: Use do-while loop pysqlite_cursor_executescript() (GH-18305)
Alex Henrie
2021-03-02
1
-3/+2
*
bpo-29753: fix merging packed bitfields in ctypes struct/union (GH-19850)
Filipe Laíns
2021-02-28
1
-8/+27
*
bpo-43251: sqlite3_column_name() failures now raise MemoryError (GH-24609)
Erlend Egeberg Aasland
2021-02-28
1
-24/+29
*
bpo-43335: Update macro to check gcc version (GH-24662)
Dong-hee Na
2021-02-28
1
-2/+2
*
bpo-43294: Remove unused variables in pysqlite_connection_*() (GH-24658)
Erlend Egeberg Aasland
2021-02-26
1
-6/+4
*
bpo-43314: Remove SQLITE_OPEN_URI ifdef (GH-24637)
Erlend Egeberg Aasland
2021-02-26
1
-11/+0
*
bpo-43290: Remove workaround from pysqlite_step() (GH-24638)
Erlend Egeberg Aasland
2021-02-25
1
-9/+3
*
bpo-43260: io: Prevent large data remains in textio buffer. (GH-24592)
Inada Naoki
2021-02-21
1
-3/+17
*
bpo-43269: Remove redundant extern keywords (GH-24605)
Erlend Egeberg Aasland
2021-02-21
6
-6/+12
*
bpo-43269: Clean up sqlite3 file scope (GH-24578)
Erlend Egeberg Aasland
2021-02-21
6
-19/+37
*
bpo-43268: local_clear() uses _PyInterpreterState_GET() (GH-24583)
Victor Stinner
2021-02-19
1
-15/+14
*
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner
2021-02-19
2
-19/+19
*
bpo-43268: Replace _PyThreadState_GET() with _PyInterpreterState_GET() (GH-24...
Victor Stinner
2021-02-19
1
-1/+2
*
bpo-43258: Make sqlite3 callback functions static (GH-24574)
Erlend Egeberg Aasland
2021-02-19
1
-2/+4
*
bpo-43258: Don't allocate sqlite3 aggregate context for empty queries (GH-24569)
Erlend Egeberg Aasland
2021-02-19
1
-2/+6
*
bpo-43249: Improve scoping in _pysqlite_fetch_one_row() (GH-24565)
Erlend Egeberg Aasland
2021-02-18
1
-10/+9
*
bpo-43249: sqlite3_column_bytes() must follow sqlite_column_blob() (GH-24562)
Erlend Egeberg Aasland
2021-02-18
1
-4/+14
*
bpo-42960: Add resource.RLIMIT_KQUEUES constant from FreeBSD (GH-24251)
David CARLIER
2021-02-18
1
-0/+4
*
bpo-35134, Include: Move pytime.h to cpython/pytime.h (GH-23988)
Nicholas Sim
2021-02-16
1
-1/+0
*
bpo-42819, readline: Disable bracketed paste (GH-24108)
Dustin Rodrigues
2021-02-15
1
-0/+23
*
bpo-43210: Fix byteswap comment in sha512.module.c (GH-24518)
Erlend Egeberg Aasland
2021-02-14
1
-1/+1
*
bpo-43172: readline now passes its tests when built against libedit (GH-24499)
Gregory P. Smith
2021-02-12
2
-12/+36
*
bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c comments (GH-2...
Erlend Egeberg Aasland
2021-02-12
4
-4/+4
*
bpo-40956: Fix segfault when Connection.backup is called without target (GH-2...
Erlend Egeberg Aasland
2021-02-10
2
-21/+12
*
bpo-13501: allow choosing between readline and libedit (GH-24189)
Roland Hieber
2021-02-09
1
-3/+7
*
bpo-43132: Fix incorrect handling of PyObject_RichCompareBool() in _zoneinfo ...
Zackery Spytz
2021-02-05
1
-6/+17
*
bpo-43106: Add os.O_EVTONLY/O_FSYNC/O_SYMLINK/O_NOFOLLOW_ANY (GH-24428)
Dong-hee Na
2021-02-03
1
-1/+12
*
bpo-43108: Fix a reference leak in the curses module (GH-24420)
Pablo Galindo
2021-02-02
1
-1/+3
*
bpo-42834: Fix _json internal caches for subinterpreters (GH-24121)
Ken Jin
2021-02-01
1
-38/+39
*
bpo-41604: Don't decrement the reference count of the previous user_ptr when ...
Anonymous Maarten
2021-01-31
1
-1/+3
*
bpo-43083: Fix error handling in _sqlite3 (GH-24395)
Serhiy Storchaka
2021-01-31
2
-7/+19
[prev]
[next]