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-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1...
Segev Finer
2021-04-23
4
-83/+78
*
bpo-43538: Add extra arguments to os.startfile (GH-25538)
Steve Dower
2021-04-23
2
-19/+93
*
bpo-35114: Make ssl.RAND_status() return a bool (GH-20063)
Zackery Spytz
2021-04-23
2
-5/+5
*
bpo-43920: Make load_verify_locations(cadata) error message consistent (GH-25...
Christian Heimes
2021-04-23
1
-7/+16
*
bpo-43852: Improve tuple creation in sqlite3 (GH-25421)
Erlend Egeberg Aasland
2021-04-23
2
-18/+10
*
bpo-38222: Check specifically for a drive, not just a colon (GH-25540)
Steve Dower
2021-04-22
1
-2/+2
*
bpo-38822: Fixed os.stat failing on inaccessible directories. (GH-25527)
Steve Dower
2021-04-22
1
-2/+21
*
bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493)
Raymond Hettinger
2021-04-22
1
-4/+1
*
bpo-26227: Fixes decoding of host names on Windows from ANSI instead of UTF-8...
Steve Dower
2021-04-21
1
-1/+1
*
bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)
Victor Stinner
2021-04-21
13
-25/+33
*
bpo-43472: Ensure PyInterpreterState_New audit events are raised when called ...
Steve Dower
2021-04-21
1
-1/+1
*
bpo-40137: Move state lookups out of the critical path (GH-25492)
Raymond Hettinger
2021-04-21
1
-28/+36
*
bpo-43799: Also define SSLv3_method() (GH-25481)
Christian Heimes
2021-04-20
1
-0/+3
*
bpo-40849: Expose X509_V_FLAG_PARTIAL_CHAIN ssl flag (GH-20463)
l0x
2021-04-19
1
-0/+5
*
bpo-43880: Show DeprecationWarnings for deprecated ssl module features (GH-25...
Christian Heimes
2021-04-19
1
-14/+70
*
bpo-42854: Use SSL_read/write_ex() (GH-25468)
Christian Heimes
2021-04-19
1
-18/+14
*
bpo-43362: Fix invalid free and return check in _sha3 module (GH-25463)
Christian Heimes
2021-04-18
1
-3/+9
*
bpo-42333: Port _ssl extension to multiphase initialization (PEP 489) (GH-23253)
Christian Heimes
2021-04-17
4
-357/+466
*
bpo-43669: Remove OpenSSL 0.9 to 1.1.0 specific documentation (GH-25453)
Christian Heimes
2021-04-17
2
-72/+1
*
bpo-43669: PEP 644: Require OpenSSL 1.1.1 or newer (GH-23014)
Christian Heimes
2021-04-17
6
-696/+34
*
bpo-43522: Fix SSLContext.hostname_checks_common_name (GH-24899)
Christian Heimes
2021-04-17
1
-0/+5
*
bpo-43296: Handle sqlite3_value_blob() errors (GH-24674)
Erlend Egeberg Aasland
2021-04-14
1
-7/+17
*
bpo-43505: Explicitly initialize and shutdown sqlite3 (GH-25404)
Erlend Egeberg Aasland
2021-04-14
1
-11/+14
*
bpo-43265: Improve sqlite3.Connection.backup error handling (GH-24586)
Erlend Egeberg Aasland
2021-04-14
1
-45/+34
*
bpo-43752: Fix sqlite3 regression for zero-sized blobs with converters (GH-25...
Erlend Egeberg Aasland
2021-04-14
1
-11/+14
*
bpo-43799: OpenSSL 3.0.0: declare OPENSSL_API_COMPAT 1.1.1 (GH-25329)
Christian Heimes
2021-04-13
2
-24/+24
*
bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)
Victor Stinner
2021-04-10
1
-21/+90
*
bpo-43794: OpenSSL 3.0.0: set OP_IGNORE_UNEXPECTED_EOF by default (GH-25309)
Christian Heimes
2021-04-09
1
-0/+8
*
bpo-43788: Generate version specific _ssl_data.h (GH-25300)
Christian Heimes
2021-04-09
3
-0/+14966
*
bpo-43789: OpenSSL 3.0.0 Don't call passwd callback again in error case (GH-2...
Christian Heimes
2021-04-09
1
-0/+7
*
bpo-43105: Importlib now resolves relative paths when creating module spec ob...
Steve Dower
2021-04-07
2
-1/+95
*
bpo-43084: Return bool instead of int from curses.window.enclose() (GH-24398)
Serhiy Storchaka
2021-04-05
2
-12/+7
*
bpo-31956: Add start and stop parameters to array.index() (GH-25059)
Zackery Spytz
2021-04-02
2
-10/+61
*
bpo-41111: xxlimited.c defines Py_LIMITED_API (GH-25151)
Victor Stinner
2021-04-02
2
-1/+5
*
bpo-43510: Fix emitting EncodingWarning from _io module. (GH-25146)
Inada Naoki
2021-04-02
2
-13/+17
*
Revert "bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-251...
Inada Naoki
2021-03-31
1
-2/+1
*
bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-25103)
Inada Naoki
2021-03-31
1
-1/+2
*
bpo-41369: Finish updating the vendored libmpdec to version 2.5.1 (GH-24962)
Antoine Pitrou
2021-03-30
24
-116/+1967
*
bpo-33164: blake2: Fix Coverity scan (GH-25060)
Inada Naoki
2021-03-30
4
-4/+4
*
bpo-40645: Fix reference leak in the _hashopenssl extension (GH-25063)
Pablo Galindo
2021-03-29
1
-2/+3
*
bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)
Inada Naoki
2021-03-29
3
-1/+99
*
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
[next]