summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-26701: Improve documentation for the rounding special methods. (#6054)Serhiy Storchaka2018-03-101-12/+18
* bpo-26701: Add documentation for __trunc__ (GH-6022)Eric Appelt2018-03-103-3/+15
* Warn that dbm.dumb.open() can crash Python (GH-6047)Brett Cannon2018-03-091-0/+5
* Warn that compile() can crash when compiling to an AST object (GH-6043)Brett Cannon2018-03-091-0/+6
* bpo-32758: Warn that ast.parse() and ast.literal_eval() can segfault the inte...Brett Cannon2018-03-091-0/+10
* controlflow: Use full example for "5 through 9" (GH-5907)Steven M. Vascellaro2018-03-091-1/+1
* bpo-33016: Fix potential use of uninitialized memory in nt._getfinalpathname ...Alexey Izbyshev2018-03-082-42/+33
* Add two missing error checks in hamt.c (GH-5851)Xiang Zhang2018-03-081-1/+7
* Fix some ipaddress documentation errors (GH-6021)Xiang Zhang2018-03-081-8/+12
* bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002)INADA Naoki2018-03-073-12/+45
* bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988)Xiang Zhang2018-03-074-23/+44
* bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6...Yury Selivanov2018-03-063-1/+13
* bpo-33005: Fix _PyGILState_Reinit() (#6001)Victor Stinner2018-03-062-4/+27
* Fix strncpy warning with gcc 8 (#5840)Siddhesh Poyarekar2018-03-061-2/+2
* 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-053-28/+73
* Add What's New for issues 32303 and 32305 (GH-5994)Barry Warsaw2018-03-051-0/+8
* bpo-32984: IDLE - set __file__ for startup files (GH-5981)Terry Jan Reedy2018-03-052-0/+10
* bpo-30147: Add re.escape changes to 3.7 What's New (GH-5978)Cheryl Sabella2018-03-041-0/+4
* bpo-32857: Raise error when tkinter after_cancel() is called with None. (GH-5...Cheryl Sabella2018-03-043-3/+115
* closes bpo-32980 Remove _PyFrame_Init (GH-5965)Thomas Nyberg2018-03-043-12/+0
* bpo-32981: Fix catastrophic backtracking vulns (#5955)Jamie Davis2018-03-046-4/+39
* Fix missing coroutine declaration in the asyncio documentation. (#5964)Joongi Kim2018-03-031-1/+1
* bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930)Serhiy Storchaka2018-03-0211-103/+70
* bpo-30607: Use external python-doc-theme (GH-2017)Jon Wayne Parrott2018-03-0112-585/+80
* Fixed incorrect default value for dataclass unsafe_hash. (GH-5949)Eric V. Smith2018-03-011-2/+2
* bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801)Alexey Izbyshev2018-03-012-7/+9
* Fix typo in logging doc: picked -> pickled (GH-5942)James Walker2018-02-281-1/+1
* bpo-32940: IDLE: Simplify StringTranslatePseudoMapping in pyparse (GH-5862)Cheryl Sabella2018-02-283-89/+32
* Fix 3.8 whatsnew changelog linkNed Deily2018-02-281-1/+1
* Minor improvements to the Windows build/release process (GH-5935)Steve Dower2018-02-283-8/+12
* 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-274-51/+9
* Update macOS installer resourcesNed Deily2018-02-273-35/+25
* bpo-32901: update macOS 10.9+ installer to Tcl/Tk 8.6.8Ned Deily2018-02-273-6/+28
* bpo-31355: Travis-CI: re-enable macOS job (#5858)Antoine Pitrou2018-02-272-4/+18
* bpo-10381, bpo-32403: What's new entries for changes to datetime (gh-5814)Paul Ganssle2018-02-271-0/+10
* bpo-31453: Add setter for min/max protocol version (#5259)Christian Heimes2018-02-276-27/+471
* bpo-32951: Disable SSLSocket/SSLObject constructor (#5864)Christian Heimes2018-02-275-84/+107
* bpo-28124: deprecate ssl.wrap_socket() (#5888)Christian Heimes2018-02-273-182/+218
* bpo-32947: OpenSSL 1.1.1-pre1 / TLS 1.3 fixes (#5663)Christian Heimes2018-02-279-74/+131
* bpo-32960: For dataclasses, disallow inheriting frozen from non-frozen classe...Eric V. Smith2018-02-273-29/+77
* bpo-32713: Fix tarfile.itn for large/negative float values. (GH-5434)Joffrey F2018-02-273-1/+11
* bpo-32222: Fix pygettext skipping docstrings for funcs with arg typehints (GH...Tobotimus2018-02-263-4/+102
* bpo-32836: Remove obsolete code from symtable pass (GH-5680)Nitish Chandra2018-02-263-26/+1
* bpo-32147: Improved perfomance of binascii.unhexlify(). (GH-4586)Sergey Fedoseev2018-02-264-33/+13
* bpo-32394: Remove some TCP options on old version Windows. (GH-5523)animalize2018-02-264-0/+101
* 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-268-19/+134
* Fix 'deecorator' typo in test/test_dataclasses (GH-5899)Terry Jan Reedy2018-02-261-1/+1