summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-24416: Return named tuple from date.isocalendar() (GH-20113)Paul Ganssle2020-05-162-5/+203
* bpo-40192: Use thread_cputime for time.thread_time to improve resolution (GH-...Batuhan Taskaya2020-05-161-0/+28
* bpo-40503: PEP 615: Tests and implementation for zoneinfo (GH-19909)Paul Ganssle2020-05-162-0/+2696
* bpo-40457: Support OpenSSL without TLS 1.0/1.1 (GH-19862)Christian Heimes2020-05-161-34/+27
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-152-27/+148
* bpo-40515: Require OPENSSL_THREADS (GH-19953)Christian Heimes2020-05-152-1/+9
* bpo-40479: Fix hashlib issue with OpenSSL 3.0.0 (GH-20107)Christian Heimes2020-05-152-8/+17
* Trivial typo fix in _tkinter.c (GH-19622)Andrew York2020-05-151-7/+7
* bpo-40602: _Py_hashtable_set() reports rehash failure (GH-20077)Victor Stinner2020-05-141-5/+9
* bpo-40602: Write unit tests for _Py_hashtable_t (GH-20091)Victor Stinner2020-05-141-0/+88
* Revert "bpo-32604: [_xxsubinterpreters] Propagate exceptions. (GH-19768)" (GH...Victor Stinner2020-05-141-1026/+121
* bpo-40549: posixmodule.c uses defining_class (GH-20075)Victor Stinner2020-05-142-137/+132
* bpo-40521: Add PyInterpreterState.unicode (GH-20081)Victor Stinner2020-05-131-1/+1
* bpo-40613: Remove compiler warning from _xxsubinterpretersmodule (GH-20069)Dong-hee Na2020-05-131-0/+8
* bpo-40609: _Py_hashtable_t values become void* (GH-20065)Victor Stinner2020-05-131-137/+78
* bpo-40609: _tracemalloc allocates traces (GH-20064)Victor Stinner2020-05-131-43/+117
* bpo-40609: Add destroy functions to _Py_hashtable (GH-20062)Victor Stinner2020-05-131-26/+25
* bpo-40609: Remove _Py_hashtable_t.key_size (GH-20060)Victor Stinner2020-05-131-67/+50
* bpo-40609: Rewrite how _tracemalloc handles domains (GH-20059)Victor Stinner2020-05-121-154/+173
* bpo-40501: Replace ctypes code in uuid with native module (GH-19948)Steve Dower2020-05-121-5/+49
* bpo-39481: remove generic classes from ipaddress/mmap (GH-20045)Batuhan Taskaya2020-05-121-2/+0
* bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044)Victor Stinner2020-05-124-737/+2
* bpo-39465: Don't access directly _Py_Identifier members (GH-20043)Victor Stinner2020-05-111-2/+2
* bpo-36346: array: Don't use deprecated APIs (GH-19653)Inada Naoki2020-05-112-49/+50
* bpo-40549: Convert posixmodule.c to multiphase init (GH-19982)Victor Stinner2020-05-102-129/+145
* bpo-40566: Apply PEP 573 to abc module (GH-20005)Dong-hee Na2020-05-091-15/+19
* bpo-40559: Add Py_DECREF to _asynciomodule.c:task_step_impl() (GH-19990)Chris Jerdonek2020-05-081-0/+4
* bpo-38787: Update structures.rst docs (PEP 573) (GH-19980)Hai Shi2020-05-071-10/+6
* bpo-32604: [_xxsubinterpreters] Propagate exceptions. (GH-19768)Eric Snow2020-05-071-121/+1018
* bpo-38787: C API for module state access from extension methods (PEP 573) (GH...Petr Viktorin2020-05-072-8/+328
* bpo-1635741: Port errno module to multiphase initialization (GH-19923)Dong-hee Na2020-05-071-310/+335
* bpo-40533: Disable GC in subinterpreters (GH-19961)Victor Stinner2020-05-061-0/+8
* bpo-40504: Allow weakrefs to lru_cache objects (GH-19938)Dennis Sweeney2020-05-051-1/+6
* bpo-40513: _xxsubinterpreters.run_string() releases the GIL (GH-19944)Victor Stinner2020-05-051-0/+15
* bpo-1635741: Port syslog module to multiphase initialization (GH-19907)Dong-hee Na2020-05-051-59/+63
* bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846)Serhiy Storchaka2020-05-022-4/+5
* bpo-40334: Make the PyPegen* and PyParser* APIs more consistent (GH-19839)Lysandros Nikolaou2020-05-011-2/+2
* bpo-32494: Use gdbm_count for dbm_length if possible (GH-19814)Dong-hee Na2020-05-011-5/+25
* bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)Victor Stinner2020-05-015-8/+37
* bpo-1635741: Fix compiler warning in _stat.c (GH-19822)Victor Stinner2020-04-301-1/+1
* bpo-40334: Fix test_peg_parser to actually use the old parser (GH-19778)Lysandros Nikolaou2020-04-291-3/+11
* bpo-40291: Add support for CAN_J1939 sockets (GH-19538)karl ding2020-04-292-0/+97
* bpo-1635741: Port _stat module to multiphase initialization (GH-19798)Dong-hee Na2020-04-291-100/+127
* bpo-40328: Add tool for generating cjk mapping headers (GH-19602)Dong-hee Na2020-04-295-3/+6
* bpo-40286: Remove C implementation of Random.randbytes() (GH-19797)Victor Stinner2020-04-292-87/+1
* bpo-9216: Expose OpenSSL FIPS_mode() as _hashlib.get_fips_mode() (GH-19703)Victor Stinner2020-04-292-1/+85
* bpo-40421: Add PyFrame_GetBack() function (GH-19765)Victor Stinner2020-04-291-4/+8
* bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)Victor Stinner2020-04-292-9/+10
* bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)Victor Stinner2020-04-291-9/+7
* bpo-38880: List interpreters associated with a channel end (GH-17323)Lewis Gaul2020-04-291-6/+83