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-21302: Add _PyTime_AsNanoseconds() (GH-28350)
Victor Stinner
2021-09-15
2
-43/+37
*
closes bpo-45190: Update Unicode data to version 14.0.0. (GH-28336)
Benjamin Peterson
2021-09-14
3
-30621/+31662
*
bpo-21302: Add clock_nanosleep() implementation for time.sleep() (GH-28111)
Livius
2021-09-13
1
-5/+31
*
bpo-45126: Fix ref. leak in `sqlite3.Connection.__init__` (GH-28231)
Erlend Egeberg Aasland
2021-09-12
2
-13/+49
*
bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe...
Serhiy Storchaka
2021-09-12
11
-33/+58
*
bpo-44987: Speed up unicode normalization of ASCII strings (GH-28283)
Dong-hee Na
2021-09-11
1
-0/+4
*
bpo-45163: Haiku build fix. (GH-28269)
David CARLIER
2021-09-11
1
-1/+1
*
bpo-40563: Support pathlike objects on dbm/shelve (GH-21849)
Henry-Joseph Audéoud
2021-09-10
4
-24/+12
*
bpo-45067 - Verify the version of ncurses for extended color support feature ...
Senthil Kumaran
2021-09-09
1
-2/+2
*
bpo-44219: Release the GIL during isatty syscalls (GH-28250)
Vincent Michel
2021-09-09
1
-0/+2
*
bpo-38371: Remove deprecated `tkinter` split() method (GH-28237)
Erlend Egeberg Aasland
2021-09-08
2
-211/+1
*
bpo-39573: Py_TYPE becomes a static inline function (GH-28128)
Victor Stinner
2021-09-08
1
-4/+3
*
Remove documentation for non-existing socket class attributes (GH-28029)
Matti Picus
2021-09-07
1
-3/+0
*
bpo-45012: Release GIL around stat in os.scandir (GH-28085)
Stanisław Skonieczny
2021-09-07
1
-2/+8
*
bpo-42064: Pass module state to trace, progress, and authorizer callbacks (GH...
Erlend Egeberg Aasland
2021-09-07
2
-73/+111
*
bpo-45034: Fix how upper limit is formatted for `struct.pack("H", ...)` (GH-2...
Nikita Sobolev
2021-09-07
1
-6/+6
*
bpo-44991: Normalise `sqlite3` callback naming (GH-28088)
Erlend Egeberg Aasland
2021-09-07
2
-52/+59
*
Remove unused macros from Modules/_sqlite/microprotocols.h (GH-28171)
Erlend Egeberg Aasland
2021-09-05
1
-6/+0
*
bpo-45094: Add Py_NO_INLINE macro (GH-28140)
Victor Stinner
2021-09-03
3
-4/+4
*
bpo-45082: Cleanup ctypes.c_buffer alias (GH-28129)
Victor Stinner
2021-09-02
1
-2/+2
*
bpo-43613: Faster implementation of gzip.compress and gzip.decompress (GH-27941)
Ruben Vorderman
2021-09-02
2
-13/+28
*
bpo-37330: open() no longer accept 'U' in file mode (GH-28118)
Victor Stinner
2021-09-02
2
-29/+3
*
bpo-45085: Remove the binhex module (GH-28117)
Victor Stinner
2021-09-02
2
-558/+1
*
bpo-45060: Get rid of few uses of the equality operators with None (GH-28087)
Serhiy Storchaka
2021-08-31
2
-4/+4
*
bpo-42064: Offset arguments for PyObject_Vectorcall in the _sqlite module (GH...
Petr Viktorin
2021-08-31
2
-10/+14
*
bpo-44991: Make GIL handling more explicit in `sqlite3` callbacks (GH-27934)
Erlend Egeberg Aasland
2021-08-31
1
-35/+27
*
bpo-16379: expose SQLite error codes and error names in `sqlite3` (GH-27786)
Erlend Egeberg Aasland
2021-08-30
3
-29/+153
*
bpo-44689: ctypes.util.find_library() now finds macOS 11+ system libraries wh...
Tobias Bergkvist
2021-08-30
1
-3/+26
*
bpo-44394: Update libexpat copy to 2.4.1 (GH-26945)
Victor Stinner
2021-08-29
20
-177/+1368
*
Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993)
Adam Dangoor
2021-08-27
1
-1/+1
*
bpo-41818: Add termios.tcgetwinsize(), termios.tcsetwinsize(). (GH-23686)
Soumendra Ganguly
2021-08-27
2
-1/+223
*
bpo-27334: Fix reference leak introduced by GH-26202 (GH-27942)
Erlend Egeberg Aasland
2021-08-25
1
-0/+1
*
bpo-27334: roll back transaction if sqlite3 context manager fails to commit (...
Erlend Egeberg Aasland
2021-08-25
1
-7/+21
*
bpo-44976: Lazy creation of sqlite3 result rows (GH-27884)
Erlend Egeberg Aasland
2021-08-25
2
-58/+29
*
Add tests for the C tokenizer and expose it as a private module (GH-27924)
Pablo Galindo Salgado
2021-08-24
1
-0/+4
*
bpo-42064: Pass module state to `sqlite3` UDF callbacks (GH-27456)
Erlend Egeberg Aasland
2021-08-24
2
-31/+64
*
bpo-44984: Rewrite test_null_strings in _testcapi (GH-27904)
Serhiy Storchaka
2021-08-23
1
-8/+16
*
Remove unused UNKNOWN macros from cursor.h and prepare_protocol.h (GH-27885)
Erlend Egeberg Aasland
2021-08-22
2
-2/+0
*
bpo-44965: Early exit for non-DML statements in sqlite3.Cursor.executemany() ...
Erlend Egeberg Aasland
2021-08-21
1
-8/+7
*
bpo-44079: Strip superfluous statement cache from sqlite3.Connection (GH-25998)
Erlend Egeberg Aasland
2021-08-18
4
-116/+18
*
bpo-42035: Enhance test_get_type_name() of _testcapi (GH-27649)
Hai Shi
2021-08-17
1
-0/+14
*
bpo-42035: Add PyType_GetQualName() to get a type's qualified name. (GH-27551)
Hai Shi
2021-08-17
1
-0/+41
*
bpo-44914: Add tests for some invariants of tp_version_tag (GH-27774)
Ken Jin
2021-08-16
1
-0/+18
*
bpo-44890: collect specialization stats if Py_DEBUG (GH-27731)
Irit Katriel
2021-08-12
1
-1/+1
*
bpo-44854: Remove trailing whitespaces (GH-27689)
Serhiy Storchaka
2021-08-09
4
-4/+4
*
bpo-44859: Improve error handling in sqlite3 and and raise more accurate exce...
Serhiy Storchaka
2021-08-08
4
-33/+52
*
bpo-42971: Add errno.EQFULL (macOS) (GH-24419)
Ronald Oussoren
2021-08-06
1
-0/+3
*
bpo-44839: Raise more specific errors in sqlite3 (GH-27613)
Serhiy Storchaka
2021-08-06
1
-36/+31
*
bpo-44822: Don't truncate `str`s with embedded NULL chars returned by `sqlite...
Erlend Egeberg Aasland
2021-08-05
1
-3/+10
*
bpo-41117: Cleanup subtract_refs() (GH-27593)
Victor Stinner
2021-08-04
1
-3/+3
[next]