summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)Serhiy Storchaka2019-08-042-5/+4
* bpo-37685: Fixed comparisons of datetime.timedelta and datetime.timezone. (GH...Serhiy Storchaka2019-08-041-5/+2
* bpo-36590: Add Bluetooth RFCOMM and support for Windows. (GH-12767)Greg Bowser2019-08-022-6/+102
* bpo-37729: gc: write stats at once (GH-15050)Inada Naoki2019-08-021-20/+25
* bpo-37695: Correct unget_wch error message. (GH-14986)Anthony Sottile2019-07-311-2/+2
* bpo-37085: Expose SocketCAN bcm_msg_head flags (#13646)karl ding2019-07-311-0/+19
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-307-10/+10
* bpo-37587: Make json.loads faster for long strings (GH-14752)Marco Paolini2019-07-301-1/+1
* bpo-37268: Add deprecation notice and a DeprecationWarning for the parser mod...Pablo Galindo2019-07-301-0/+6
* bpo-37691: Let math.dist() accept sequences and iterables for coordinates (GH...Raymond Hettinger2019-07-272-17/+39
* bpo-37502: handle default parameter for buffers argument of pickle.loads corr...Markus Mohrhard2019-07-251-1/+1
* bpo-37399: Correctly attach tail text to the last element/comment/pi (GH-14856)Stefan Behnel2019-07-241-24/+64
* Fix typos in docs, comments and test assert messages (#14872)Min ho Kim2019-07-212-2/+2
* bpo-37476: Adding tests for asutf8 and asutf8andsize (GH-14531)Hai Shi2019-07-201-0/+44
* bpo-37547: Fix a compiler warning in winconsoleio.c (GH-14785)Zackery Spytz2019-07-191-1/+1
* bpo-34749: Improved performance of binascii.a2b_base64(). (GH-9444)Sergey Fedoseev2019-07-141-86/+56
* Fix inconsequential typo in math.remainder algorithm comments. (#14746)Mark Dickinson2019-07-131-1/+1
* bpo-37358: Use vectorcall for functools.partial (GH-14284)Jeroen Demeyer2019-07-131-66/+98
* bpo-37548: Document range of atan, acos and asin (GH-14717)Giovanni Cappellotto2019-07-131-3/+6
* closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268)gescheit2019-07-132-39/+45
* Remove redundant check from arraymodule b_getitem (GH-14676)Disconnect3d2019-07-111-3/+1
* bpo-29548: no longer use PyEval_Call* functions (GH-14683)Jeroen Demeyer2019-07-112-3/+2
* bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)Jeroen Demeyer2019-07-1113-71/+56
* Rename memory.c to mpalloc.c for consistency with the header file. (#14687)Stefan Krah2019-07-102-1/+1
* Really remove vcstdint.h. (#14686)Stefan Krah2019-07-103-234/+1
* bpo-27679: Remove set_bitfields() from _ctypes_test (GH-14648)Hai Shi2019-07-091-24/+0
* bpo-37120: Fix _ssl get_num_tickets() (GH-14668)Victor Stinner2019-07-091-1/+1
* bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer2019-07-0822-102/+98
* Fix some typos (GH-14435)Min ho Kim2019-07-052-3/+3
* bpo-37493: use _PyObject_CallNoArg in more places (GH-14575)Jeroen Demeyer2019-07-045-15/+14
* bpo-37483: add _PyObject_CallOneArg() function (#14558)Jeroen Demeyer2019-07-0420-80/+59
* Put pyexpatns.h include back. bpo-37437 (GH-14539)Benjamin Peterson2019-07-021-0/+4
* bpo-37363: Add audit events on startup for the run commands (GH-14524)Steve Dower2019-07-011-0/+21
* bpo-36763: Use PyConfig_Clear() (GH-14445)Victor Stinner2019-07-011-4/+8
* bpo-37428: Don't set PHA verify flag on client side (GH-14421)Christian Heimes2019-07-011-17/+26
* bpo-29505: Add more fuzzing for re.compile, re.load and csv.reader (GH-14255)Ammar Askar2019-06-308-16/+491
* bpo-37412: Fix os.getcwd() for long path on Windows (GH-14424)Victor Stinner2019-06-281-1/+1
* bpo-20443: Fix calculate_program_full_path() warning (GH-14446)Victor Stinner2019-06-281-1/+1
* bpo-37337: Add _PyObject_VectorcallMethod() (GH-14228)Jeroen Demeyer2019-06-281-6/+13
* closes bpo-37437: Update vendorized expat to 2.2.7. (GH-14436)Benjamin Peterson2019-06-286-32/+21
* closes bpo-37420: Handle errors during iteration in os.sched_setaffinity. (GH...Brandt Bucher2019-06-271-0/+3
* bpo-37419: Fix possible segfaults when passing large sequences to os.posix_sp...Zackery Spytz2019-06-261-1/+1
* bpo-37412: os.getcwdb() now uses UTF-8 on Windows (GH-14396)Victor Stinner2019-06-261-59/+64
* bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386)Victor Stinner2019-06-263-13/+5
* bpo-37388: Development mode check encoding and errors (GH-14341)Victor Stinner2019-06-251-0/+43
* bpo-20443: _PyConfig_Read() gets the absolute path of run_filename (GH-14053)Victor Stinner2019-06-252-29/+25
* bpo-32627: Fix compile error when conflicting `_uuid` headers included (GH-11...ziheng2019-06-241-3/+6
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-242-0/+13
* bpo-37345: Add formal UDPLITE support (GH-14258)Gabe Appleton2019-06-241-0/+11
* bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)Zackery Spytz2019-06-211-1/+1