summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-34674: Assume unistd.h exists on Unix. (GH-9290)Benjamin Peterson2018-09-142-38/+0
* Remove wording that could be deemed to be perjorative (GH-9287)Raymond Hettinger2018-09-142-4/+4
* bpo-34658: Fix rare subprocess prexec_fn fork error. (GH-9255)Gregory P. Smith2018-09-131-7/+13
* bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225)Alexey Izbyshev2018-09-121-3/+3
* bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752)Oren Milman2018-09-121-0/+6
* closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)Benjamin Peterson2018-09-123-4/+4
* Simplified implementation of _sre.ascii_iscased(). (GH-9097)Sergey Fedoseev2018-09-121-6/+1
* closes bpo-25041: Document AF_PACKET socket address format. (GH-4092)Cheryl Sabella2018-09-121-3/+3
* Delete old expat comment. (GH-9197)Benjamin Peterson2018-09-121-8/+0
* closes bpo-31903: Release the GIL when calling into SystemConfiguration (GH-4...Max BĂ©langer2018-09-111-0/+6
* bpo-34636: Use fast path for more chars in SRE category macros. (GH-9170)Sergey Fedoseev2018-09-111-3/+3
* bpo-20180: convert most of itertoolsmodule.c to use Argument Clinic (GH-9164)Tal Einat2018-09-112-219/+694
* closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ...Oren Milman2018-09-111-4/+13
* bpo-29386: Pass -1 to epoll_wait() when timeout is < -1 (GH-9040)Berker Peksag2018-09-111-8/+15
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-111-0/+2
* closes bpo-29832: Remove "getsockaddrarg" from error messages. (GH-3163)Oren Milman2018-09-111-60/+119
* bpo-34625: Update vendorized expat version to 2.2.6. (GH-9150)Benjamin Peterson2018-09-114-27/+69
* bpo-32270: Don't close stdin/out/err in pass_fds (GH-6242)Gregory P. Smith2018-09-111-10/+14
* bpo-20180: itertools.groupby Argument Clinic conversion (GH-4170)Tal Einat2018-09-102-23/+105
* Fix misleading mentions of tp_size in comments (GH-9093)Peter Eisentraut2018-09-1013-18/+18
* bpo-20104: Change the file_actions parameter of os.posix_spawn(). (GH-6725)Serhiy Storchaka2018-09-082-9/+10
* bpo-34604: Fix possible mojibake in pwd.getpwnam() and grp.getgrnam() (GH-9098)William Grzybowski2018-09-073-17/+17
* bpo-20104: Add flag capabilities to posix_spawn (GH-6693)Pablo Galindo2018-09-072-13/+166
* bpo-33625: Release GIL for grp.getgr{nam,gid} and pwd.getpw{nam,uid} (GH-7081)William Grzybowski2018-09-072-12/+195
* _sre.c: Removed unused SRE_IS_ALNUM macro (GH-9090)Sergey Fedoseev2018-09-071-2/+0
* closes bpo-34581 : Conditionalize use of __pragma in Modules/socketmodule.c. ...Erik Janssens2018-09-051-2/+5
* bpo-34563: Fix for invalid assert on big output of multiprocessing.Process (G...Alexander Buchkovsky2018-09-042-9/+9
* bpo-33083 - Make math.factorial reject arguments that are not int-like (GH-6149)Pablo Galindo2018-09-031-3/+9
* bpo-34544: pymain_read_conf() don't change LC_ALL (GH-9045)Victor Stinner2018-09-031-15/+3
* bpo-34567: pythoninfo gets coreconfig (GH-9043)Victor Stinner2018-09-032-3/+158
* bpo-34544: Fix setlocale() in pymain_read_conf() (GH-9041)Victor Stinner2018-09-031-2/+13
* Minor improvement to code clarity (GH-9036)Raymond Hettinger2018-09-021-1/+1
* closes bpo-34555: Fix incorrectly nested test for HAVE_LINUX_VM_SOCKETS_H (GH...Thomas Herzog2018-09-011-24/+25
* Simplify vector_norm() by eliminating special cases in the main loop (GH-9006)Raymond Hettinger2018-08-311-22/+18
* bpo-34523: Use _PyCoreConfig instead of globals (GH-9005)Victor Stinner2018-08-291-9/+9
* bpo-34523: Support surrogatepass in locale codecs (GH-8995)Victor Stinner2018-08-291-0/+94
* bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998)Victor Stinner2018-08-291-2/+11
* bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963)Victor Stinner2018-08-291-1/+1
* bpo-34485, Windows: LC_CTYPE set to user preference (GH-8988)Victor Stinner2018-08-291-15/+4
* Improve commutativity of math.hypot() and math.dist() (GH-8984)Raymond Hettinger2018-08-291-13/+19
* bpo-34485: Add _Py_ClearStandardStreamEncoding() (GH-8982)Victor Stinner2018-08-281-1/+1
* bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979)Victor Stinner2018-08-281-1/+3
* bpo-34485: Enhance init_sys_streams() (GH-8978)Victor Stinner2018-08-281-1/+1
* Fast path for exact floats in math.hypot() and math.dist() (GH-8949)Raymond Hettinger2018-08-271-9/+21
* Remove unneeded PyErr_Clear() in _winapi_SetNamedPipeHandleState_impl() (GH-8...Zackery Spytz2018-08-251-2/+0
* bpo-34395: Don't free allocated memory on realloc fail in load_mark() in _pic...Sergey Fedoseev2018-08-251-15/+5
* Fix upsizing of marks stack in pickle module. (GH-8860)Sergey Fedoseev2018-08-251-1/+1
* bpo-13312: Avoid int underflow in time year. (GH-8912)Gregory P. Smith2018-08-251-0/+6
* closes bpo-34471: _datetime: Add missing NULL check to tzinfo_from_isoformat_...Alexey Izbyshev2018-08-241-1/+4
* bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate cod...Paul Ganssle2018-08-231-9/+72