]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
5 years agobpo-41845: Move PyObject_GenericGetDict() back into the limited API (GH22646)
Zackery Spytz [Mon, 19 Oct 2020 22:47:37 +0000 (16:47 -0600)] 
bpo-41845: Move PyObject_GenericGetDict() back into the limited API (GH22646)

It was moved out of the limited API in 7d95e4072169911b228c9e42367afb5f17fd3db0.
This change re-enables it from 3.10, to avoid generating invalid extension modules for earlier versions.

5 years agobpo-40901: Describe what "interface name" means on Windows (GH-20694)
Jakub Stasiak [Mon, 19 Oct 2020 22:30:58 +0000 (00:30 +0200)] 
bpo-40901: Describe what "interface name" means on Windows (GH-20694)

5 years agobpo-41784: make PyUnicode_AsUTF8AndSize part of the limited API (GH-22252)
Alex Gaynor [Mon, 19 Oct 2020 22:17:50 +0000 (18:17 -0400)] 
bpo-41784: make PyUnicode_AsUTF8AndSize part of the limited API (GH-22252)

5 years agobpo-41217: Fix incorrect note in the asyncio.create_subprocess_shell() docs (GH-21360)
Zackery Spytz [Mon, 19 Oct 2020 22:08:34 +0000 (16:08 -0600)] 
bpo-41217: Fix incorrect note in the asyncio.create_subprocess_shell() docs (GH-21360)

On Windows, the default asyncio event loop is ProactorEventLoop (as of 3.8).

5 years agobpo-16396: Allow wintypes to be imported on non-Windows systems. (GH-21394)
Jason R. Coombs [Mon, 19 Oct 2020 22:06:05 +0000 (18:06 -0400)] 
bpo-16396: Allow wintypes to be imported on non-Windows systems. (GH-21394)

Co-authored-by: Christian Heimes <christian@python.org>
5 years agobpo-41292: Fixes dead link to cx_freeze from Windows FAQ (GH-21463)
Michel Samia [Mon, 19 Oct 2020 22:02:43 +0000 (00:02 +0200)] 
bpo-41292: Fixes dead link to cx_freeze from Windows FAQ (GH-21463)

5 years agoLink to the msvcrt module from the Windows FAQ (#22268)
abdo [Mon, 19 Oct 2020 21:46:21 +0000 (00:46 +0300)] 
Link to the msvcrt module from the Windows FAQ (#22268)

5 years agobpo-38320: Clarify that expectedFailure is satisfied by either failure or error of...
Irit Katriel [Mon, 19 Oct 2020 21:27:16 +0000 (22:27 +0100)] 
bpo-38320: Clarify that expectedFailure is satisfied by either failure or error of the test. (GH-22740)

5 years agobpo-42089: Sync with current cpython branch of importlib_metadata (GH-22775)
Barry Warsaw [Mon, 19 Oct 2020 21:14:21 +0000 (14:14 -0700)] 
bpo-42089: Sync with current cpython branch of importlib_metadata (GH-22775)

~~The only differences are in the test files.~~

Automerge-Triggered-By: @jaraco
5 years agobpo-42084: Language aware diff headers (GH-22776)
Raymond Hettinger [Mon, 19 Oct 2020 19:13:01 +0000 (12:13 -0700)] 
bpo-42084: Language aware diff headers (GH-22776)

5 years agobpo-41471: Ignore invalid prefix lengths in system proxy settings on macOS (GH-22762)
Ronald Oussoren [Mon, 19 Oct 2020 18:16:21 +0000 (20:16 +0200)] 
bpo-41471: Ignore invalid prefix lengths in system proxy settings on macOS (GH-22762)

5 years agobpo-42051: Reject XML entity declarations in plist files (#22760)
Ronald Oussoren [Mon, 19 Oct 2020 18:13:49 +0000 (20:13 +0200)] 
bpo-42051: Reject XML entity declarations in plist files (#22760)

5 years agobpo-39107: Updated Tcl and Tk to 8.6.10 in Windows installer (GH-22405)
Steve Dower [Mon, 19 Oct 2020 15:55:10 +0000 (16:55 +0100)] 
bpo-39107: Updated Tcl and Tk to 8.6.10 in Windows installer (GH-22405)

5 years agobpo-41192: Fix some broken anchors for audit event entries (#21310)
Saiyang Gou [Mon, 19 Oct 2020 14:52:42 +0000 (07:52 -0700)] 
bpo-41192: Fix some broken anchors for audit event entries (#21310)

5 years agoCorrect name of bytecode in change note. (GH-22723)
Mark Shannon [Mon, 19 Oct 2020 12:20:33 +0000 (13:20 +0100)] 
Correct name of bytecode in change note. (GH-22723)

5 years agobpo-19270: Fixed sched.scheduler.cancel to cancel correct event (GH-22729)
Bar Harel [Mon, 19 Oct 2020 07:33:43 +0000 (10:33 +0300)] 
bpo-19270: Fixed sched.scheduler.cancel to cancel correct event (GH-22729)

5 years agobpo-40484: Document compiler flags under AST module (GH-19885)
Batuhan Taskaya [Mon, 19 Oct 2020 01:14:11 +0000 (04:14 +0300)] 
bpo-40484: Document compiler flags under AST module (GH-19885)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Co-authored-by: Shantanu <hauntsaninja@users.noreply.github.com>
5 years agobpo-40492: Fix --outfile with relative path when the program changes it working dir...
Anthony Sottile [Sun, 18 Oct 2020 20:48:31 +0000 (13:48 -0700)] 
bpo-40492: Fix --outfile with relative path when the program changes it working dir (GH-19910)

5 years agobpo-28660: Make TextWrapper break long words on hyphens (GH-22721)
Irit Katriel [Sun, 18 Oct 2020 17:01:15 +0000 (18:01 +0100)] 
bpo-28660: Make TextWrapper break long words on hyphens (GH-22721)

5 years ago3.9 whatsnew: fix bpo issue for AST change (GH-22742)
Shantanu [Sun, 18 Oct 2020 15:39:26 +0000 (08:39 -0700)] 
3.9 whatsnew: fix bpo issue for AST change (GH-22742)

5 years agobpo-20184: Convert termios to Argument Clinic. (GH-22693)
Serhiy Storchaka [Sun, 18 Oct 2020 14:54:06 +0000 (17:54 +0300)] 
bpo-20184: Convert termios to Argument Clinic. (GH-22693)

5 years agobpo-41966: Fix pickling pure datetime.time subclasses (GH-22731)
scaramallion [Sun, 18 Oct 2020 14:49:48 +0000 (01:49 +1100)] 
bpo-41966: Fix pickling pure datetime.time subclasses (GH-22731)

5 years agobpo-38252: Use 8-byte step to detect ASCII sequence in 64bit Windows build (GH-16334)
Ma Lin [Sun, 18 Oct 2020 14:48:38 +0000 (22:48 +0800)] 
bpo-38252: Use 8-byte step to detect ASCII sequence in 64bit Windows build (GH-16334)

5 years agobpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH-19940)
Max Bernstein [Sat, 17 Oct 2020 20:38:21 +0000 (13:38 -0700)] 
bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH-19940)

5 years ago[doc] Add mentions of PEP 613 (TypeAlias) to docs (GH-22733)
Andre Delfino [Sat, 17 Oct 2020 02:34:01 +0000 (23:34 -0300)] 
[doc] Add mentions of PEP 613 (TypeAlias) to docs (GH-22733)

5 years agobpo-40341: Remove some "discouraged solutions" in Doc/faq/programming.rst (GH-22726)
Zackery Spytz [Fri, 16 Oct 2020 18:44:17 +0000 (12:44 -0600)] 
bpo-40341: Remove some "discouraged solutions" in Doc/faq/programming.rst (GH-22726)

5 years agocloses bpo-42030: Remove legacy AIX dynload support (GH-22717)
Kevin Adler [Fri, 16 Oct 2020 18:03:28 +0000 (13:03 -0500)] 
closes bpo-42030: Remove legacy AIX dynload support (GH-22717)

Since c19c5a6, AIX builds have defaulted to using dynload_shlib over
dynload_aix when dlopen is available. This function has been available
since AIX 4.3, which went out of support in 2003, the same year the
previously referenced commit was made. It has been nearly 20 years
since a version of AIX has been supported which has not used
dynload_shlib so there's no reason to keep this legacy code around.

5 years agobpo-42011: Update documentation of logging.Filter.filter() (GH-22692)
Necdet Can Atesman [Fri, 16 Oct 2020 14:14:07 +0000 (16:14 +0200)] 
bpo-42011: Update documentation of logging.Filter.filter() (GH-22692)

5 years agobpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)
Hai Shi [Fri, 16 Oct 2020 08:34:15 +0000 (16:34 +0800)] 
bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)

* Move the codecs' (un)register operation to testcases.
* Remove _codecs._forget_codec() and _PyCodec_Forget()

5 years agoDocument that `test.support.bytecode_helper` is new in 3.9 (GH-22618)
Saiyang Gou [Thu, 15 Oct 2020 19:06:23 +0000 (12:06 -0700)] 
Document that `test.support.bytecode_helper` is new in 3.9 (GH-22618)

5 years agobpo-1635741: Add a global module state to unicodedata (GH-22712)
Victor Stinner [Thu, 15 Oct 2020 14:22:19 +0000 (16:22 +0200)] 
bpo-1635741: Add a global module state to unicodedata (GH-22712)

Prepare unicodedata to add a state per module: start with a global
"module" state, pass it to subfunctions which access &UCD_Type. This
change also prepares the conversion of the UCD_Type static type to a
heap type.

5 years agobpo-42021: Fix possible ref leaks during _sqlite3 module init (GH-22673)
Erlend Egeberg Aasland [Thu, 15 Oct 2020 12:20:15 +0000 (14:20 +0200)] 
bpo-42021: Fix possible ref leaks during _sqlite3 module init (GH-22673)

5 years agoMinor clarification (GH-22708)
Raymond Hettinger [Thu, 15 Oct 2020 06:41:55 +0000 (23:41 -0700)] 
Minor clarification (GH-22708)

5 years agobpo-41894: Fix UnicodeDecodeError while loading native module (GH-22466)
Kevin Adler [Thu, 15 Oct 2020 01:53:27 +0000 (20:53 -0500)] 
bpo-41894: Fix UnicodeDecodeError while loading native module (GH-22466)

When running in a non-UTF-8 locale, if an error occurs while importing a
native Python module (say because a dependent share library is missing),
the error message string returned may contain non-ASCII code points
causing a UnicodeDecodeError.

PyUnicode_DecodeFSDefault is used for buffers which may contain
filesystem  paths. For consistency with os.strerror(),
PyUnicode_DecodeLocale is used for buffers which contain system error
messages. While the shortname parameter is always encoded in ASCII
according to PEP 489, it is left decoded using PyUnicode_FromString to
minimize the changes and since it should not affect the decoding (albeit
_potentially_ slower).

In dynload_hpux, since the error buffer contains a message generated
from a static ASCII string and the module filesystem path,
PyUnicode_DecodeFSDefault is used instead of PyUnicode_DecodeLocale as
is used elsewhere.

* bpo-41894: Fix bugs in dynload error msg handling

For both dynload_aix and dynload_hpux, properly handle the possibility
that decoding strings may return NULL and when such an error happens,
properly decrement any previously decoded strings and return early.

In addition, in dynload_aix, ensure that we pass the decoded string
*object* pathname_ob to PyErr_SetImportError instead of the original
pathname buffer.

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
5 years agobpo-41984: GC track all user classes (GH-22701)
Brandt Bucher [Thu, 15 Oct 2020 01:44:07 +0000 (18:44 -0700)] 
bpo-41984: GC track all user classes (GH-22701)

5 years agoUpdate timings for the final release (GH-22697)
Raymond Hettinger [Wed, 14 Oct 2020 17:04:04 +0000 (10:04 -0700)] 
Update timings for the final release (GH-22697)

5 years agobpo-39337: encodings.normalize_encoding() now ignores non-ASCII characters (GH-22219)
Hai Shi [Wed, 14 Oct 2020 15:43:31 +0000 (23:43 +0800)] 
bpo-39337: encodings.normalize_encoding() now ignores non-ASCII characters (GH-22219)

5 years agobpo-41876: Overload __repr__ for tkinter Font objects (GH-22450)
Anatoliy Platonov [Wed, 14 Oct 2020 10:02:51 +0000 (13:02 +0300)] 
bpo-41876: Overload __repr__ for tkinter Font objects (GH-22450)

5 years agocloses bpo-42029: Remove dynload_dl (GH-22687)
Kevin Adler [Wed, 14 Oct 2020 01:49:24 +0000 (20:49 -0500)] 
closes bpo-42029: Remove dynload_dl (GH-22687)

All references to this dynamic loading method were removed in b9949db,
when support for this method was dropped, but the implementation code
was not dropped (seemingly in oversight).

5 years agobpo-41939: always enable test_site.test_license_exists_at_url (GH-22688)
Ned Deily [Wed, 14 Oct 2020 01:38:56 +0000 (21:38 -0400)] 
bpo-41939: always enable test_site.test_license_exists_at_url (GH-22688)

5 years agoImprove recipe readability (GH-22685)
Raymond Hettinger [Tue, 13 Oct 2020 23:41:26 +0000 (16:41 -0700)] 
Improve recipe readability (GH-22685)

5 years agobpo-40422: Move _Py_closerange to fileutils.c (GH-22680)
Kyle Evans [Tue, 13 Oct 2020 20:04:44 +0000 (15:04 -0500)] 
bpo-40422: Move _Py_closerange to fileutils.c (GH-22680)

This API is relatively lightweight and organizationally, given that it's
used by multiple modules, it makes sense to move it to fileutils.

Requires making sure that _posixsubprocess is compiled with the appropriate
Py_BUIILD_CORE_BUILTIN macro.

5 years agoAdd recipe for a version of random() with a larger population (GH-22664)
Raymond Hettinger [Tue, 13 Oct 2020 18:54:21 +0000 (11:54 -0700)] 
Add recipe for a version of random() with a larger population (GH-22664)

5 years agobpo-41756: Export PyGen_Send and wrap it in if-defs (#22677)
Vladimir Matveev [Tue, 13 Oct 2020 17:26:51 +0000 (10:26 -0700)] 
bpo-41756: Export PyGen_Send and wrap it in if-defs (#22677)

5 years agobpo-41995: Fix null ptr deref in tracemalloc_copy_trace() (GH-22660)
Yunlongs [Tue, 13 Oct 2020 06:46:31 +0000 (14:46 +0800)] 
bpo-41995: Fix null ptr deref in tracemalloc_copy_trace() (GH-22660)

Fix a null pointer dereference in tracemalloc_copy_trace()
of _tracemalloc.

5 years agobpo-40422: Move _Py_*_SUPPRESS_IPH bits into _Py_closerange (GH-22672)
Kyle Evans [Mon, 12 Oct 2020 23:53:16 +0000 (18:53 -0500)] 
bpo-40422: Move _Py_*_SUPPRESS_IPH bits into _Py_closerange (GH-22672)

This suppression is no longer needed in os_closerange_impl, as it just
invokes the internal _Py_closerange implementation. On the other hand,
consumers of _Py_closerange may not have any other reason to suppress
invalid parameter issues, so narrow the scope to here.

5 years agoFix typo in "Context manager types" section in typing.rst (GH-22676)
Saiyang Gou [Mon, 12 Oct 2020 23:34:33 +0000 (16:34 -0700)] 
Fix typo in "Context manager types" section in typing.rst (GH-22676)

Fix typo in the "Context manager types" section in `typing.rst`.

Automerge-Triggered-By: @gvanrossum
5 years agobpo-42015: Reorder dereferencing calls in meth_dealloc, to make sure m_self is kept...
Yannick Jadoul [Mon, 12 Oct 2020 21:06:19 +0000 (23:06 +0200)] 
bpo-42015: Reorder dereferencing calls in meth_dealloc, to make sure m_self is kept alive long enough (GH-22670)

5 years agoDelete PyGen_Send (#22663)
Vladimir Matveev [Mon, 12 Oct 2020 19:10:42 +0000 (12:10 -0700)] 
Delete PyGen_Send (#22663)

5 years ago[doc] Fix typo in the graphlib docs (GH-22661)
linchiwei123 [Mon, 12 Oct 2020 14:33:34 +0000 (22:33 +0800)] 
[doc] Fix typo in the graphlib docs (GH-22661)

Automerge-Triggered-By: @pablogsal
5 years ago[doc] Remove mention of async and await as soft keywords (GH-22144)
Andre Delfino [Mon, 12 Oct 2020 13:52:30 +0000 (10:52 -0300)] 
[doc] Remove mention of async and await as soft keywords (GH-22144)

5 years agobpo-41739: Fix test_logging.test_race_between_set_target_and_flush() (GH-22655)
Victor Stinner [Sun, 11 Oct 2020 22:37:20 +0000 (00:37 +0200)] 
bpo-41739: Fix test_logging.test_race_between_set_target_and_flush() (GH-22655)

The test now waits until all threads complete to avoid leaking
running threads.

Also, use regular threads rather than daemon threads.

5 years agobpo-41971: Fix test failure in test.test_tools.test_c_analyzer when mutating global...
Pablo Galindo [Sun, 11 Oct 2020 20:34:51 +0000 (21:34 +0100)] 
bpo-41971: Fix test failure in test.test_tools.test_c_analyzer when mutating global state (GH-22652)

5 years agobpo-40423: Optimization: use close_range(2) if available (GH-22651)
Kyle Evans [Sun, 11 Oct 2020 20:18:53 +0000 (15:18 -0500)] 
bpo-40423: Optimization: use close_range(2) if available (GH-22651)

close_range(2) should be preferred at all times if it's available, otherwise we'll use closefrom(2) if available with a fallback to fdwalk(3) or plain old loop over fd range in order of most efficient to least.

[note that this version does check for ENOSYS, but currently ignores all other errors]

Automerge-Triggered-By: @pablogsal
5 years agobpo-40422: create a common _Py_closerange API (GH-19754)
Kyle Evans [Sun, 11 Oct 2020 18:54:11 +0000 (13:54 -0500)] 
bpo-40422: create a common _Py_closerange API (GH-19754)

Such an API can be used both for os.closerange and subprocess. For the latter, this yields potential improvement for platforms that have fdwalk but wouldn't have used it there. This will prove even more beneficial later for platforms that have close_range(2), as the new API will prefer that over all else if it's available.

The new API is structured to look more like close_range(2), closing from [start, end] rather than the [low, high) of os.closerange().

Automerge-Triggered-By: @gpshead
5 years agoFix .. code-block :: directives in decimal.rst (GH-22571)
Anthony Sottile [Sun, 11 Oct 2020 18:26:50 +0000 (11:26 -0700)] 
Fix .. code-block :: directives in decimal.rst (GH-22571)

5 years agoFix typo in listobject.h (GH-22588)
chilaxan [Sun, 11 Oct 2020 18:21:51 +0000 (14:21 -0400)] 
Fix typo in listobject.h (GH-22588)

5 years agoFix typo (GH-22582)
Gaurav Kamath [Sun, 11 Oct 2020 18:13:43 +0000 (11:13 -0700)] 
Fix typo (GH-22582)

/af/of/s

Automerge-Triggered-By: @Mariatta
5 years agobpo-41993: Fix possible issues in remove_module() (GH-22631)
Serhiy Storchaka [Sun, 11 Oct 2020 13:51:07 +0000 (16:51 +0300)] 
bpo-41993: Fix possible issues in remove_module() (GH-22631)

* PyMapping_HasKey() is not safe because it silences all exceptions and can return incorrect result.
* Informative exceptions from PyMapping_DelItem() are overridden with RuntimeError and
  the original exception raised before calling remove_module() is lost.
* There is a race condition between PyMapping_HasKey() and PyMapping_DelItem().

5 years agobpo-42002: Clean up initialization of the sys module. (GH-22642)
Serhiy Storchaka [Sun, 11 Oct 2020 12:30:43 +0000 (15:30 +0300)] 
bpo-42002: Clean up initialization of the sys module. (GH-22642)

Makes the code clearer and make errors handling more correct.

5 years agoFix typo in typing.rst (GH-22625)
abdo [Sun, 11 Oct 2020 06:10:21 +0000 (09:10 +0300)] 
Fix typo in typing.rst (GH-22625)

5 years agobpo-38605: bump the magic number for 'annotations' future (#22630)
Batuhan Taskaya [Sat, 10 Oct 2020 22:19:46 +0000 (01:19 +0300)] 
bpo-38605: bump the magic number for 'annotations' future (#22630)

5 years agobpo-41991: Remove _PyObject_HasAttrId (GH-22629)
Serhiy Storchaka [Sat, 10 Oct 2020 19:23:42 +0000 (22:23 +0300)] 
bpo-41991: Remove _PyObject_HasAttrId (GH-22629)

It can silence arbitrary exceptions.

5 years agobpo-42000: Cleanup the AST related C-code (GH-22641)
Batuhan Taskaya [Sat, 10 Oct 2020 17:14:59 +0000 (20:14 +0300)] 
bpo-42000: Cleanup the AST related C-code (GH-22641)

- Use the proper asdl sequence when creating empty arguments
- Remove reduntant casts (thanks to new typed asdl_sequences)
- Remove MarshalPrototypeVisitor and some utilities from asdl generator
- Fix the header of `Python/ast.c` (kept from pgen times)

Automerge-Triggered-By: @pablogsal
5 years agobpo-41986: Add Py_FileSystemDefaultEncodeErrors and Py_UTF8Mode back to limited API...
Serhiy Storchaka [Sat, 10 Oct 2020 14:09:45 +0000 (17:09 +0300)] 
bpo-41986: Add Py_FileSystemDefaultEncodeErrors and Py_UTF8Mode back to limited API (GH-22621)

5 years agoFix incorrect parameter name (GH-22613)
Xie Yanbo [Sat, 10 Oct 2020 02:38:43 +0000 (10:38 +0800)] 
Fix incorrect parameter name (GH-22613)

Automerge-Triggered-By: @Mariatta
5 years agobpo-41756: Add PyIter_Send function (#22443)
Vladimir Matveev [Sat, 10 Oct 2020 00:15:15 +0000 (17:15 -0700)] 
bpo-41756: Add PyIter_Send function (#22443)

5 years agobpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes". (GH...
Serhiy Storchaka [Fri, 9 Oct 2020 20:00:45 +0000 (23:00 +0300)] 
bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes". (GH-22620)

5 years agobpo-39481: Fix duplicate SimpleQueue type in test_genericalias.py (GH-22619)
Saiyang Gou [Fri, 9 Oct 2020 20:00:15 +0000 (13:00 -0700)] 
bpo-39481: Fix duplicate SimpleQueue type in test_genericalias.py (GH-22619)

There are two different `SimpleQueue` types imported (from `multiprocessing.queues` and `queue`) in `Lib/test/test_genericalias.py`, the second one shadowing the first one, making the first one not actually tested. Fix by using different names.

Automerge-Triggered-By: @gvanrossum
5 years agobpo-41831: Restore str implementation of __str__ in tkinter.EventType (GH-22355)
Serhiy Storchaka [Fri, 9 Oct 2020 19:57:34 +0000 (22:57 +0300)] 
bpo-41831: Restore str implementation of __str__ in tkinter.EventType (GH-22355)

5 years agobpo-41831: Add tests for tkinter.Event.__repr__ (GH-22354)
Serhiy Storchaka [Fri, 9 Oct 2020 18:45:46 +0000 (21:45 +0300)] 
bpo-41831: Add tests for tkinter.Event.__repr__ (GH-22354)

5 years agobpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593)
Serhiy Storchaka [Fri, 9 Oct 2020 11:14:37 +0000 (14:14 +0300)] 
bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593)

Remove complex special methods __int__, __float__, __floordiv__,
__mod__, __divmod__, __rfloordiv__, __rmod__ and __rdivmod__
which always raised a TypeError.

5 years agobpo-41979: Accept star-unpacking on with-item targets (GH-22611)
Batuhan Taskaya [Fri, 9 Oct 2020 09:56:48 +0000 (12:56 +0300)] 
bpo-41979: Accept star-unpacking on with-item targets (GH-22611)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
5 years agoUpdated README for python 3.10 (GH-22605)
Nishit [Fri, 9 Oct 2020 09:32:15 +0000 (15:02 +0530)] 
Updated README for python 3.10 (GH-22605)

Updated python version and link to the release schedule

5 years agoFix the attribute names in the docstring of GenericAlias (GH-22594)
Mikhail Golubev [Thu, 8 Oct 2020 21:38:36 +0000 (00:38 +0300)] 
Fix the attribute names in the docstring of GenericAlias (GH-22594)

5 years agobpo-39337: Add a test case for normalizing of codec names (GH-19069)
Hai Shi [Thu, 8 Oct 2020 19:20:57 +0000 (03:20 +0800)] 
bpo-39337: Add a test case for normalizing of codec names (GH-19069)

5 years agobpo-41557: Update Windows installer to use SQLite 3.33.0 (GH-21960)
Erlend Egeberg Aasland [Thu, 8 Oct 2020 18:40:27 +0000 (20:40 +0200)] 
bpo-41557: Update Windows installer to use SQLite 3.33.0 (GH-21960)

5 years agobpo-41976: Fix the fallback to gcc of ctypes.util.find_library when using gcc>9 ...
Pablo Galindo [Thu, 8 Oct 2020 18:31:19 +0000 (19:31 +0100)] 
bpo-41976: Fix the fallback to gcc of ctypes.util.find_library when using gcc>9 (GH-22598)

5 years agobpo-41306: Allow scale value to not be rounded (GH-21715)
E-Paine [Thu, 8 Oct 2020 13:30:13 +0000 (14:30 +0100)] 
bpo-41306: Allow scale value to not be rounded (GH-21715)

This fixes the test failure with Tk 6.8.10 which is caused by changes to how Tk rounds the `from`, `to` and `tickinterval` arguments. This PR uses `noconv` if the patchlevel is greater than or equal to 8.6.10 (credit to Serhiy for this idea as it is much simpler than what I previously proposed).

Going into more detail for those who want it, the Tk change was made in [commit 591f68c](https://github.com/tcltk/tk/commit/591f68cb382525b72664c6fecaab87742b6cc87a) and means that the arguments listed above are rounded relative to the value of `from`. However, when rounding the `from` argument ([line 623](https://github.com/tcltk/tk/blob/591f68cb382525b72664c6fecaab87742b6cc87a/generic/tkScale.c#L623)), it is rounded relative to itself (i.e. rounding `0`) and therefore the assigned value for `from` is always what is given (no matter what values of `from` and `resolution`).

Automerge-Triggered-By: @pablogsal
5 years agobpo-41970: Avoid test failure in test_lib2to3 if the module is already imported ...
Pablo Galindo [Thu, 8 Oct 2020 13:24:28 +0000 (14:24 +0100)] 
bpo-41970: Avoid test failure in test_lib2to3 if the module is already imported (GH-22595)



Automerge-Triggered-By: @pablogsal
5 years agobpo-41376: Fix the documentation of `site.getusersitepackages()` (GH-21602)
Phil Elson [Thu, 8 Oct 2020 06:37:46 +0000 (08:37 +0200)] 
bpo-41376: Fix the documentation of `site.getusersitepackages()` (GH-21602)

`site.getusersitepackages()` returns the location of the user-specific site-packages directory
even when the user-specific site-packages is disabled.

```
$ python -s -m site
sys.path = [
    '/home/user/conda/lib/python37.zip',
    '/home/user/conda/lib/python3.7',
    '/home/user/conda/lib/python3.7/lib-dynload',
    '/home/user/conda/lib/python3.7/site-packages',
]
USER_BASE: '/home/user/.local' (exists)
USER_SITE: '/home/user/.local/lib/python3.7/site-packages' (doesn't exist)
ENABLE_USER_SITE: False
```

It was not practical to prevent the function from returning None if user-specific site-packages are disabled, since there are other uses of the function which are relying on this behaviour (e.g. `python -m site`).

5 years agoRevert "bpo-26680: Incorporate is_integer in all built-in and standard library numeri...
Raymond Hettinger [Wed, 7 Oct 2020 23:43:44 +0000 (16:43 -0700)] 
Revert "bpo-26680: Incorporate is_integer in all built-in and standard library numeric types (GH-6121)" (GH-22584)

This reverts commit 58a7da9e125422323f79c4ee95ac5549989d8162.

5 years agobpo-41923: PEP 613: Add TypeAlias to typing module (#22532)
Mikhail Golubev [Wed, 7 Oct 2020 21:44:31 +0000 (00:44 +0300)] 
bpo-41923: PEP 613: Add TypeAlias to typing module (#22532)

This special marker annotation is intended to help in distinguishing
proper PEP 484-compliant type aliases from regular top-level variable
assignments.

5 years agoFix comment about PyObject_IsTrue. (GH-22343)
Stefan Pochmann [Wed, 7 Oct 2020 14:12:52 +0000 (16:12 +0200)] 
Fix comment about PyObject_IsTrue. (GH-22343)

The `for` statement doesn't use a condition and this function, the `while` statement does.

5 years agobpo-38605: Make 'from __future__ import annotations' the default (GH-20434)
Batuhan Taskaya [Tue, 6 Oct 2020 20:03:02 +0000 (23:03 +0300)] 
bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)

The hard part was making all the tests pass; there are some subtle issues here, because apparently the future import wasn't tested very thoroughly in previous Python versions.

For example, `inspect.signature()` returned type objects normally (except for forward references), but strings with the future import. We changed it to try and return type objects by calling `typing.get_type_hints()`, but fall back on returning strings if that function fails (which it may do if there are future references in the annotations that require passing in a specific namespace to resolve).

5 years agobpo-41905: Add abc.update_abstractmethods() (GH-22485)
Ben Avrahami [Tue, 6 Oct 2020 17:40:50 +0000 (20:40 +0300)] 
bpo-41905: Add abc.update_abstractmethods() (GH-22485)

This function recomputes `cls.__abstractmethods__`.
Also update `@dataclass` to use it.

5 years agobpo-41944: No longer call eval() on content received via HTTP in the UnicodeNames...
Florian Bruhin [Tue, 6 Oct 2020 14:21:56 +0000 (16:21 +0200)] 
bpo-41944: No longer call eval() on content received via HTTP in the UnicodeNames tests (GH-22575)

Similarly to GH-22566, those tests called eval() on content received via
HTTP in test_named_sequences_full. This likely isn't exploitable because
unicodedata.lookup(seqname) is called before self.checkletter(seqname,
None) - thus any string which isn't a valid unicode character name
wouldn't ever reach the checkletter method.

Still, it's probably better to be safe than sorry.

5 years agobpo-41944: No longer call eval() on content received via HTTP in the CJK codec tests...
Serhiy Storchaka [Tue, 6 Oct 2020 12:14:51 +0000 (15:14 +0300)] 
bpo-41944: No longer call eval() on content received via HTTP in the CJK codec tests (GH-22566)

5 years agoPost 3.10.0a1
Pablo Galindo [Mon, 5 Oct 2020 20:16:35 +0000 (21:16 +0100)] 
Post 3.10.0a1

5 years agoPython 3.10.0a1 v3.10.0a1
Pablo Galindo [Mon, 5 Oct 2020 17:24:54 +0000 (18:24 +0100)] 
Python 3.10.0a1

5 years agobpo-41584: clarify when the reflected method of a binary arithemtic operator is calle...
Brett Cannon [Mon, 5 Oct 2020 16:42:21 +0000 (09:42 -0700)] 
bpo-41584: clarify when the reflected method of a binary arithemtic operator is called (#22505)

5 years agobpo-41939: Fix test_site.test_license_exists_at_url() (#22559)
Victor Stinner [Mon, 5 Oct 2020 16:24:00 +0000 (18:24 +0200)] 
bpo-41939: Fix test_site.test_license_exists_at_url() (#22559)

Call urllib.request.urlcleanup() to reset the global
urllib.request._opener.

5 years agobpo-41774: Tweak new programming FAQ entry (GH-22562)
Terry Jan Reedy [Mon, 5 Oct 2020 14:31:44 +0000 (10:31 -0400)] 
bpo-41774: Tweak new programming FAQ entry (GH-22562)

Remove mention of space in "remove multiple items from list".

5 years agobpo-41936. Remove macros Py_ALLOW_RECURSION/Py_END_ALLOW_RECURSION (GH-22552)
Serhiy Storchaka [Mon, 5 Oct 2020 09:32:00 +0000 (12:32 +0300)] 
bpo-41936. Remove macros Py_ALLOW_RECURSION/Py_END_ALLOW_RECURSION (GH-22552)

5 years agobpo-41557: Update macOS installer to use SQLite 3.33.0 (GH-21959)
Erlend Egeberg Aasland [Mon, 5 Oct 2020 08:09:16 +0000 (10:09 +0200)] 
bpo-41557: Update macOS installer to use SQLite 3.33.0 (GH-21959)

https://sqlite.org/releaselog/3_33_0.html

5 years agobpo-41428: Documentation for PEP 604 (gh-22517)
Fidget-Spinner [Mon, 5 Oct 2020 04:40:52 +0000 (12:40 +0800)] 
bpo-41428: Documentation for PEP 604  (gh-22517)

5 years agobpo-41892: Clarify that an example in the ElementTree docs explicitly avoids modifyin...
scoder [Sun, 4 Oct 2020 23:13:46 +0000 (01:13 +0200)] 
bpo-41892: Clarify that an example in the ElementTree docs explicitly avoids modifying an XML tree while iterating over it. (GH-22464)

5 years agobpo-41909: Enable previously disabled recursion checks. (GH-22536)
Serhiy Storchaka [Sun, 4 Oct 2020 21:55:57 +0000 (00:55 +0300)] 
bpo-41909: Enable previously disabled recursion checks. (GH-22536)

Enable recursion checks which were disabled when get __bases__ of
non-type objects in issubclass() and isinstance() and when intern
strings. It fixes a stack overflow when getting __bases__ leads
to infinite recursion.

Originally recursion checks was disabled for PyDict_GetItem() which
silences all errors including the one raised in case of detected
recursion and can return incorrect result. But now the code uses
PyDict_GetItemWithError() and PyDict_SetDefault() instead.

5 years agoTypo fix (GH-22496)
Manan Kumar Garg [Sun, 4 Oct 2020 21:28:43 +0000 (02:58 +0530)] 
Typo fix (GH-22496)

Multiple typo fixes in code comments

Automerge-Triggered-By: @Mariatta
5 years agobpo-41490: Bump vendored pip to version 20.2.3 (#22527)
Pablo Galindo [Sun, 4 Oct 2020 16:45:31 +0000 (17:45 +0100)] 
bpo-41490: Bump vendored pip to version 20.2.3 (#22527)