summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225)Miss Islington (bot)2018-09-121-3/+3
* bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752)Miss Islington (bot)2018-09-121-0/+6
* closes bpo-31903: Release the GIL when calling into SystemConfiguration (GH-4...Miss Islington (bot)2018-09-121-0/+6
* [3.7] closes bpo-25041: Document AF_PACKET socket address format. (GH-9207)Benjamin Peterson2018-09-121-3/+3
* Delete old expat comment. (GH-9197)Miss Islington (bot)2018-09-121-8/+0
* closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ...Miss Islington (bot)2018-09-111-4/+13
* bpo-34625: Update vendorized expat version to 2.2.6. (GH-9150)Miss Islington (bot)2018-09-114-27/+69
* bpo-32270: Don't close stdin/out/err in pass_fds (GH-6242) (GH-9148)Miss Islington (bot)2018-09-111-10/+14
* [3.7] Fix misleading mentions of tp_size in comments. (GH-9136)Benjamin Peterson2018-09-1012-16/+16
* [3.7] bpo-34604: Fix possible mojibake in pwd.getpwnam() and grp.getgrnam() (...William Grzybowski2018-09-092-2/+2
* closes bpo-34581 : Conditionalize use of __pragma in Modules/socketmodule.c. ...Miss Islington (bot)2018-09-051-2/+5
* bpo-34563: Fix for invalid assert on big output of multiprocessing.Process (G...Miss Islington (bot)2018-09-042-9/+9
* closes bpo-34555: Fix incorrectly nested test for HAVE_LINUX_VM_SOCKETS_H (GH...Miss Islington (bot)2018-09-011-24/+25
* bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979) (GH-8981)Victor Stinner2018-08-281-9/+13
* bpo-34527: POSIX locale enables the UTF-8 Mode (GH-8972) (GH-8974)Victor Stinner2018-08-281-6/+16
* [3.7] bpo-34492: Modules/main.c: Fix copy_wstrlist() (GH-8910) (GH-8922)Alexey Izbyshev2018-08-251-1/+4
* bpo-13312: Avoid int underflow in time year. (GH-8912)Miss Islington (bot)2018-08-251-0/+6
* closes bpo-34471: _datetime: Add missing NULL check to tzinfo_from_isoformat_...Miss Islington (bot)2018-08-241-1/+4
* bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate cod...Miss Islington (bot)2018-08-231-9/+72
* bpo-34207: Fix pymain_read_conf() for UTF-8 Mode (GH-8868) (GH-8870)Victor Stinner2018-08-231-1/+6
* bpo-34456: pickle: Add missing NULL check to save_global(). (GH-8851)Miss Islington (bot)2018-08-221-0/+2
* bpo-34441: Fix ABC.__subclasscheck__ crash on classes with invalid __subclass...Miss Islington (bot)2018-08-201-0/+3
* bpo-34217: Use lowercase for windows headers (GH-8472)Miss Islington (bot)2018-08-162-2/+2
* bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH...Miss Islington (bot)2018-08-162-42/+22
* [3.7] bpo-34247: Fix Python 3.7 initialization (#8659)Victor Stinner2018-08-051-105/+196
* Fix docstring of Profiler class (GH-8651)Miss Islington (bot)2018-08-031-2/+2
* bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931)Miss Islington (bot)2018-07-311-17/+20
* [3.7] bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346) (GH-...Serhiy Storchaka2018-07-318-243/+188
* bpo-34217: Use lowercase header for Windows (GH-8453)Miss Islington (bot)2018-07-301-1/+1
* bpo-34231: PYTHONBREAKPOINT is not documented on python --help (GH-8475)Steve Dower2018-07-291-0/+2
* bpo-30237: Output error when ReadConsole is canceled by CancelSynchronousIo. ...Miss Islington (bot)2018-07-291-1/+5
* bpo-29097: Forego fold detection on windows for low timestamp values (GH-2385...Miss Islington (bot)2018-07-251-1/+16
* bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043) (GH-8352)Miss Islington (bot)2018-07-211-3/+7
* bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exce...Miss Islington (bot)2018-07-171-5/+7
* prefix internal sqlite symbols with _pysqlite_ (GH-8215)Miss Islington (bot)2018-07-104-19/+19
* delete some unused pysqlite forward declarations (GH-8211)Miss Islington (bot)2018-07-101-4/+0
* Make PySimpleQueueType static. (GH-8175)Miss Islington (bot)2018-07-071-2/+2
* Make various internal _testbuffer symbols static. (GH-8160)Miss Islington (bot)2018-07-071-4/+4
* Make two PyModuleDef_Slot symbols static in _testmultiphase. (GH-8147)Miss Islington (bot)2018-07-071-2/+2
* Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127)Miss Islington (bot)2018-07-061-2/+2
* Make GenericAlias_Type and Generic_Type static. (GH-8076)Miss Islington (bot)2018-07-041-2/+2
* Don't export pending_threadfunc from _testcapi. (GH-8075)Miss Islington (bot)2018-07-041-1/+2
* bpo-25862: Fix several bugs in the _io module. (GH-8026)Miss Islington (bot)2018-06-302-8/+17
* bpo-32568: make select.epoll() and its docs consistent (GH-7840) (GH-8024)Miss Islington (bot)2018-06-301-4/+6
* bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)Miss Islington (bot)2018-06-291-0/+5
* bpo-33956: update vendored expat to 2.2.5 (GH-7925)Miss Islington (bot)2018-06-278-1465/+1353
* bpo-33916: Fix bz2 and lzma init when called twice (GH-7843)Miss Islington (bot)2018-06-232-4/+12
* bpo-33824, bpo-32030: Fix pymain_read_conf() (GH-7712)Miss Islington (bot)2018-06-151-0/+1
* bpo-29456: Fix bugs in unicodedata.normalize: u1176, u11a7 and u11c3 (GH-1958)Miss Islington (bot)2018-06-151-3/+7
* bpo-31432: Revert unrelated code changes to _ssl.c and test_ssl (GH-7650) (GH...Miss Islington (bot)2018-06-121-2/+2