summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-33056 FIX leaking fd in concurrent.futures.ProcessPoolExecutor (#6084)Thomas Moreau2018-03-121-2/+9
* signal: add strsignal() (#6017)Antoine Pietri2018-03-121-0/+6
* bpo-31804: Fix multiprocessing.Process with broken standard streams (#6079)Antoine Pitrou2018-03-114-12/+45
* bpo-32970: Improve disassembly of the MAKE_FUNCTION instruction. (GH-5937)Serhiy Storchaka2018-03-112-6/+18
* bpo-32925: Optimized iterating and containing test for literal lists (GH-5842)Serhiy Storchaka2018-03-111-0/+24
* bpo-32946: Speed up "from ... import ..." from non-packages. (GH-5873)Serhiy Storchaka2018-03-111-26/+27
* bpo-32338: OrderedDict import is no longer needed in re. (#4891)Serhiy Storchaka2018-03-111-9/+4
* bpo-33026: Fix jumping out of "with" block by setting f_lineno. (#6026)Serhiy Storchaka2018-03-111-0/+28
* bpo-27645: Skip test_bad_target_in_transaction if SQLite == 3.8.7.1 (GH-6067)Berker Peksag2018-03-111-0/+2
* bpo-27645: Add support for native backup facility of SQLite (GH-4238)Emanuele Gaifas2018-03-102-2/+165
* bpo-30249: Improve struct.unpack_from() error messages (GH-6059)Xiang Zhang2018-03-101-4/+30
* bpo-33041: Fixed bytecode generation for "async for" with a complex target. (...Serhiy Storchaka2018-03-101-0/+65
* bpo-33037: Skip sending/receiving after SSL transport closing (GH-6044)Andrew Svetlov2018-03-102-21/+42
* bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002)INADA Naoki2018-03-071-0/+18
* bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988)Xiang Zhang2018-03-071-1/+2
* bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6...Yury Selivanov2018-03-062-1/+12
* bpo-32991: Restore expectation that inspect.getfile raises TypeError on names...Jason R. Coombs2018-03-052-3/+20
* bpo-33001: Prevent buffer overrun in os.symlink (GH-5989)Steve Dower2018-03-051-0/+34
* bpo-32984: IDLE - set __file__ for startup files (GH-5981)Terry Jan Reedy2018-03-051-0/+3
* bpo-32857: Raise error when tkinter after_cancel() is called with None. (GH-5...Cheryl Sabella2018-03-042-3/+114
* bpo-32981: Fix catastrophic backtracking vulns (#5955)Jamie Davis2018-03-044-4/+34
* bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930)Serhiy Storchaka2018-03-0210-103/+63
* Fixed incorrect default value for dataclass unsafe_hash. (GH-5949)Eric V. Smith2018-03-011-2/+2
* bpo-32940: IDLE: Simplify StringTranslatePseudoMapping in pyparse (GH-5862)Cheryl Sabella2018-02-282-89/+31
* bpo-30928: Update idlelib/NEWS.txt, possibly for 3.7.0b2 (GH-5932)Terry Jan Reedy2018-02-271-0/+16
* Revert "bpo-31961: subprocess now accepts path-like args (GH-4329)" (#5912)Serhiy Storchaka2018-02-272-41/+2
* bpo-31453: Add setter for min/max protocol version (#5259)Christian Heimes2018-02-272-3/+151
* bpo-32951: Disable SSLSocket/SSLObject constructor (#5864)Christian Heimes2018-02-272-78/+80
* bpo-32947: OpenSSL 1.1.1-pre1 / TLS 1.3 fixes (#5663)Christian Heimes2018-02-274-65/+108
* bpo-32960: For dataclasses, disallow inheriting frozen from non-frozen classe...Eric V. Smith2018-02-272-29/+74
* bpo-32713: Fix tarfile.itn for large/negative float values. (GH-5434)Joffrey F2018-02-272-1/+10
* bpo-32222: Fix pygettext skipping docstrings for funcs with arg typehints (GH...Tobotimus2018-02-261-0/+88
* bpo-32147: Improved perfomance of binascii.unhexlify(). (GH-4586)Sergey Fedoseev2018-02-261-0/+5
* bpo-32394: Remove some TCP options on old version Windows. (GH-5523)animalize2018-02-261-0/+22
* Revert unneccessary changes made in bpo-30296 and apply other improvements. (...Serhiy Storchaka2018-02-264-5/+6
* bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-...Serhiy Storchaka2018-02-263-1/+87
* Fix 'deecorator' typo in test/test_dataclasses (GH-5899)Terry Jan Reedy2018-02-261-1/+1
* bpo-32929: Dataclasses: Change the tri-state hash parameter to the boolean un...Eric V. Smith2018-02-262-195/+229
* bpo-32622: Native sendfile on windows (#5565)Andrew Svetlov2018-02-255-91/+368
* Delete a broken threading.local example (#5870)Aaron Gallagher2018-02-251-5/+1
* bpo-31809: test secp ECDH curves (#4036)Christian Heimes2018-02-251-0/+52
* bpo-24334: Cleanup SSLSocket (#5252)Christian Heimes2018-02-242-54/+66
* bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)Serhiy Storchaka2018-02-241-0/+4
* bpo-32819: Simplify and improve ssl.match_hostname (#5620)Christian Heimes2018-02-242-57/+114
* bpo-32916: IDLE: Change `str` to `code` in pyparse (GH-5830)Cheryl Sabella2018-02-244-102/+102
* [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128)Christian Heimes2018-02-242-32/+48
* Exhaustively test dataclass hashing when no hash= value is provided. This is ...Eric V. Smith2018-02-231-0/+73
* ipaddress: Use str.isascii() instead of frozenset (GH-5811)INADA Naoki2018-02-231-3/+2
* bpo-30028: make test.support.temp_cwd() fork-safe (GH-1066)Anselm Kruis2018-02-232-1/+34
* bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter t...Serhiy Storchaka2018-02-226-151/+174