summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-34412: Make signal.strsignal() work on HP-UX (GH-8786)Michael Osipov2018-08-231-2/+20
* bpo-34207: Fix pymain_read_conf() for UTF-8 Mode (GH-8868)Victor Stinner2018-08-231-0/+6
* bpo-34462: Add missing NULL check to _copy_raw_string() (GH-8863)Alexey Izbyshev2018-08-221-1/+1
* bpo-2122: Make mmap.flush() behave same on all platforms (GH-8692)Berker Peksag2018-08-221-4/+7
* bpo-34456: pickle: Add missing NULL check to save_global(). (GH-8851)Alexey Izbyshev2018-08-221-0/+2
* bpo-34441: Fix ABC.__subclasscheck__ crash on classes with invalid __subclass...Alexey Izbyshev2018-08-201-0/+3
* bpo-34419: selectmodule.c does not compile on HP-UX due to bpo-31938 (GH-8796)Michael Osipov2018-08-171-3/+1
* bpo-34217: Use lowercase for windows headers (GH-8472)Erik Janssens2018-08-162-2/+2
* bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH...Sergey Fedoseev2018-08-162-42/+22
* bpo-34384: Fix os.readlink() on Windows (GH-8740)Berker Peksag2018-08-151-59/+34
* Minor code clean-up. Don't alter the input vector. Use variables instead. GH-...Raymond Hettinger2018-08-121-4/+5
* Add more tests and assertions for math.hypot() and math.dist() (GH-8747)Raymond Hettinger2018-08-121-0/+1
* Factor-out common code. Also, optimize common cases by preallocating space on...Raymond Hettinger2018-08-121-41/+56
* Replace straight addition with Kahan summation and move max to the end (GH-8727)Raymond Hettinger2018-08-111-20/+45
* Fixed inconsistency in string handling in the Task C implementation (GH-8717)Alex Grönholm2018-08-091-5/+9
* bpo-34270: Make it possible to name asyncio tasks (GH-8547)Alex Grönholm2018-08-082-9/+92
* Remove unneeded PyErr_Clear() calls after PyErr_Print(). (GH-8699)Zackery Spytz2018-08-071-3/+0
* bpo-34170: Fix pymain_run_file() (GH-8660)Victor Stinner2018-08-031-6/+6
* bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)Victor Stinner2018-08-034-15/+14
* Fix docstring of Profiler class (GH-8651)INADA Naoki2018-08-031-2/+2