Victor Stinner
1d8da61f5a
bpo-38631: Avoid Py_FatalError() in readline (GH-16998)
...
readline now calls PyErr_NoMemory() rather than Py_FatalError() on
memory allocation failure, when importing the module.
2019-10-30 16:39:27 +01:00
Victor Stinner
a4ed6ed9f3
bpo-38614: Increase asyncio test_communicate() timeout (GH-16995)
...
Fix test_communicate() of test_asyncio.test_subprocess: use
support.LONG_TIMEOUT (5 minutes), instead of 1 minute.
2019-10-30 16:00:44 +01:00
Pablo Galindo
6c3e66a34b
bpo-38640: Allow break and continue in always false while loops (GH-16992)
2019-10-30 11:53:26 +00:00
Victor Stinner
24c6258269
bpo-38614: Add timeout constants to test.support (GH-16964)
...
Add timeout constants to test.support:
* LOOPBACK_TIMEOUT
* INTERNET_TIMEOUT
* SHORT_TIMEOUT
* LONG_TIMEOUT
2019-10-30 12:41:43 +01:00
Serhiy Storchaka
865c3b257f
bpo-28029: Make "".replace("", s, n) returning s for any n != 0. (GH-16981)
2019-10-30 12:03:53 +02:00
Serhiy Storchaka
25fc088607
bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950)
...
Replace all *NULL* with ``NULL``.
2019-10-30 12:03:20 +02:00
Daniel Hillier
da6ce58dd5
bpo-36993: Improve error reporting for zipfiles with bad zip64 extra data. (GH-14656)
2019-10-29 09:24:18 +02:00
Géry Ogam
4c155f738d
bpo-38336: Remove the __set__ method restriction on data descriptors for attribute lookup precedence (GH-16520)
2019-10-29 00:04:01 -07:00
Sergey
0078a0c2a5
Permutations Python code equivalent in comment was invalid for Python 3 (GH-16927)
2019-10-28 22:10:24 -07:00
Raymond Hettinger
3c88199e0b
bpo-38626: Add comment explaining why __lt__ is used. (GH-16978)
...
https://bugs.python.org/issue38626
2019-10-28 21:38:50 -07:00
Kyle Stanley
457306bddb
Fix asyncio.wait() 3.8 whatsnew entry (GH-16975)
2019-10-28 21:53:22 -04:00
Victor Stinner
ae7aa42774
Remove code commented for more than 10 years (GH-16965)
...
test_urllib commented since 2007:
commit d9880d07fc
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 ef30092207
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 741eae0b31
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.
2019-10-28 22:35:31 +01:00
Steve Dower
0ac6137dd3
bpo-38589: Fixes HTML Help shortcut when Windows is not installed to C drive (GH-16968)
2019-10-28 14:34:25 -07:00
benedwards14
794616f837
bpo-38534: Replace wrong KB number references (GH-16955)
2019-10-28 10:53:51 -07:00
Zackery Spytz
edb172a872
bpo-38519: Internal include files missing on Windows (GH-16921)
2019-10-28 10:03:27 -07:00
Victor Stinner
e471e72977
bpo-37330: open() no longer accept 'U' in file mode (GH-16959)
...
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.
2019-10-28 15:40:08 +01:00
Dong-hee Na
3bfc8e0fcc
bpo-38602: Add fcntl.F_OFD_XXXX for fcntlmodule (GH-16956)
2019-10-28 09:31:15 +02:00
Marco Rougeth
85c6f8c65c
bpo-38592 Add pt-br switcher to Python Docs website (GH-16924)
...
* 📜 🤖 Added by blurb_it.
2019-10-27 09:30:12 +01:00
Serhiy Storchaka
5c32af7522
bpo-38334: Fix seeking backward on an encrypted zipfile.ZipExtFile. (GH-16937)
...
Test by Daniel Hillier.
2019-10-27 10:22:14 +02:00
Terry Jan Reedy
a8fb9327fb
bpo-37309: First idlelib/NEWS.txt for 3.9.0 (GH-16947)
2019-10-27 01:23:30 -04:00
Terry Jan Reedy
e31a79a5b4
bpo-34162: Last idlelib/NEWS.txt items for 3.8.0. (GH-16943)
2019-10-26 22:19:57 -04:00
Terry Jan Reedy
e3f90b217a
bpo-38598: Do not try to compile IDLE shell or output windows (GH-16939)
2019-10-26 21:15:10 -04:00
Steve Dower
894e30ce0b
bpo-38434: Fixes some audit event documentation (GH-16932)
2019-10-26 13:02:30 -07:00
Serhiy Storchaka
d898d20e8c
bpo-38557: Improve documentation for list and tuple C API. (GH-16925)
2019-10-26 22:59:18 +03:00
Serhiy Storchaka
26ae9f6d3d
bpo-38535: Fix positions for AST nodes for calls without arguments in decorators. (GH-16861)
2019-10-26 16:46:05 +03:00
Ammar Askar
cb2cf06b0a
bpo-38558: Mention `:=` in conditions tutorial (GH-16919)
2019-10-25 17:20:05 -05:00
Hansraj Das
7320ec05f7
Fix typo in formatter_unicode (GH-16831)
...
numbers's -> number's
2019-10-25 09:44:02 -07:00
Zsolt Dollenstein
96b06aefe2
bpo-33348: parse expressions after * and ** in lib2to3 (GH-6586)
...
These are valid even in python 2.7
https://bugs.python.org/issue33348
Automerge-Triggered-By: @gpshead
2019-10-23 23:19:07 -07:00
Kyle Stanley
3bbb6db545
Add missing asyncio changes from 3.8 whatsnew (GH-16911)
2019-10-24 00:15:25 -04:00
Girts
a01ba333af
bpo-30618: add readlink to pathlib.Path (GH-8285)
...
This adds a "readlink" method to pathlib.Path objects that calls through
to os.readlink.
https://bugs.python.org/issue30618
Automerge-Triggered-By: @gpshead
2019-10-23 14:18:40 -07:00
Ned Deily
01659ca62c
Update URL in macOS installer copy of license (GH-16905)
2019-10-23 16:04:59 -04:00
Victor Stinner
1b53a24fb4
bpo-34679: ProactorEventLoop only uses set_wakeup_fd() in main thread (GH-16901)
...
bpo-34679, bpo-38563: asyncio.ProactorEventLoop.close() now only calls
signal.set_wakeup_fd() in the main thread.
2019-10-23 17:25:29 +02:00
Serhiy Storchaka
2e3d873d3b
bpo-38555: Fix an undefined behavior. (GH-16883)
2019-10-23 14:48:08 +03:00
Peter Bittner
d34ac30532
Spell Bitbucket correctly. (GH-16862)
2019-10-23 12:17:30 +03:00
Sergey Fedoseev
b6f5b9dd21
Replace _pysqlite_long_from_int64() with PyLong_FromLongLong() (GH-16882)
2019-10-23 11:09:01 +03:00
Raymond Hettinger
ea6041cd7f
bpo-38539: Finish rename of ss1.py to spreadsheet.py (GH-16896)
2019-10-22 21:05:02 -07:00
Julin S
a4aeb33669
bpo-38539: Update demo files (GH-16890)
2019-10-22 20:23:48 -07:00
AMIR
20bf8e08a1
bpo-38419: fix "check-c-globals" path (GH-16680)
2019-10-22 21:05:54 -03:00
Daniel Baskal
91528f40c3
bpo-38466: Fix threading.excepthook doc (GH-16891)
2019-10-22 22:37:47 +02:00
Victor Stinner
028f7349a0
bpo-37415: Fix stdatomic.h header check for ICC compiler (GH-16717)
...
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.
2019-10-22 21:53:50 +02:00
Julien Palard
c987090c73
Bump Sphinx to 2.2.0. (GH-16532)
2019-10-22 18:13:41 +02:00
Tyler Kieft
f548a3e4a2
bpo-38303: Make audioop extension module PEP-384 compatible (GH-16497)
...
https://bugs.python.org/issue38303
Automerge-Triggered-By: @encukou
2019-10-22 06:07:03 -07:00
Kyle Stanley
dfe726b1ac
Fix Zope URL (GH-16880)
2019-10-22 05:43:10 -04:00
Serhiy Storchaka
10ecbadb79
bpo-31202: Preserve case of literal parts in Path.glob() on Windows. (GH-16860)
2019-10-21 20:37:15 +03:00
Tim Peters
1e73945470
visit_reachable: replace release-mode test with an assert. (GH-16866)
...
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.
2019-10-21 11:21:35 -05:00
Serhiy Storchaka
5bc6a7c06e
bpo-38540: Fix possible leak in PyArg_Parse for "es#" and "et#". (GH-16869)
2019-10-21 11:35:07 +03:00
Dong-hee Na
2eba6ad7bf
bpo-38493: Add os.CLD_KILLED and os.CLD_STOPPED. (GH-16821)
2019-10-21 10:01:05 +03:00
Sergey Fedoseev
a9ed91e6c2
bpo-27961: Replace PY_LONG_LONG with long long. (GH-15386)
2019-10-21 09:49:48 +03:00
Serhiy Storchaka
919f0bc8c9
bpo-38208: Simplify string.Template by using __init_subclass__(). (GH-16256)
2019-10-21 09:36:21 +03:00
Hai Shi
06cd5b6acd
bpo-38465: Convert the type of exports counters to Py_ssize_t. (GH-16746)
2019-10-21 09:31:46 +03:00