summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* bpo-31432: Clarify ssl CERT_NONE/OPTIONAL/REQUIRED docs. (GH-3530) (GH-7649)Miss Islington (bot)2018-06-111-2/+2
* bpo-33812: Corrected astimezone for naive datetimes. (GH-7578) (GH-7600)Miss Islington (bot)2018-06-101-0/+11
* bpo-33770: improve base64 exception message for encoded inputs of invalid len...Miss Islington (bot)2018-06-101-1/+12
* update to Unicode 11.0.0 (closes bpo-33778) (GH-7439) (GH-7470)Miss Islington (bot)2018-06-073-25332/+27293
* bpo-33781: audioop: enhance rounding double as int (GH-7447)Miss Islington (bot)2018-06-061-11/+17
* bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381)Miss Islington (bot)2018-06-051-20/+2
* bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146) (GH...Miss Islington (bot)2018-06-011-12/+2
* bpo-33706: Fix pymain_parse_cmdline_impl() (GH-7283)Miss Islington (bot)2018-05-311-1/+1
* bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)Miss Islington (bot)2018-05-311-3/+4
* bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)Miss Islington (bot)2018-05-291-2/+2
* bpo-33623: Fix possible SIGSGV when asyncio.Future is created in __del__ (GH-...Miss Islington (bot)2018-05-281-1/+7
* bpo-21983: Fix a crash in ctypes.cast() when passed a ctypes structured data ...Miss Islington (bot)2018-05-261-1/+1
* bpo-33644: Fix signatures of tp_finalize handlers in testing code. (GH-7111)Miss Islington (bot)2018-05-262-4/+2
* bpo-32493: Fix uuid.uuid1() on FreeBSD. (GH-7099)Miss Islington (bot)2018-05-241-1/+8
* bpo-33622: Fix issues with handling errors in the GC. (GH-7078)Miss Islington (bot)2018-05-241-8/+11
* bpo-33583: Add note in PyObject_GC_Resize() doc (GH-7021)Miss Islington (bot)2018-05-211-0/+1
* bpo-33584: Fix several minor bugs in asyncio. (GH-7003) (GH-7005)Miss Islington (bot)2018-05-201-15/+21
* Fix typo in error message when decoding PYTHONPATH. (GH-6981) (GH-6993)Miss Islington (bot)2018-05-191-1/+1
* Fix Windows build of Python for latest WinSDK. (GH-6874) (GH-6952)Miss Islington (bot)2018-05-171-1/+1