summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-34282: Fix Enum._convert shadowing members named _convert (GH-8568)orlnub1232018-09-125-53/+96
* closes bpo-34640: Remove the TANH_PRESERVES_ZERO_SIGN configure check. (GH-9206)Benjamin Peterson2018-09-122-4/+0
* bpo-34605: Replace "pliant children" with "helpers" (GH-9195)Victor Stinner2018-09-111-1/+1
* Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187)Victor Stinner2018-09-111-4/+0
* closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point ...guoci2018-09-111-4/+4
* closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ...Oren Milman2018-09-111-0/+15
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-1116-110/+142
* closes bpo-32490: Fix filename duplication in subprocess exception message. (...Zackery Spytz2018-09-112-3/+3
* bpo-33487: improve BZ2File Deprecation and documentation. (GH-6785)Matthias Bussonnier2018-09-111-5/+9
* Lib/test/support: fix typo in docstring (GH-8506)Daniel Hahler2018-09-111-2/+2
* Remove obsolete comment about latin-1 in `normalize_encoding` (GH-8739)Anthony Sottile2018-09-111-2/+1
* bpo-32270: Don't close stdin/out/err in pass_fds (GH-6242)Gregory P. Smith2018-09-111-0/+30
* bpo-8110: Refactor platform detection in subprocess (GH-9053)Zachary Ware2018-09-101-55/+56
* bpo-33217: Raise TypeError for non-Enum lookups in Enums (GH-6651)Rahul Jha2018-09-102-4/+59
* bpo-33604: Remove deprecated HMAC default value marked for removal in 3.8 (GH...Matthias Bussonnier2018-09-102-31/+10
* closes bpo-34525: Fix smtplib's authobject() documentation (GH-8965)Sebastian Rittau2018-09-101-1/+1
* bpo-26502: Implement FrameSummary.__len__() (GH-8632)Berker Peksag2018-09-102-0/+8
* bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077)Benjamin Peterson2018-09-102-12/+78
* bpo-30977: rework code changes according to post-merge code review (GH-9106)Tal Einat2018-09-102-68/+139
* Test dict values iterator pickling with pickle.HIGHEST_PROTOCOL. (GH-9052)Sergey Fedoseev2018-09-101-1/+1
* bpo-34421 avoid unicode error in distutils logging (GH-8799)Julien Malard2018-09-081-1/+4
* bpo-20104: Change the file_actions parameter of os.posix_spawn(). (GH-6725)Serhiy Storchaka2018-09-081-29/+28
* bpo-34246: Make sure test_smtplib always cleans resources when finished (GH-9...Pablo Galindo2018-09-071-7/+47
* bpo-34246: Use no mutable default args in smtplib (GH-8554)Pablo Aguiar2018-09-072-6/+34
* bpo-34605: childs => children (GH-9102)Victor Stinner2018-09-071-1/+1
* bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)Victor Stinner2018-09-071-0/+4
* bpo-20104: Add flag capabilities to posix_spawn (GH-6693)Pablo Galindo2018-09-071-0/+143
* bpo-34605: Avoid master/slave terms (GH-9101)Victor Stinner2018-09-074-4/+4
* bpo-34605, libregrtest: Rename --slaveargs to --worker-args (GH-9099)Victor Stinner2018-09-074-15/+15
* closes bpo-34594: Don't hardcode errno values in the tests. (GH-9076)Zackery Spytz2018-09-062-3/+3
* bpo-30977: make uuid.UUID use __slots__ (GH-9078)Tal Einat2018-09-062-2/+86
* bpo-26544: Add test for platform._comparable_version(). (GH-8973)Serhiy Storchaka2018-09-041-0/+36
* bpo-34530: Fix distutils find_executable() (GH-9049)Victor Stinner2018-09-042-3/+48
* bpo-33613, test_semaphore_tracker_sigint: fix race condition (#7850)Pablo Galindo2018-09-042-12/+49
* bpo-33083 - Make math.factorial reject arguments that are not int-like (GH-6149)Pablo Galindo2018-09-031-0/+5
* bpo-26901: Fix the Argument Clinic test suite (GH-8879)Victor Stinner2018-09-031-0/+802
* bpo-34567: pythoninfo gets coreconfig (GH-9043)Victor Stinner2018-09-031-0/+12
* Fix typo in typing.py module docstring (#9014)Tim McNamara2018-09-011-1/+1
* bpo-34558: Add missing parentheses in _aix.py (GH-9017)Michael Felt2018-09-011-1/+1
* bpo-34007: Skip traceback tests if the Program Counter is not available. (GH-...Pablo Galindo2018-08-311-0/+9
* bpo-34097: Polish API design (GH-8725)Marcel Plch2018-08-312-8/+8
* bpo-34427: Fix infinite loop when calling MutableSequence.extend() on self (G...Naris R2018-08-302-0/+14
* bpo-34542: Update test certs and keys (GH-8997)Christian Heimes2018-08-3019-726/+980
* Fix TestPosixSpawn.test_close_file() (GH-8992)Victor Stinner2018-08-291-30/+34
* bpo-34523: Support surrogatepass in locale codecs (GH-8995)Victor Stinner2018-08-291-5/+113
* bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998)Victor Stinner2018-08-291-20/+19
* bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963)Victor Stinner2018-08-292-2/+49
* bpo-34485: Add _PyCoreConfig.stdio_encoding (GH-8881)Victor Stinner2018-08-291-3/+33
* bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986)Victor Stinner2018-08-291-9/+15
* bpo-34485: Enhance init_sys_streams() (GH-8978)Victor Stinner2018-08-283-17/+17