]> granicus.if.org Git - python/log
python
5 years agobpo-35766 follow-up: Add an error check to new_type_comment() (#11766)
Guido van Rossum [Mon, 11 Feb 2019 16:10:42 +0000 (08:10 -0800)]
bpo-35766 follow-up: Add an error check to new_type_comment() (#11766)

If PyUnicode_DecodeUTF8() returns NULL, PyArena_AddPyObject() would crash.
Found by @msullivan for https://github.com/python/typed_ast/pull/93.

5 years agobpo-22062: Updated docstring and documentation for pathlib (GH-8519)
Eivind Teig [Mon, 11 Feb 2019 10:47:09 +0000 (11:47 +0100)]
bpo-22062: Updated docstring and documentation for pathlib (GH-8519)

Original patch by Mike Short

https://bugs.python.org/issue22062

5 years agoDoc sidebar: 3.6 has moved to security-fix mode. (GH-11810)
Julien Palard [Sun, 10 Feb 2019 21:27:12 +0000 (22:27 +0100)]
Doc sidebar: 3.6 has moved to security-fix mode. (GH-11810)

5 years agoFix compiler warning about non initialised variable (GH-11806)
Pablo Galindo [Sun, 10 Feb 2019 20:37:07 +0000 (20:37 +0000)]
Fix compiler warning about non initialised variable (GH-11806)

5 years agoFix division by 0 when checking for overflow in math.prod (GH-11808)
Pablo Galindo [Sun, 10 Feb 2019 19:56:58 +0000 (19:56 +0000)]
Fix division by 0 when checking for overflow in math.prod (GH-11808)

5 years agoFix compiler warnings about end_col_offset and end_lineno (GH-11735)
Ivan Levkivskyi [Sun, 10 Feb 2019 15:39:49 +0000 (15:39 +0000)]
Fix compiler warnings about end_col_offset and end_lineno (GH-11735)

5 years agoFix broken :ref: in asyncio docs (GH-11805)
Pablo Galindo [Sun, 10 Feb 2019 00:21:37 +0000 (00:21 +0000)]
Fix broken :ref: in asyncio docs (GH-11805)

5 years agoMake sure the BaseManager in test_multiprocessing is cleaned up correctly (GH-11653)
Pablo Galindo [Sat, 9 Feb 2019 17:35:05 +0000 (17:35 +0000)]
Make sure the BaseManager in test_multiprocessing is cleaned up correctly (GH-11653)

5 years agoDo not retain references to processes and managers in TestSyncManagerTypes (GH-11801)
Pablo Galindo [Sat, 9 Feb 2019 17:08:49 +0000 (17:08 +0000)]
Do not retain references to processes and managers in TestSyncManagerTypes (GH-11801)

Keeping references to processes and managers between tests makes them count as dangling processes.

5 years agobpo-35833: Revise IDLE doc for control codes sent to Shell. (GH-11799)
Terry Jan Reedy [Sat, 9 Feb 2019 03:51:51 +0000 (22:51 -0500)]
bpo-35833: Revise IDLE doc for control codes sent to Shell. (GH-11799)

Add  a code example block.

5 years agolru_cache: Add more comments. Fix comment typos. Clarify a comment. (GH-11795)
Raymond Hettinger [Sat, 9 Feb 2019 02:55:02 +0000 (18:55 -0800)]
lru_cache:  Add more comments. Fix comment typos. Clarify a comment. (GH-11795)

5 years agoRework tuple hash tests. (GH-10161)
Tim Peters [Fri, 8 Feb 2019 21:09:26 +0000 (15:09 -0600)]
Rework tuple hash tests. (GH-10161)

Add tooling that will useful in future updates, paying particular attention to difficult cases where only the upper bits on the input vary.

5 years agobpo-35903: Use autoconfig to probe for shm_open() and shm_unlink(). (#11765)
Neil Schemenauer [Fri, 8 Feb 2019 18:48:46 +0000 (10:48 -0800)]
bpo-35903: Use autoconfig to probe for shm_open() and shm_unlink(). (#11765)

Use autoconfig to probe for shm_open() and shm_unlink().  Set SHM_NEEDS_LIBRT if we must
link with librt to get the shm_* functions.  Change setup.py to use the autoconfig defines.  These
changes should make it more likely that _multiprocessing/posixshmem.c gets built correctly on
different platforms.

5 years agoComplete and neaten-up namedtuple's replacement of builtin function lookups with...
Raymond Hettinger [Fri, 8 Feb 2019 18:37:39 +0000 (10:37 -0800)]
Complete and neaten-up namedtuple's replacement of builtin function lookups with derefs (GH-11794)

5 years agoAdd What's New entry for date subclass behavior (#11790)
Paul Ganssle [Fri, 8 Feb 2019 16:02:00 +0000 (11:02 -0500)]
Add What's New entry for date subclass behavior (#11790)

This was a backwards incompatible change and should be clearly noted.

Related bugs:

bpo-32417: https://bugs.python.org/issue32417
bpo-35364: https://bugs.python.org/issue35364

5 years agobpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384)
Fish [Thu, 7 Feb 2019 19:51:59 +0000 (14:51 -0500)]
bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384)

Protect dict iterations by wrapping them with _IterationGuard in the
following methods:

- WeakValueDictionary.copy()
- WeakValueDictionary.__deepcopy__()
- WeakKeyDictionary.copy()
- WeakKeyDictionary.__deepcopy__()

5 years agobpo-35911: add cell constructor (GH-11771)
Pierre Glaser [Thu, 7 Feb 2019 19:36:48 +0000 (20:36 +0100)]
bpo-35911: add cell constructor (GH-11771)

Add a cell constructor, expose the cell type in the types module.

5 years agobpo-24209: In http.server script, rely on getaddrinfo to bind to preferred address...
Jason R. Coombs [Thu, 7 Feb 2019 13:22:45 +0000 (08:22 -0500)]
bpo-24209: In http.server script, rely on getaddrinfo to bind to preferred address based on the bind parameter. (#11767)

In http.server script, rely on getaddrinfo to bind to preferred address based on the bind parameter.

As a result, now IPv6 is used as the default (including IPv4 on dual-stack systems). Enhanced tests.

5 years agobpo-35917: Test multiprocessing manager classes and shareable types (GH-11772)
Giampaolo Rodola [Thu, 7 Feb 2019 11:03:11 +0000 (03:03 -0800)]
bpo-35917: Test multiprocessing manager classes and shareable types (GH-11772)

multiprocessing: provide unittests for manager classes and shareable types

5 years agobpo-35606: Implement math.prod (GH-11359)
Pablo Galindo [Thu, 7 Feb 2019 07:04:02 +0000 (07:04 +0000)]
bpo-35606: Implement math.prod (GH-11359)

5 years agoFix url to core-mentorship mailing list (GH-11775)
Mariatta [Wed, 6 Feb 2019 20:45:03 +0000 (12:45 -0800)]
Fix url to core-mentorship mailing list (GH-11775)

5 years agobpo-20001: update pathlib landing image (GH-11304)
Harmandeep Singh [Tue, 5 Feb 2019 10:16:13 +0000 (15:46 +0530)]
bpo-20001: update pathlib landing image (GH-11304)

5 years agoemail: use dict instead of OrderedDict (GH-11709)
Inada Naoki [Tue, 5 Feb 2019 08:05:43 +0000 (17:05 +0900)]
email: use dict instead of OrderedDict (GH-11709)

5 years agoasyncio: use dict instead of OrderedDict (GH-11710)
Inada Naoki [Tue, 5 Feb 2019 08:04:40 +0000 (17:04 +0900)]
asyncio: use dict instead of OrderedDict (GH-11710)

5 years agoFix typo (micro->nano) (GH-11759)
Raymond Hettinger [Tue, 5 Feb 2019 07:32:55 +0000 (23:32 -0800)]
Fix typo (micro->nano) (GH-11759)

5 years agobpo-35299: Fixed sysconfig and distutils during PGO profiling (GH-11744)
Steve Dower [Tue, 5 Feb 2019 01:15:13 +0000 (17:15 -0800)]
bpo-35299: Fixed sysconfig and distutils during PGO profiling (GH-11744)

5 years agobpo-35321: Set the spec origin to frozen in frozen modules (#11732)
Nina Zakharenko [Tue, 5 Feb 2019 00:56:26 +0000 (16:56 -0800)]
bpo-35321: Set the spec origin to frozen in frozen modules (#11732)

* bpo-35321: Set the spec origin to frozen in frozen modules

This fix correctly sets the spec origin to
"frozen" for the _frozen_importlib module. Note that the
origin was already correctly set in _frozen_importlib_external.

* đŸ“œđŸ€– Added by blurb_it.

5 years agobpo-32417: Make timedelta arithmetic respect subclasses (#10902)
Paul Ganssle [Mon, 4 Feb 2019 19:42:04 +0000 (14:42 -0500)]
bpo-32417: Make timedelta arithmetic respect subclasses (#10902)

* Make timedelta return subclass types

Previously timedelta would always return the `date` and `datetime`
types, regardless of what it is added to. This makes it return
an object of the type it was added to.

* Add tests for timedelta arithmetic on subclasses

* Make pure python timedelta return subclass types

* Add test for fromtimestamp with tz argument

* Add tests for subclass behavior in now

* Add news entry.

Fixes:
bpo-32417
bpo-35364

* More descriptive variable names in tests

Addresses Victor's comments

5 years agoPost 3.8.0a1
Ɓukasz Langa [Mon, 4 Feb 2019 08:39:24 +0000 (09:39 +0100)]
Post 3.8.0a1

5 years agoMerge tag 'v3.8.0a1'
Ɓukasz Langa [Mon, 4 Feb 2019 08:30:59 +0000 (09:30 +0100)]
Merge tag 'v3.8.0a1'

Python 3.8.0a1

5 years agobpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745)
Steve Dower [Mon, 4 Feb 2019 07:19:38 +0000 (23:19 -0800)]
bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745)

After reading __PYVENV_LAUNCHER__ we now set sys._base_executable value for later use.
Make the same changes for macOS to avoid extra platform checks.

5 years agobpo-35692: pathlib no longer raises when checking file and directory existence on...
Steve Dower [Mon, 4 Feb 2019 07:08:18 +0000 (23:08 -0800)]
bpo-35692: pathlib no longer raises when checking file and directory existence on drives that are not ready (GH-11746)

5 years agov3.8.0a1 v3.8.0a1
Ɓukasz Langa [Sun, 3 Feb 2019 13:17:38 +0000 (14:17 +0100)]
v3.8.0a1

5 years ago[pydoc] Regenerate topics for v3.8.0a1
Ɓukasz Langa [Sun, 3 Feb 2019 13:04:12 +0000 (14:04 +0100)]
[pydoc] Regenerate topics for v3.8.0a1

5 years ago[blurb] v3.8.0a1
Ɓukasz Langa [Sun, 3 Feb 2019 13:02:52 +0000 (14:02 +0100)]
[blurb] v3.8.0a1

5 years agobpo-35884: Add variable access benchmarking script (GH-11725)
Raymond Hettinger [Sun, 3 Feb 2019 06:54:56 +0000 (22:54 -0800)]
bpo-35884: Add variable access benchmarking script (GH-11725)

5 years agoUpdate macOS installer Welcome and ReadMe for 3.8 (GH-11748)
Ned Deily [Sun, 3 Feb 2019 05:41:20 +0000 (00:41 -0500)]
Update macOS installer Welcome and ReadMe for 3.8 (GH-11748)

5 years agobpo-35890 : Fix some API calling consistency (GH-11742)
Minmin Gong [Sun, 3 Feb 2019 04:26:55 +0000 (20:26 -0800)]
bpo-35890 : Fix some API calling consistency (GH-11742)

Unicode version of Windows APIs are used in places, but not for GetVersionEx in Python/sysmodule.c
The wcstok_s is called on Windows in Modules/main.c and PC/launcher.c, but not in Python/pathconfig.c

5 years agobpo-34691: Compile _contextvars module into main Python library (GH-11741)
Steve Dower [Sat, 2 Feb 2019 22:36:23 +0000 (14:36 -0800)]
bpo-34691: Compile _contextvars module into main Python library (GH-11741)

5 years agobpo-29734: nt._getfinalpathname handle leak (GH-740)
Mark Becwar [Sat, 2 Feb 2019 21:08:23 +0000 (16:08 -0500)]
bpo-29734: nt._getfinalpathname handle leak (GH-740)

Make sure that failure paths call CloseHandle outside of the function that failed

5 years agobpo-32560: inherit the py launcher's STARTUPINFO (GH-9000)
Shiva Saxena [Sat, 2 Feb 2019 19:21:04 +0000 (00:51 +0530)]
bpo-32560: inherit the py launcher's STARTUPINFO (GH-9000)

https://bugs.python.org/issue32560

5 years agobpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730)
Stefan Krah [Sat, 2 Feb 2019 17:57:41 +0000 (18:57 +0100)]
bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730)

5 years agobpo-33895: Relase GIL while calling functions that acquire Windows loader lock (GH...
Tony Roberts [Sat, 2 Feb 2019 17:16:42 +0000 (18:16 +0100)]
bpo-33895: Relase GIL while calling functions that acquire Windows loader lock (GH-7789)

LoadLibrary, GetProcAddress, FreeLibrary and GetModuleHandle acquire the system loader lock. Calling these while holding the GIL will cause a deadlock on the rare occasion that another thread is detaching and needs to destroy its thread state at the same time.

5 years agobpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one character...
Tzu-ping Chung [Sat, 2 Feb 2019 17:13:23 +0000 (01:13 +0800)]
bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one character (GH-4517)

Add one char to MsiSummaryInfoGetProperty() output
Based on the patch in bpo-1104 by Anthony Tuininga (atuining) and Mark McMahon (markm).

5 years agobpo-33316: PyThread_release_lock always fails (GH-6541)
native-api [Sat, 2 Feb 2019 16:22:55 +0000 (19:22 +0300)]
bpo-33316: PyThread_release_lock always fails (GH-6541)

Use correct interpretation of return value from APIs.

5 years agobpo-26256: Document algorithm speed for the Decimal module. (#4808)
Cheryl Sabella [Sat, 2 Feb 2019 14:37:39 +0000 (09:37 -0500)]
bpo-26256: Document algorithm speed for the Decimal module. (#4808)

5 years agobpo-35813: Added shared_memory submodule of multiprocessing. (#11664)
Davin Potts [Sat, 2 Feb 2019 04:52:23 +0000 (22:52 -0600)]
bpo-35813: Added shared_memory submodule of multiprocessing. (#11664)

Added shared_memory submodule to multiprocessing in time for first alpha with cross-platform tests soon to follow.

5 years agobpo-35879: Fix type comment leaks (GH-11728)
Guido van Rossum [Fri, 1 Feb 2019 23:28:13 +0000 (15:28 -0800)]
bpo-35879: Fix type comment leaks (GH-11728)

* Fix leak for # type: ignore
* Fix the type comment leak

5 years agobpo-35877: Add test for while loop named expression without parentheses (GH-11726)
Emily Morehouse [Fri, 1 Feb 2019 22:27:38 +0000 (15:27 -0700)]
bpo-35877: Add test for while loop named expression without parentheses (GH-11726)

5 years agobpo-35877: Make parenthesis optional for named expression in while statement (GH...
Xtreak [Fri, 1 Feb 2019 21:40:16 +0000 (03:10 +0530)]
bpo-35877: Make parenthesis optional for named expression in while statement (GH-11724)

* Add parenthesis optional in named expressions for while statement

* Add NEWS entry

5 years agobpo-35864: fix namedtuple._asdict() docstring (GH-11720)
Amador Pahim [Fri, 1 Feb 2019 20:38:57 +0000 (21:38 +0100)]
bpo-35864: fix namedtuple._asdict() docstring (GH-11720)

5 years agobpo-35861: Fix SyntaxWarning in test_named_expressions.py (GH-11722)
Joannah Nanjekye [Fri, 1 Feb 2019 19:58:43 +0000 (22:58 +0300)]
bpo-35861: Fix SyntaxWarning in test_named_expressions.py (GH-11722)

5 years agobpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11714)
Guido van Rossum [Fri, 1 Feb 2019 19:37:34 +0000 (11:37 -0800)]
bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11714)

See https://github.com/python/cpython/pull/11645/files/229874c612df868e7ae3e997e159915f49d16542#r252631862

https://bugs.python.org/issue35766

5 years agobpo-35537: Fix function name in os.posix_spawnp() errors (GH-11719)
Victor Stinner [Fri, 1 Feb 2019 14:47:24 +0000 (15:47 +0100)]
bpo-35537: Fix function name in os.posix_spawnp() errors (GH-11719)

5 years agobpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718)
Victor Stinner [Fri, 1 Feb 2019 10:40:26 +0000 (11:40 +0100)]
bpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718)

The test fails. Skip the test until a fix can be found.

5 years agobpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH-11608)
Joannah Nanjekye [Fri, 1 Feb 2019 10:05:22 +0000 (13:05 +0300)]
bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH-11608)

5 years agoSpeed-up argument parsing for common cases in deque.__init__()(GH-11717)
Raymond Hettinger [Fri, 1 Feb 2019 06:13:43 +0000 (22:13 -0800)]
Speed-up argument parsing for common cases in deque.__init__()(GH-11717)

5 years agoConsistently move the misses update to just before the user function call (GH-11715)
Raymond Hettinger [Thu, 31 Jan 2019 23:03:38 +0000 (15:03 -0800)]
Consistently move the misses update to just before the user function call (GH-11715)

5 years agobpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum [Thu, 31 Jan 2019 11:40:27 +0000 (03:40 -0800)]
bpo-35766: Merge typed_ast back into CPython (GH-11645)

5 years agodoc: http: Fix enum name for status code 416 (GH-11689)
Phil Jones [Thu, 31 Jan 2019 10:08:57 +0000 (10:08 +0000)]
doc: http: Fix enum name for status code 416 (GH-11689)

5 years agobpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708)
Raymond Hettinger [Thu, 31 Jan 2019 08:59:50 +0000 (00:59 -0800)]
bpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708)

* Change from OrderedDict to a regular dict

* Add blurb

5 years agobpo-33504: fix wrong "versionchanged" (GH-11712)
Inada Naoki [Thu, 31 Jan 2019 08:53:48 +0000 (17:53 +0900)]
bpo-33504: fix wrong "versionchanged" (GH-11712)

5 years agobpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014)
Michael Selik [Thu, 31 Jan 2019 08:47:53 +0000 (00:47 -0800)]
bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014)

5 years agobpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700)
Steve Dower [Wed, 30 Jan 2019 21:49:14 +0000 (13:49 -0800)]
bpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700)

5 years agoDocument differences between random.choices() and random.choice(). (GH-11703)
Raymond Hettinger [Wed, 30 Jan 2019 21:30:20 +0000 (13:30 -0800)]
Document differences between random.choices() and random.choice(). (GH-11703)

5 years agobpo-35835: Add reference to Python 3.7 new breakpoint() function in pdb documentation...
JoĂŁo Matos [Wed, 30 Jan 2019 17:23:39 +0000 (17:23 +0000)]
bpo-35835: Add reference to Python 3.7 new breakpoint() function in pdb documentation. (GH-11691)

5 years agobpo-25592: Improve documentation of distutils data_files (GH-9767)
jdemeyer [Wed, 30 Jan 2019 15:49:39 +0000 (16:49 +0100)]
bpo-25592: Improve documentation of distutils data_files (GH-9767)

5 years agoMove float conversion into a macro. Apply to fsum (GH-11698)
Raymond Hettinger [Wed, 30 Jan 2019 04:39:53 +0000 (20:39 -0800)]
Move float conversion into a macro.  Apply to fsum (GH-11698)

5 years agosubprocess: close pipes/fds by using ExitStack (GH-11686)
Giampaolo Rodola [Tue, 29 Jan 2019 21:14:24 +0000 (22:14 +0100)]
subprocess: close pipes/fds by using ExitStack (GH-11686)

Close pipes/fds in subprocess by using ExitStack.

"In case of premature failure on X.Close() or os.close(X) the remaining pipes/fds will remain "open". Perhaps it makes sense to use contextlib.ExitStack."
- Rationale: https://github.com/python/cpython/pull/11575#discussion_r250288394

5 years agobpo-35847: RISC-V needs CTYPES_PASS_BY_REF_HACK (GH-11694)
Andreas Schwab [Tue, 29 Jan 2019 16:16:10 +0000 (17:16 +0100)]
bpo-35847: RISC-V needs CTYPES_PASS_BY_REF_HACK (GH-11694)

This fixes the ctypes.test.test_structures.StructureTestCase test.

https://bugs.python.org/issue35847

5 years agoFast path for int inputs to math.dist() and math.hypot() (GH-11692)
Raymond Hettinger [Mon, 28 Jan 2019 21:59:56 +0000 (13:59 -0800)]
Fast path for int inputs to math.dist() and math.hypot() (GH-11692)

5 years agobpo-35701: Update doc for UUID weak referencing (GH-11621)
David H [Mon, 28 Jan 2019 09:31:19 +0000 (10:31 +0100)]
bpo-35701: Update doc for UUID weak referencing (GH-11621)

5 years agoFix typo: class declaration (GH-11678)
nu_no [Sun, 27 Jan 2019 22:07:47 +0000 (23:07 +0100)]
Fix typo: class declaration (GH-11678)

5 years agoClarify U-mode deprecation in open() (GH-11646)
Nick Coghlan [Sun, 27 Jan 2019 16:21:11 +0000 (02:21 +1000)]
Clarify U-mode deprecation in open() (GH-11646)

The previous wording could be read as saying that universal
newlines mode itself was deprecated, when it's only the 'U'
character in the mode field that should be avoided.

The update also moves the description of the 'U' mode character
out of the mode table, as the longer explanation was overly
intrusive as a table entry and overshadowed the actually useful
mode characters.

5 years agoFix docstr/comment typos in _use_posix_spawn(). (GH-11684)
Gregory P. Smith [Sat, 26 Jan 2019 23:19:11 +0000 (15:19 -0800)]
Fix docstr/comment typos in _use_posix_spawn(). (GH-11684)

5 years agobpo-35780: Fix errors in lru_cache() C code (GH-11623)
Raymond Hettinger [Sat, 26 Jan 2019 08:02:00 +0000 (03:02 -0500)]
bpo-35780: Fix errors in lru_cache() C code (GH-11623)

5 years agobpo-35811: Avoid propagating venv settings when launching via py.exe (GH-11677)
Steve Dower [Fri, 25 Jan 2019 22:59:58 +0000 (14:59 -0800)]
bpo-35811: Avoid propagating venv settings when launching via py.exe (GH-11677)

5 years agobpo-35797: Fix default executable used by the multiprocessing module (GH-11676)
Steve Dower [Fri, 25 Jan 2019 22:59:12 +0000 (14:59 -0800)]
bpo-35797: Fix default executable used by the multiprocessing module (GH-11676)

5 years agobpo-34134: Advise to use imap or imap_unordered when handling long iterables. (gh...
Windson yang [Fri, 25 Jan 2019 12:01:41 +0000 (20:01 +0800)]
bpo-34134: Advise to use imap or imap_unordered when handling long iterables. (gh-8324)

5 years agobpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-11667)
Ivan Levkivskyi [Fri, 25 Jan 2019 01:39:19 +0000 (01:39 +0000)]
bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-11667)

5 years agobpo-35224: Add support for NamedExpr to unparse.py (GH-11670)
Victor Stinner [Fri, 25 Jan 2019 00:49:53 +0000 (01:49 +0100)]
bpo-35224: Add support for NamedExpr to unparse.py (GH-11670)

5 years agobpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse [Thu, 24 Jan 2019 23:49:56 +0000 (16:49 -0700)]
bpo-35224: PEP 572 Implementation (#10497)

* Add tokenization of :=
- Add token to Include/token.h. Add token to documentation in Doc/library/token.rst.
- Run `./python Lib/token.py` to regenerate Lib/token.py.
- Update Parser/tokenizer.c: add case to handle `:=`.

* Add initial usage of := in grammar.

* Update Python.asdl to match the grammar updates. Regenerated Include/Python-ast.h and Python/Python-ast.c

* Update AST and compiler files in Python/ast.c and Python/compile.c. Basic functionality, this isn't scoped properly

* Regenerate Lib/symbol.py using `./python Lib/symbol.py`

* Tests - Fix failing tests in test_parser.py due to changes in token numbers for internal representation

* Tests - Add simple test for := token

* Tests - Add simple tests for named expressions using expr and suite

* Tests - Update number of levels for nested expressions to prevent stack overflow

* Update symbol table to handle NamedExpr

* Update Grammar to allow assignment expressions in if statements.
Regenerate Python/graminit.c accordingly using `make regen-grammar`

* Tests - Add additional tests for named expressions in RoundtripLegalSyntaxTestCase, based on examples and information directly from PEP 572

Note: failing tests are currently commented out (4 out of 24 tests currently fail)

* Tests - Add temporary syntax test failure tests in test_parser.py

Note: There is an outstanding TODO for this -- syntax tests need to be
moved to a different file (presumably test_syntax.py), but this is
covering what needs to be tested at the moment, and it's more convenient
to run a single test for the time being

* Add support for allowing assignment expressions as function argument annotations. Uncomment tests for these cases because they all pass now!

* Tests - Move existing syntax tests out of test_parser.py and into test_named_expressions.py. Refactor syntax tests to use unittest

* Add TargetScopeError exception to extend SyntaxError

Note: This simply creates the TargetScopeError exception, it is not yet
used anywhere

* Tests - Update tests per PEP 572

Continue refactoring test suite:
The named expression test suite now checks for any invalid cases that
throw exceptions (no longer limited to SyntaxErrors), assignment tests
to ensure that variables are properly assigned, and scope tests to
ensure that variable availability and values are correct

Note:
- There are still tests that are marked to skip, as they are not yet
implemented
- There are approximately 300 lines of the PEP that have not yet been
addressed, though these may be deferred

* Documentation - Small updates to XXX/todo comments

- Remove XXX from child description in ast.c
- Add comment with number of previously supported nested expressions for
3.7.X in test_parser.py

* Fix assert in seq_for_testlist()

* Cleanup - Denote "Not implemented -- No keyword args" on failing test case. Fix PEP8 error for blank lines at beginning of test classes in test_parser.py

* Tests - Wrap all file opens in `with...as` to ensure files are closed

* WIP: handle f(a := 1)

* Tests and Cleanup - No longer skips keyword arg test. Keyword arg test now uses a simpler test case and does not rely on an external file. Remove print statements from ast.c

* Tests - Refactor last remaining test case that relied on on external file to use a simpler test case without the dependency

* Tests - Add better description of remaning skipped tests. Add test checking scope when using assignment expression in a function argument

* Tests - Add test for nested comprehension, testing value and scope. Fix variable name in skipped comprehension scope test

* Handle restriction of LHS for named expressions - can only assign to LHS of type NAME. Specifically, restrict assignment to tuples

This adds an alternative set_context specifically for named expressions,
set_namedexpr_context. Thus, context is now set differently for standard
assignment versus assignment for named expressions in order to handle
restrictions.

* Tests - Update negative test case for assigning to lambda to match new error message. Add negative test case for assigning to tuple

* Tests - Reorder test cases to group invalid syntax cases and named assignment target errors

* Tests - Update test case for named expression in function argument - check that result and variable are set correctly

* Todo - Add todo for TargetScopeError based on Guido's comment (https://github.com/python/cpython/commit/2b3acd37bdfc2d35e5094228c6684050d2aa8b0a#r30472562)

* Tests - Add named expression tests for assignment operator in function arguments

Note: One of two tests are skipped, as function arguments are currently treating
an assignment expression inside of parenthesis as one child, which does
not properly catch the named expression, nor does it count arguments
properly

* Add NamedStore to expr_context. Regenerate related code with `make regen-ast`

* Add usage of NamedStore to ast_for_named_expr in ast.c. Update occurances of checking for Store to also handle NamedStore where appropriate

* Add ste_comprehension to _symtable_entry to track if the namespace is a comprehension. Initialize ste_comprehension to 0. Set set_comprehension to 1 in symtable_handle_comprehension

* s/symtable_add_def/symtable_add_def_helper. Add symtable_add_def to handle grabbing st->st_cur and passing it to symtable_add_def_helper. This now allows us to call the original code from symtable_add_def by instead calling symtable_add_def_helper with a different ste.

* Refactor symtable_record_directive to take lineno and col_offset as arguments instead of stmt_ty. This allows symtable_record_directive to be used for stmt_ty and expr_ty

* Handle elevating scope for named expressions in comprehensions.

* Handle error for usage of named expression inside a class block

* Tests - No longer skip scope tests. Add additional scope tests

* Cleanup - Update error message for named expression within a comprehension within a class. Update comments. Add assert for symtable_extend_namedexpr_scope to validate that we always find at least a ModuleScope if we don't find a Class or FunctionScope

* Cleanup - Add missing case for NamedStore in expr_context_name. Remove unused var in set_namedexpr_content

* Refactor - Consolidate set_context and set_namedexpr_context to reduce duplicated code. Special cases for named expressions are handled by checking if ctx is NamedStore

* Cleanup - Add additional use cases for ast_for_namedexpr in usage comment. Fix multiple blank lines in test_named_expressions

* Tests - Remove unnecessary test case. Renumber test case function names

* Remove TargetScopeError for now. Will add back if needed

* Cleanup - Small comment nit for consistency

* Handle positional argument check with named expression

* Add TargetScopeError exception definition. Add documentation for TargetScopeError in c-api docs. Throw TargetScopeError instead of SyntaxError when using a named expression in a comprehension within a class scope

* Increase stack size for parser by 200. This is a minimal change (approx. 5kb) and should not have an impact on any systems. Update parser test to allow 99 nested levels again

* Add TargetScopeError to exception_hierarchy.txt for test_baseexception.py_

* Tests - Major update for named expression tests, both in test_named_expressions and test_parser

- Add test for TargetScopeError
- Add tests for named expressions in comprehension scope and edge cases
- Add tests for named expressions in function arguments (declarations
and call sites)
- Reorganize tests to group them more logically

* Cleanup - Remove unnecessary comment

* Cleanup - Comment nitpicks

* Explicitly disallow assignment expressions to a name inside parentheses, e.g.: ((x) := 0)

- Add check for LHS types to detect a parenthesis then a name (see note)
- Add test for this scenario
- Update tests for changed error message for named assignment to a tuple
(also, see note)

Note: This caused issues with the previous error handling for named assignment
to a LHS that contained an expression, such as a tuple. Thus, the check
for the LHS of a named expression must be changed to be more specific if
we wish to maintain the previous error messages

* Cleanup - Wrap lines more strictly in test file

* Revert "Explicitly disallow assignment expressions to a name inside parentheses, e.g.: ((x) := 0)"

This reverts commit f1531400ca7d7a2d148830c8ac703f041740896d.

* Add NEWS.d entry

* Tests - Fix error in test_pickle.test_exceptions by adding TargetScopeError to list of exceptions

* Tests - Update error message tests to reflect improved messaging convention (s/can't/cannot)

* Remove cases that cannot be reached in compile.c. Small linting update.

* Update Grammar/Tokens to add COLONEQUAL. Regenerate all files

* Update TargetScopeError PRE_INIT and POST_INIT, as this was purposefully left out when fixing rebase conflicts

* Add NamedStore back and regenerate files

* Pass along line number and end col info for named expression

* Simplify News entry

* Fix compiler warning and explicity mark fallthrough

5 years agobpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523)
RĂ©mi Lapeyre [Thu, 24 Jan 2019 19:43:13 +0000 (20:43 +0100)]
bpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523)

https://bugs.python.org/issue17467

5 years agobpo-35520: Fix build with dtrace support on certain systems. (#11194)
Jakub KulĂ­k [Thu, 24 Jan 2019 17:29:48 +0000 (18:29 +0100)]
bpo-35520: Fix build with dtrace support on certain systems. (#11194)

5 years agobpo-35767: Fix unittest.loader to allow partials as test_functions (#11600)
Jason Fried [Wed, 23 Jan 2019 20:57:25 +0000 (12:57 -0800)]
bpo-35767: Fix unittest.loader to allow partials as test_functions (#11600)

5 years agobpo-35537: subprocess can use posix_spawn with pipes (GH-11575)
Victor Stinner [Wed, 23 Jan 2019 18:00:39 +0000 (19:00 +0100)]
bpo-35537: subprocess can use posix_spawn with pipes (GH-11575)

* subprocess.Popen can now also use os.posix_spawn() with pipes,
  but only if pipe file descriptors are greater than 2.
* Fix Popen._posix_spawn(): set '_child_created' attribute to True.
* Add Popen._close_pipe_fds() helper function to factorize the code.

5 years agobpo-35713: Reorganize sys module initialization (GH-11658)
Victor Stinner [Wed, 23 Jan 2019 14:04:40 +0000 (15:04 +0100)]
bpo-35713: Reorganize sys module initialization (GH-11658)

* Rename _PySys_BeginInit() to _PySys_InitCore().
* Rename _PySys_EndInit() to _PySys_InitMain().
* Add _PySys_Create(). It calls _PySys_InitCore() which becomes
  private.
* Add _PySys_SetPreliminaryStderr().
* Rename _Py_ReadyTypes() to _PyTypes_Init().
* Misc code cleanup.

5 years agobpo-35781: Changed references to deprecated 'warn' method in logging documentation...
yuji38kwmt [Wed, 23 Jan 2019 07:27:13 +0000 (16:27 +0900)]
bpo-35781: Changed references to deprecated 'warn' method in logging documentation in favour of 'warning' (GH-11654)

5 years agobpo-35722: Updated the documentation for the 'disable_existing_loggers' parameter...
GĂ©ry Ogam [Wed, 23 Jan 2019 07:12:39 +0000 (08:12 +0100)]
bpo-35722: Updated the documentation for the 'disable_existing_loggers' parameter (GH-11525)

5 years agobpo-35726: Prevented QueueHandler formatting from affecting other handlers (GH-11537)
Manjusaka [Wed, 23 Jan 2019 07:08:38 +0000 (15:08 +0800)]
bpo-35726: Prevented QueueHandler formatting from affecting other handlers (GH-11537)

QueueHandler.prepare() now makes a copy of the record before modifying and enqueueing it, to avoid affecting other handlers in the chain.

5 years agobpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)
Victor Stinner [Tue, 22 Jan 2019 20:18:05 +0000 (21:18 +0100)]
bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)

* Split _Py_InitializeCore_impl() into subfunctions: add multiple pycore_init_xxx() functions
* Preliminary sys.stderr is now set earlier to get an usable
  sys.stderr ealier.
* Move code into _Py_Initialize_ReconfigureCore() to be able to call
  it from _Py_InitializeCore().
* Split _PyExc_Init(): create a new _PyBuiltins_AddExceptions()
  function.
* Call _PyExc_Init() earlier in _Py_InitializeCore_impl()
  and new_interpreter() to get working exceptions earlier.
* _Py_ReadyTypes() now returns _PyInitError rather than calling
  Py_FatalError().
* Misc code cleanup

5 years agobpo-35683: Improve Azure Pipelines steps (GH-11493)
Steve Dower [Tue, 22 Jan 2019 18:49:52 +0000 (10:49 -0800)]
bpo-35683: Improve Azure Pipelines steps (GH-11493)

5 years agobpo-35713: Rework Python initialization (GH-11647)
Victor Stinner [Tue, 22 Jan 2019 16:39:03 +0000 (17:39 +0100)]
bpo-35713: Rework Python initialization (GH-11647)

* The PyByteArray_Init() and PyByteArray_Fini() functions have been
  removed. They did nothing since Python 2.7.4 and Python 3.2.0, were
  excluded from the limited API (stable ABI), and were not
  documented.
* Move "_PyXXX_Init()" and "_PyXXX_Fini()" declarations from
  Include/cpython/pylifecycle.h to
  Include/internal/pycore_pylifecycle.h. Replace
  "PyAPI_FUNC(TYPE)" with "extern TYPE".
* _PyExc_Init() now returns an error on failure rather than calling
  Py_FatalError(). Move macros inside _PyExc_Init() and undefine them
  when done. Rewrite macros to make them look more like statement:
  add ";" when using them, add "do { ... } while (0)".
* _PyUnicode_Init() now returns a _PyInitError error rather than call
  Py_FatalError().
* Move stdin check from _PySys_BeginInit() to init_sys_streams().
* _Py_ReadyTypes() now returns a _PyInitError error rather than
  calling Py_FatalError().

5 years agobpo-35720: Fixing a memory leak in pymain_parse_cmdline_impl() (GH-11528)
Lucas Cimon [Tue, 22 Jan 2019 16:15:01 +0000 (17:15 +0100)]
bpo-35720: Fixing a memory leak in pymain_parse_cmdline_impl() (GH-11528)

When the loop in the pymain_read_conf function in this same file
calls pymain_init_cmdline_argv() a 2nd time, the pymain->command
buffer of wchar_t is overriden and the previously allocated memory
is never freed.

5 years agobpo-33416: Add end positions to Python AST (GH-11605)
Ivan Levkivskyi [Tue, 22 Jan 2019 11:18:22 +0000 (11:18 +0000)]
bpo-33416: Add end positions to Python AST (GH-11605)

The majority of this PR is tediously passing `end_lineno` and `end_col_offset` everywhere. Here are non-trivial points:
* It is not possible to reconstruct end positions in AST "on the fly", some information is lost after an AST node is constructed, so we need two more attributes for every AST node `end_lineno` and `end_col_offset`.
* I add end position information to both CST and AST.  Although it may be technically possible to avoid adding end positions to CST, the code becomes more cumbersome and less efficient.
* Since the end position is not known for non-leaf CST nodes while the next token is added, this requires a bit of extra care (see `_PyNode_FinalizeEndPos`). Unless I made some mistake, the algorithm should be linear.
* For statements, I "trim" the end position of suites to not include the terminal newlines and dedent (this seems to be what people would expect), for example in
  ```python
  class C:
      pass

  pass
  ```
  the end line and end column for the class definition is (2, 8).
* For `end_col_offset` I use the common Python convention for indexing, for example for `pass` the `end_col_offset` is 4 (not 3), so that `[0:4]` gives one the source code that corresponds to the node.
* I added a helper function `ast.get_source_segment()`, to get source text segment corresponding to a given AST node. It is also useful for testing.

An (inevitable) downside of this PR is that AST now takes almost 25% more memory. I think however it is probably justified by the benefits.

5 years agobpo-35758: Fix building on ARM + MSVC (gh-11531)
Minmin Gong [Mon, 21 Jan 2019 20:49:40 +0000 (12:49 -0800)]
bpo-35758: Fix building on ARM + MSVC (gh-11531)

* Disable x87 control word for non-x86 targets

On msvc, x87 control word is only available on x86 target. Need to disable it for other targets to prevent compiling problems.

* Include immintrin.h on x86 and x64 only

Immintrin.h is only available on x86 and x64. Need to disable it for other targets to prevent compiling problems.

5 years agobpo-35782: Fix error message in randrange (GH-11620)
Kumar Akshay [Mon, 21 Jan 2019 19:19:59 +0000 (00:49 +0530)]
bpo-35782: Fix error message in randrange (GH-11620)

https://bugs.python.org/issue35782

5 years agobpo-35794: Catch PermissionError in test_no_such_executable (GH-11635)
Pablo Galindo [Mon, 21 Jan 2019 14:35:43 +0000 (14:35 +0000)]
bpo-35794: Catch PermissionError in test_no_such_executable (GH-11635)

PermissionError can be raised if there are directories in the $PATH that are not accessible
when using posix_spawnp.

5 years agobpo-35772: Fix test_tarfile on ppc64 (GH-11606)
Victor Stinner [Mon, 21 Jan 2019 09:24:12 +0000 (10:24 +0100)]
bpo-35772: Fix test_tarfile on ppc64 (GH-11606)

Fix sparse file tests of test_tarfile on ppc64le with the tmpfs
filesystem.

Fix the function testing if the filesystem supports sparse files:
create a file which contains data and "holes", instead of creating a
file which contains no data.

tmpfs effective block size is a page size (tmpfs lives in the page
cache). RHEL uses 64 KiB pages on aarch64, ppc64 and ppc64le, only
s390x and x86_64 use 4 KiB pages, whereas the test punch holes of
4 KiB.

test.pythoninfo: Add resource.getpagesize().

5 years agobpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057)
Pablo Galindo [Mon, 21 Jan 2019 08:57:46 +0000 (08:57 +0000)]
bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057)

* Allow repeated deletion of unittest.mock.Mock attributes

* fixup! Allow repeated deletion of unittest.mock.Mock attributes

* fixup! fixup! Allow repeated deletion of unittest.mock.Mock attributes