summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-31843: sqlite3.connect() now accepts PathLike objects as database name (#...Anders Lorentsen2017-11-072-4/+9
* bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor objec...Oren Milman2017-11-071-0/+5
* bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__(...Oren Milman2017-11-071-8/+7
* Fix miscellaneous typos (#4275)luzpaz2017-11-057-13/+13
* bpo-31933: fix blake2 multi-byte params on big endian platforms (#4250)Jack O'Connor2017-11-032-4/+8
* bpo-30057: Fix potential missed signal in signal.signal(). (#4258)Antoine Pitrou2017-11-031-1/+4
* bpo-31926: fix missing *_METHODDEF statements by argument clinic (#4230)Tal Einat2017-11-032-5/+5
* bpo-31784: Implement PEP 564: add time.time_ns() (#3989)Victor Stinner2017-11-022-138/+349
* bpo-31917: Add 3 new clock identifiers (#4207)Victor Stinner2017-11-021-0/+9
* bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...stratakis2017-11-024-101/+6
* bpo-27666: Fixed stack corruption in curses.box() and curses.ungetmouse(). (#...Serhiy Storchaka2017-11-011-12/+26
* bpo-15037: Add a workaround for getkey() in curses for ncurses 5.7 and earlie...Serhiy Storchaka2017-11-011-2/+10
* bpo-31919: Fix building the curses module on OpenIndiana. (#4211)Serhiy Storchaka2017-11-011-2/+4
* Remove nested comments in blake2 (#4173)Lars Viklund2017-11-011-2/+4
* bpo-25720: Fix the method for checking pad state of curses WINDOW (#4164)Masayuki Yamamoto2017-11-011-8/+16
* bpo-18835: Cleanup pymalloc (#4200)Victor Stinner2017-10-311-7/+32
* bpo-31893: Fix errors in b9052a0f91d2e83bbc27267247a5920c82b242a3. (#4196)Serhiy Storchaka2017-10-311-4/+4
* bpo-31893: Fixed select.kqueue(). (#4166)Serhiy Storchaka2017-10-311-47/+71
* bpo-31891: Fix building the curses module on NetBSD. (#4165)Serhiy Storchaka2017-10-311-33/+40
* faulthandler: use _PyTime_t rather than double for timeout (#4139)Victor Stinner2017-10-271-20/+31
* bpo-16135: Cleanup: Code rot left over from OS/2 support (GH-4147)Erik Bray2017-10-272-12/+1
* Fix _socket module compilation on Cygwin. (#4137)Erik Bray2017-10-271-1/+1
* Fix trailing whitespaces in C files. (#4130)Serhiy Storchaka2017-10-261-1/+1
* bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327)xdegaye2017-10-261-0/+63
* fixes bpo-31866: remove code pertaining to AtheOS support (#4115)Benjamin Peterson2017-10-261-2/+0
* bpo-31845: Fix reading flags from environment (GH-4105)Nick Coghlan2017-10-251-30/+24
* bpo-30768: Recompute timeout on interrupted lock (GH-4103)Victor Stinner2017-10-244-14/+12
* bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags...Serhiy Storchaka2017-10-244-68/+160
* bpo-31827: Remove os.stat_float_times() (GH-4061)Victor Stinner2017-10-241-44/+4
* fixes bpo-31834: Use optimized code for BLAKE2 only with SSSE3+ (#4066)Michał Górny2017-10-242-2/+6
* bpo-31653: Remove deadcode in semlock_acquire() (#4091)Victor Stinner2017-10-231-4/+4
* bpo-31752: Fix possible crash in timedelta constructor called with custom int...Serhiy Storchaka2017-10-231-2/+7
* bpo-31572: Get rid of using _PyObject_HasAttrId() in pickle. (#3729)Serhiy Storchaka2017-10-221-30/+33
* bpo-31653: Don't release the GIL if we can acquire a multiprocessing semaphor...Antoine Pitrou2017-10-221-10/+20
* bpo-31781: Prevent crashes when calling methods of an uninitialized zipimport...Oren Milman2017-10-201-0/+18
* bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051)Antoine Pitrou2017-10-191-58/+156
* bpo-31806: Use _PyTime_ROUND_TIMEOUT for the timeout argument parsing in more...Pablo Galindo2017-10-183-6/+6
* time.clock() now emits a DeprecationWarning (GH-4020)Victor Stinner2017-10-171-0/+7
* bpo-31334: Fix timeout in select.poll.poll() (GH-3277)Riccardo Coccioli2017-10-171-9/+16
* bpo-31786: Make functions in the select module blocking when timeout is a sma...Pablo Galindo2017-10-172-9/+10
* bpo-31558: Add gc.freeze() (#3705)brainfvck2017-10-162-2/+134
* bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983)Victor Stinner2017-10-161-3/+4
* completly -> completely (#3999) (closes bpo-31788)Semen Zhydenko2017-10-151-1/+1
* bpo-30807: signal.setitimer() now uses _PyTime API (GH-3865)Victor Stinner2017-10-132-21/+31
* os.startfile(): add a C comment on security (#3877)Victor Stinner2017-10-131-0/+4
* bpo-28647: Update -u documentation after bpo-30404 (GH-3961)Berker Peksag2017-10-131-3/+2
* bpo-30058: Fixed buffer overflow in select.kqueue.control(). (#1095)Serhiy Storchaka2017-10-121-16/+13
* bpo-31773: time.perf_counter() uses again double (GH-3964)Victor Stinner2017-10-121-17/+11
* bpo-28157: Improvements for the time module documentation (GH-928)Cheryl Sabella2017-10-111-22/+1
* bpo-31728: Prevent crashes in _elementtree due to unsafe cleanup of Element.t...Oren Milman2017-10-101-34/+28