summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* closes bpo-38648: Remove double tp_free slot in Python-ast.c. (GH-17002)Max Bernstein2019-10-312-2/+0
| | | This looks like a typo due to copy-paste.
* bpo-38600: NULL -> ``NULL``. (GH-17001)Serhiy Storchaka2019-10-3027-68/+68
| | | Also fix some other formatting.
* bpo-38631: Avoid Py_FatalError() in readline (GH-16998)Victor Stinner2019-10-301-6/+11
| | | | readline now calls PyErr_NoMemory() rather than Py_FatalError() on memory allocation failure, when importing the module.
* bpo-38614: Increase asyncio test_communicate() timeout (GH-16995)Victor Stinner2019-10-302-1/+3
| | | | Fix test_communicate() of test_asyncio.test_subprocess: use support.LONG_TIMEOUT (5 minutes), instead of 1 minute.
* bpo-38640: Allow break and continue in always false while loops (GH-16992)Pablo Galindo2019-10-303-0/+29
|
* bpo-38614: Add timeout constants to test.support (GH-16964)Victor Stinner2019-10-306-26/+145
| | | | | | | | Add timeout constants to test.support: * LOOPBACK_TIMEOUT * INTERNET_TIMEOUT * SHORT_TIMEOUT * LONG_TIMEOUT
* bpo-28029: Make "".replace("", s, n) returning s for any n != 0. (GH-16981)Serhiy Storchaka2019-10-305-9/+18
|
* bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950)Serhiy Storchaka2019-10-3055-728/+728
| | | | Replace all *NULL* with ``NULL``.
* bpo-36993: Improve error reporting for zipfiles with bad zip64 extra data. ↵Daniel Hillier2019-10-293-0/+236
| | | | (GH-14656)
* bpo-38336: Remove the __set__ method restriction on data descriptors for ↵Géry Ogam2019-10-291-1/+1
| | | | attribute lookup precedence (GH-16520)
* Permutations Python code equivalent in comment was invalid for Python 3 ↵Sergey2019-10-291-3/+6
| | | | (GH-16927)
* bpo-38626: Add comment explaining why __lt__ is used. (GH-16978)Raymond Hettinger2019-10-291-0/+2
| | | https://bugs.python.org/issue38626
* Fix asyncio.wait() 3.8 whatsnew entry (GH-16975)Kyle Stanley2019-10-291-1/+2
|
* Remove code commented for more than 10 years (GH-16965)Victor Stinner2019-10-282-115/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | test_urllib commented since 2007: commit d9880d07fc032884e8bd5cf3ac636d3a3778d5f7 Author: Facundo Batista <facundobatista@gmail.com> Date: Fri May 25 04:20:22 2007 +0000 Commenting out the tests until find out who can test them in one of the problematic enviroments. pynche code commented since 1998 and 2001: commit ef30092207e684bd3e74fe3d6172b97327a0a089 Author: Barry Warsaw <barry@python.org> Date: Tue Dec 15 01:04:38 1998 +0000 Added most of the mechanism to change the strips from color variations to color constants (i.e. red constant, green constant, blue constant). But I haven't hooked this up yet because the UI gets more crowded and the arrows don't reflect the correct values. Added "Go to Black" and "Go to White" buttons. commit 741eae0b3129c123ed4319d8d9e5b877b09aefa8 Author: Barry Warsaw <barry@python.org> Date: Wed Apr 18 03:51:55 2001 +0000 StripWidget.__init__(), update_yourself(): Removed some unused local variables reported by PyChecker. __togglegentype(): PyChecker accurately reported that the variable __gentypevar was unused -- actually this whole method is currently unused so comment it out.
* bpo-38589: Fixes HTML Help shortcut when Windows is not installed to C drive ↵Steve Dower2019-10-282-1/+2
| | | | (GH-16968)
* bpo-38534: Replace wrong KB number references (GH-16955)benedwards142019-10-282-5/+5
|
* bpo-38519: Internal include files missing on Windows (GH-16921)Zackery Spytz2019-10-282-6/+3
|
* bpo-37330: open() no longer accept 'U' in file mode (GH-16959)Victor Stinner2019-10-2813-96/+57
| | | | | open(), io.open(), codecs.open() and fileinput.FileInput no longer accept "U" ("universal newline") in the file mode. This flag was deprecated since Python 3.3.
* bpo-38602: Add fcntl.F_OFD_XXXX for fcntlmodule (GH-16956)Dong-hee Na2019-10-284-1/+22
|
* bpo-38592 Add pt-br switcher to Python Docs website (GH-16924)Marco Rougeth2019-10-272-0/+2
| | | | * 📜🤖 Added by blurb_it.
* bpo-38334: Fix seeking backward on an encrypted zipfile.ZipExtFile. (GH-16937)Serhiy Storchaka2019-10-273-26/+70
| | | Test by Daniel Hillier.
* bpo-37309: First idlelib/NEWS.txt for 3.9.0 (GH-16947)Terry Jan Reedy2019-10-271-1/+9
|
* bpo-34162: Last idlelib/NEWS.txt items for 3.8.0. (GH-16943)Terry Jan Reedy2019-10-271-0/+9
|
* bpo-38598: Do not try to compile IDLE shell or output windows (GH-16939)Terry Jan Reedy2019-10-272-0/+8
|
* bpo-38434: Fixes some audit event documentation (GH-16932)Steve Dower2019-10-265-11/+26
|
* bpo-38557: Improve documentation for list and tuple C API. (GH-16925)Serhiy Storchaka2019-10-263-12/+19
|
* bpo-38535: Fix positions for AST nodes for calls without arguments in ↵Serhiy Storchaka2019-10-263-8/+12
| | | | decorators. (GH-16861)
* bpo-38558: Mention `:=` in conditions tutorial (GH-16919)Ammar Askar2019-10-251-4/+4
|
* Fix typo in formatter_unicode (GH-16831)Hansraj Das2019-10-251-1/+1
| | | numbers's -> number's
* bpo-33348: parse expressions after * and ** in lib2to3 (GH-6586)Zsolt Dollenstein2019-10-246-11/+14
| | | | | | | | | | These are valid even in python 2.7 https://bugs.python.org/issue33348 Automerge-Triggered-By: @gpshead
* Add missing asyncio changes from 3.8 whatsnew (GH-16911)Kyle Stanley2019-10-241-10/+85
|
* bpo-30618: add readlink to pathlib.Path (GH-8285)Girts2019-10-235-0/+41
| | | | | | | | | | | This adds a "readlink" method to pathlib.Path objects that calls through to os.readlink. https://bugs.python.org/issue30618 Automerge-Triggered-By: @gpshead
* Update URL in macOS installer copy of license (GH-16905)Ned Deily2019-10-231-1/+1
|
* bpo-34679: ProactorEventLoop only uses set_wakeup_fd() in main thread (GH-16901)Victor Stinner2019-10-233-3/+7
| | | | bpo-34679, bpo-38563: asyncio.ProactorEventLoop.close() now only calls signal.set_wakeup_fd() in the main thread.
* bpo-38555: Fix an undefined behavior. (GH-16883)Serhiy Storchaka2019-10-231-8/+7
|
* Spell Bitbucket correctly. (GH-16862)Peter Bittner2019-10-232-3/+3
|
* Replace _pysqlite_long_from_int64() with PyLong_FromLongLong() (GH-16882)Sergey Fedoseev2019-10-234-20/+3
|
* bpo-38539: Finish rename of ss1.py to spreadsheet.py (GH-16896)Raymond Hettinger2019-10-231-829/+0
|
* bpo-38539: Update demo files (GH-16890)Julin S2019-10-235-21/+850
|
* bpo-38419: fix "check-c-globals" path (GH-16680)AMIR2019-10-231-1/+1
|
* bpo-38466: Fix threading.excepthook doc (GH-16891)Daniel Baskal2019-10-221-2/+2
|
* bpo-37415: Fix stdatomic.h header check for ICC compiler (GH-16717)Victor Stinner2019-10-224-19/+15
| | | | | | | | | | | | Fix stdatomic.h header check for ICC compiler: the ICC implementation lacks atomic_uintptr_t type which is needed by Python. Test: * atomic_int and atomic_uintptr_t types * atomic_load_explicit() and atomic_store_explicit() * memory_order_relaxed and memory_order_seq_cst constants But don't test ATOMIC_VAR_INIT(): it's not used in Python.
* Bump Sphinx to 2.2.0. (GH-16532)Julien Palard2019-10-225-6/+6
|
* bpo-38303: Make audioop extension module PEP-384 compatible (GH-16497)Tyler Kieft2019-10-223-55/+79
| | | | | | | https://bugs.python.org/issue38303 Automerge-Triggered-By: @encukou
* Fix Zope URL (GH-16880)Kyle Stanley2019-10-221-1/+1
|
* bpo-31202: Preserve case of literal parts in Path.glob() on Windows. (GH-16860)Serhiy Storchaka2019-10-213-18/+26
|
* visit_reachable: replace release-mode test with an assert. (GH-16866)Tim Peters2019-10-211-2/+5
| | | | | | | It should be impossible for an untracked object to have the collecting flag set. Back when state was stored in gc_refs, it obviously was impossible (gc_refs couldn't possibly have a positive & negative value simultaneously). While the _implementation_ of "state" has gotten much more complicated, it's still _logically_ just as impossible.
* bpo-38540: Fix possible leak in PyArg_Parse for "es#" and "et#". (GH-16869)Serhiy Storchaka2019-10-212-2/+29
|
* bpo-38493: Add os.CLD_KILLED and os.CLD_STOPPED. (GH-16821)Dong-hee Na2019-10-215-0/+29
|
* bpo-27961: Replace PY_LONG_LONG with long long. (GH-15386)Sergey Fedoseev2019-10-214-6/+6
|