summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* bpo-34170: Cleanup pymain_run_filename() (GH-8631)Victor Stinner2018-08-021-85/+71
* bpo-34287: Do not use second argument of METH_NOARGS functions (GH-8582)jdemeyer2018-08-021-21/+21
* bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608)Victor Stinner2018-08-011-3/+3
* bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607)Victor Stinner2018-08-011-910/+13
* bpo-33499: Fix pymain_init_pycache_prefix() (GH-8596)Victor Stinner2018-08-011-10/+10
* bpo-34170: _PyCoreConfig_Read() defaults to argc=0 (GH-8595)Victor Stinner2018-08-011-0/+3
* bpo-34170: Rename _PyCoreConfig.unbuffered_stdip (GH-8594)Victor Stinner2018-08-011-11/+16
* bpo-34170: Py_Main() updates config when setting Py_InspectFlag (GH-8593)Victor Stinner2018-08-011-0/+3
* bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591)Victor Stinner2018-08-012-3/+8
* bpo-33089: Add math.dist() for computing the Euclidean distance between two p...Raymond Hettinger2018-07-312-1/+120
* bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931)Serhiy Storchaka2018-07-311-17/+20
* bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346)Serhiy Storchaka2018-07-318-204/+179
* Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494)Sergey Fedoseev2018-07-301-5/+2
* bpo-34231: PYTHONBREAKPOINT is not documented on python --help (GH-8475)Stéphane Wirtel2018-07-291-0/+2
* bpo-33089: Multidimensional math.hypot() (GH-8474)Raymond Hettinger2018-07-282-68/+64
* Remove some unused code in _pysqlite_query_execute() (GH-8495)Sergey Fedoseev2018-07-271-6/+0
* bpo-34170: Cleanup pymain_read_conf() (GH-8476)Victor Stinner2018-07-261-71/+63
* bpo-34201: Make ndarray.readonly a bool and use stricter tests in test_buffer...Serhiy Storchaka2018-07-261-1/+1
* bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic....Serhiy Storchaka2018-07-266-95/+47
* bpo-34197: Make _csv.Dialect attributes booleans. (GH-8440)Serhiy Storchaka2018-07-261-15/+16
* bpo-34170: Enhance _PyCoreConfig_Read() (GH-8468)Victor Stinner2018-07-261-66/+78
* bpo-34228: Allow PYTHONTRACEMALLOC=0 (GH-8467)Victor Stinner2018-07-251-7/+16
* bpo-29097: Forego fold detection on windows for low timestamp values (GH-2385)Ammar Askar2018-07-251-1/+16