summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998)Serhiy Storchaka2020-09-171-2/+5
* bpo-41513: Add docs and tests for hypot() (GH-22238)Raymond Hettinger2020-09-141-7/+7
* bpo-1635741: Port cmath to multi-phase init (PEP 489) (GH-22165)Mohamed Koubaa2020-09-101-30/+48
* bpo-41687: Fix error handling in Solaris sendfile implementation (GH-22128)Jakub Kulík2020-09-091-3/+2
* bpo-1635741: port scproxy to multi-phase init (GH-22164)Mohamed Koubaa2020-09-091-13/+9
* bpo-1635741: Convert _sha256 types to heap types (GH-22134)Mohamed Koubaa2020-09-082-103/+126
* bpo-1635741: Port the termios to multi-phase init (PEP 489) (GH-22139)Mohamed Koubaa2020-09-081-81/+101
* bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909)Erlend Egeberg Aasland2020-09-072-66/+16
* bpo-1635741 port _curses_panel to multi-phase init (PEP 489) (GH-21986)Mohamed Koubaa2020-09-072-155/+271
* bpo-1635741: Port _overlapped module to multi-phase init (GH-22051)Mohamed Koubaa2020-09-071-67/+106
* bpo-1635741: Port _opcode module to multi-phase init (PEP 489) (GH-22050)Mohamed Koubaa2020-09-071-14/+7
* bpo-1635741 port zlib module to multi-phase init (GH-21995)Mohamed Koubaa2020-09-072-252/+362
* bpo-41513: Expand comments and add references for a better understanding (GH-...Raymond Hettinger2020-09-061-5/+21
* bpo-1635741: Port _sha1, _sha512, _md5 to multiphase init (GH-21818)Mohamed Koubaa2020-09-066-251/+357
* bpo-40318: Migrate to SQLite3 trace v2 API (GH-19581)Erlend Egeberg Aasland2020-09-051-0/+36
* bpo-41687: Fix sendfile implementation to work with Solaris (#22040)Jakub Kulík2020-09-051-0/+19
* bpo-41638: Improve ProgrammingError message for absent parameter. (GH-21999)Serhiy Storchaka2020-09-041-1/+1
* bpo-41713: _signal doesn't use multi-phase init (GH-22087)Victor Stinner2020-09-041-7/+13
* bpo-1635741: Port _signal module to multi-phase init (PEP 489) (GH-22049)Mohamed Koubaa2020-09-031-82/+86
* closes bpo-41689: Preserve text signature from tp_doc in C heap type creation...Benjamin Peterson2020-09-021-0/+30
* bpo-41675: Modernize siginterrupt calls (GH-22028)Pablo Galindo2020-09-021-1/+13
* bpo-1635741: Port _sha3 module to multi-phase init (GH-21855)Mohamed Koubaa2020-09-021-136/+193
* bpo-1635741: Port _blake2 module to multi-phase init (GH-21856)Mohamed Koubaa2020-09-023-118/+118
* Improve hypot() accuracy with three separate accumulators (GH-22032)Raymond Hettinger2020-09-021-4/+4
* Further improve accuracy of math.hypot() (GH-22013)Raymond Hettinger2020-08-301-3/+8
* bpo-41513: Save unnecessary steps in the hypot() calculation (#21994)Raymond Hettinger2020-08-291-5/+10
* Fix typos in comment (GH-21966)Raymond Hettinger2020-08-261-2/+2
* bpo-40077: Convert _operator to use PyType_FromSpec (GH-21954)Dong-hee Na2020-08-261-156/+142
* bpo-41513: More accurate hypot() (GH-21916)Raymond Hettinger2020-08-251-37/+111
* bpo-41568: Fix refleaks in zoneinfo subclasses (GH-21907)Paul Ganssle2020-08-171-3/+3
* Update the comment of termios.c (#21886)Soumendra Ganguly2020-08-161-1/+1
* bpo-41513: Improve speed and accuracy of math.hypot() (GH-21803)Raymond Hettinger2020-08-161-3/+38
* bpo-31122: ssl.wrap_socket() now raises ssl.SSLEOFError rather than OSError w...Dima Tisnek2020-08-151-4/+5
* bpo-40878: xlc cannot handle C99 extern inline. (GH-21887)Stefan Krah2020-08-151-1/+1
* bpo-41025: Fix subclassing for zoneinfo.ZoneInfo (GH-20965)Paul Ganssle2020-08-141-1/+1
* bpo-1635741: Port _winapi ext to multi-stage init (GH-21371)Mohamed Koubaa2020-08-131-73/+78
* Catch all skip_handler cases (GH-21842)Stefan Krah2020-08-121-3/+3
* Call randseed() before other imports in deccheck.py (GH-21834)Stefan Krah2020-08-111-8/+8
* bpo-1635741: Port multiprocessing ext to multiphase init (GH-21378)Mohamed Koubaa2020-08-111-42/+60
* Replace import_fresh_module in decimal test files (GH-21815)Stefan Krah2020-08-103-12/+9
* bpo-41324 Add a minimal decimal capsule API (#21519)Stefan Krah2020-08-103-7/+505
* bpo-41440: add os.cpu_count() support for VxWorks RTOS (GH-21685)pxinwr2020-08-071-0/+5
* bpo-36982: Add support for extended color functions in ncurses 6.1 (GH-17536)Hans Petter Jansson2020-08-042-223/+221
* Fix atexitmodule doc (GH-21456)linchiwei1232020-07-261-1/+1
* bpo-41369 Update to libmpdec-2.5.1: new features (GH-21593)Stefan Krah2020-07-222-0/+377
* bpo-41336: Fix the error handling in zoneinfo_new_instance() (GH-21546)Zackery Spytz2020-07-201-1/+7
* bpo-41288: Refactor of unpickling NEWOBJ and NEWOBJ_EX opcodes. (GH-21472)Serhiy Storchaka2020-07-181-76/+33
* bpo-40941: Unify implicit and explicit state in the frame and generator objec...Mark Shannon2020-07-171-1/+1
* bpo-41195: Add getter for Openssl security level (GH-21282)matthewhughes9342020-07-171-0/+13
* bpo-40150: Fix mismatched argument in RegisterWaitForSingleObject() call (GH-...Zackery Spytz2020-07-151-3/+2