summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-33583: Add note in PyObject_GC_Resize() doc (GH-7021)INADA Naoki2018-05-211-0/+1
* bpo-33584: Fix several minor bugs in asyncio. (GH-7003)Serhiy Storchaka2018-05-201-15/+21
* Fix typo in error message when decoding PYTHONPATH. (GH-6981)Carl Meyer2018-05-191-1/+1
* Fix Windows build of Python for latest WinSDK. (GH-6874)Carl Meyer2018-05-171-1/+1
* bpo-32604: Implement force-closing channels. (gh-6937)Eric Snow2018-05-171-21/+136
* bpo-13631: Fix the order of initialization for readline libedit on macOS. (GH...Zvezdan Petkovic2018-05-171-1/+3
* Replace _PyGC_REFS macros with higher level macros (GH-6852)INADA Naoki2018-05-171-2/+1
* bpo-32604: Improve subinterpreter tests. (#6914)Eric Snow2018-05-161-73/+177
* Remove an unneeded call into OpenSSL (GH-6887)Alex Gaynor2018-05-161-1/+0
* bpo-33454: Fix arguments parsing in _xxsubinterpreters.channel_close(). (GH-6...Serhiy Storchaka2018-05-151-7/+3
* bpo-32257: Add ssl.OP_NO_RENEGOTIATION (GH-5904)Christian Heimes2018-05-151-0/+4
* bpo-16865: Support arrays >=2GB in ctypes. (GH-3006)Segev Finer2018-05-141-8/+8
* Fixed an unused variable warning introduced in GH-6800 (GH-6816)Alex Gaynor2018-05-141-1/+0
* Remove `ifdef` check for an OpenSSL version (0.9.6) we don't support (GH-6800)Alex Gaynor2018-05-141-5/+2
* bpo-20171: Convert the _curses and _curses_panel modules to Argument Clinic. ...Serhiy Storchaka2018-05-104-1270/+6543
* bpo-21983: Fix a crash in ctypes.cast() when passed a ctypes structured data ...Oren Milman2018-05-091-1/+1
* bpo-33441: Make the sigset_t converter available in other modules. (GH-6720)Serhiy Storchaka2018-05-084-105/+138
* bpo-33332: Add signal.valid_signals() (GH-6581)Antoine Pitrou2018-05-042-6/+89
* bpo-20104: Improve error handling and fix a reference leak in os.posix_spawn(...Serhiy Storchaka2018-05-012-124/+125
* bpo-27645, sqlite: Fix integer overflow on sleep (#6594)Victor Stinner2018-04-301-4/+20
* bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar2018-04-2925-220/+216
* bpo-33383: Fix crash in get() of the dbm.ndbm database object. (#6630)Serhiy Storchaka2018-04-292-5/+5
* bpo-33329: Fix multiprocessing regression on newer glibcs (GH-6575)Antoine Pitrou2018-04-231-6/+8
* bpo-32232: by default, Setup modules are no longer built with -DPy_BUILD_CORE...xdegaye2018-04-202-20/+20
* bpo-33308: Fix a crash in the parser module when convert an ST object. (#6519)Serhiy Storchaka2018-04-181-3/+3
* bpo-33253: Fix xxsubtype.bench() to accept correct str signature. (GH-6439)Devon R2018-04-101-1/+1
* bpo-23403: Bump pickle.DEFAULT_PROTOCOL to 4 (#6355)Ɓukasz Langa2018-04-042-11/+17
* bpo-33209: End framing at the end of C implementation of pickle.Pickler.dump(...Serhiy Storchaka2018-04-031-2/+3
* Fix duplicating words words. (GH-6296)Serhiy Storchaka2018-03-281-1/+1
* bpo-32844: Fix a subprocess misredirection of a low fd (GH5689)Alexey Izbyshev2018-03-261-1/+1
* Fix error message in sqlite connection thread check. (GH-6028)Takuya Akiba2018-03-261-2/+2
* bpo-33136: Harden ssl module against CVE-2018-8970 (GH-6229)Christian Heimes2018-03-251-3/+4
* bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210)Christian Heimes2018-03-241-6/+16
* bpo-32999: ast: Convert useless check to assert (GH-6197)INADA Naoki2018-03-231-3/+1
* bpo-32999: Revert GH-6002 (fc7df0e6) (GH-6189)INADA Naoki2018-03-221-24/+11
* bpo-33018: Improve issubclass() error checking and message. (GH-5944)jab2018-03-221-0/+5
* Fix typos in mmap() error messages (GH-6173)Zackery Spytz2018-03-211-2/+2
* bpo-27645: Fix version number in 'database in transaction' fallback (GH-6131)Aviv Palivoda2018-03-181-2/+2
* bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)Marcel Plch2018-03-171-3/+49
* bpo-33021: Fix GCC 7 warning (-Wmaybe-uninitialized) in mmapmodule.c (#6117)Zackery Spytz2018-03-141-1/+1
* signal: add strsignal() (#6017)Antoine Pietri2018-03-122-1/+92
* bpo-33021: Release the GIL during fstat() calls (GH-6019)Nir Soffer2018-03-111-2/+9
* bpo-27645: Add support for native backup facility of SQLite (GH-4238)Emanuele Gaifas2018-03-102-0/+142
* bpo-30249: Improve struct.unpack_from() error messages (GH-6059)Xiang Zhang2018-03-102-8/+32
* bpo-33016: Fix potential use of uninitialized memory in nt._getfinalpathname ...Alexey Izbyshev2018-03-081-42/+32
* bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002)INADA Naoki2018-03-071-12/+25
* bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988)Xiang Zhang2018-03-071-3/+18
* bpo-33001: Prevent buffer overrun in os.symlink (GH-5989)Steve Dower2018-03-051-28/+38
* bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801)Alexey Izbyshev2018-03-011-7/+7
* bpo-31453: Add setter for min/max protocol version (#5259)Christian Heimes2018-02-271-22/+212