summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-39648: Expand math.gcd() and math.lcm() to handle multiple arguments. (GH...Serhiy Storchaka2020-02-232-135/+110
* bpo-35950: Raise UnsupportedOperation in BufferedReader.truncate() (GH-18586)Berker Peksag2020-02-211-5/+9
* bpo-39576: Prevent memory error for overly optimistic precisions (GH-18581)Stefan Krah2020-02-212-6/+210
* Use the new recommended number of repetitions in the refleak tests. (#18569)Stefan Krah2020-02-201-1/+1
* Update runall.bat to the latest Windows build system. (#18571)Stefan Krah2020-02-201-41/+59
* Valgrind no longer supports --db-attach=yes. (#18568)Stefan Krah2020-02-201-1/+1
* bpo-39479:Add math.lcm() function: Least Common Multiple (#18547)ananthan-1232020-02-192-1/+85
* bpo-1635741: Port _bz2 extension module to multiphase initialization(PEP 489)...Hai Shi2020-02-181-21/+35
* bpo-1635741: Port _abc extension to multiphase initialization (PEP 489) (GH-1...Hai Shi2020-02-171-9/+18
* bpo-1635741: Port _contextvars module to multiphase initialization (PEP 489) ...Hai Shi2020-02-171-26/+29
* bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)Dong-hee Na2020-02-1727-43/+43
* bpo-1635741: Port _crypt extension module to multiphase initialization (PEP 4...Hai Shi2020-02-171-3/+6
* bpo-39573: Update clinic to use Py_IS_TYPE() function (GH-18507)Dong-hee Na2020-02-142-6/+6
* bpo-39184: Add audit events to functions in `fcntl`, `msvcrt`, `os`, `resourc...Saiyang Gou2020-02-135-17/+180
* closes bpo-39621: Make buf arg to md5_compress be const. (GH-18497)Andy Lester2020-02-121-2/+2
* bpo-35081: Move dtoa.h header to the internal C API (GH-18489)Victor Stinner2020-02-123-2/+4
* closes bpo-39605: Fix some casts to not cast away const. (GH-18453)Andy Lester2020-02-111-2/+2
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-1128-115/+115
* bpo-1635741: Port _codecs extension module to multiphase initialization (PEP ...Hai Shi2020-02-111-3/+7
* bpo-39590: make deque.__contains__ and deque.count hold strong references (GH...sweeneyde2020-02-091-0/+4
* bpo-39573: Use Py_TYPE() macro in ctypes.h (GH-18411)Dong-hee Na2020-02-091-2/+2
* bpo-39573: Use Py_SET_SIZE() function (GH-18402)Victor Stinner2020-02-076-28/+30
* bpo-39573: Add Py_SET_TYPE() function (GH-18394)Victor Stinner2020-02-0715-36/+47
* bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)Victor Stinner2020-02-0726-40/+40
* bpo-39573: Add Py_SET_REFCNT() function (GH-18389)Victor Stinner2020-02-071-7/+8
* bpo-39573: Use Py_REFCNT() macro (GH-18388)Victor Stinner2020-02-072-9/+11
* bpo-39184: Add audit events to command execution functions in os and pty modu...Saiyang Gou2020-02-051-7/+42
* bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346)Victor Stinner2020-02-051-0/+1
* closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18295)Philipp Gesang2020-02-041-0/+1
* bpo-39542: Simplify _Py_NewReference() (GH-18332)Victor Stinner2020-02-031-3/+5
* bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)Victor Stinner2020-02-031-10/+0
* bpo-39492: Fix a reference cycle between reducer_override and a Pickler insta...Pierre Glaser2020-02-021-4/+18
* bpo-39496: Remove redundant checks from _sqlite/cursor.c (GH-18270)Alex Henrie2020-02-011-20/+6
* bpo-39511: Fix multiprocessing semlock_acquire() (GH-18298)Victor Stinner2020-02-011-10/+11
* bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278)Victor Stinner2020-01-301-15/+1
* bpo-39497: Remove unused variable from pysqlite_cursor_executescript (GH-18271)Alex Henrie2020-01-301-3/+0
* bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276)Victor Stinner2020-01-301-5/+0
* bpo-39494: Remove extra null terminators from kwlist vars (GH-18267)Alex Henrie2020-01-302-3/+3
* bpo-39393: Misleading error message on dependent DLL resolution failure (GH-1...Zackery Spytz2020-01-281-2/+3
* bpo-38631: Avoid Py_FatalError() in GC collect() (GH-18164)Victor Stinner2020-01-241-7/+1
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-242-84/+9
* bpo-39413: Implement os.unsetenv() on Windows (GH-18163)Victor Stinner2020-01-242-41/+108
* bpo-39426: Fix outdated default and highest protocols in docs (GH-18154)Mark Dickinson2020-01-242-16/+18
* bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18...Pablo Galindo2020-01-231-9/+26
* bpo-39406: Implement os.putenv() with setenv() if available (GH-18128)Victor Stinner2020-01-222-23/+25
* bpo-39406: os.putenv() avoids putenv_dict on Windows (GH-18126)Victor Stinner2020-01-221-2/+6
* Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)Victor Stinner2020-01-222-84/+4
* bpo-39353: Deprecate the binhex module (GH-18025)Victor Stinner2020-01-222-12/+32
* bpo-39406: Add PY_PUTENV_DICT macro to posixmodule.c (GH-18106)Victor Stinner2020-01-211-15/+37
* bpo-39413: Implement os.unsetenv() on Windows (GH-18104)Victor Stinner2020-01-212-4/+82