]>
git.ipfire.org Git - thirdparty/Python/cpython.git/log
Ethan Furman [Wed, 16 Sep 2020 14:11:57 +0000 (07:11 -0700)]
bpo-41517: do not allow Enums to be extended (#22271)
fix bug that let Enums be extended via multiple inheritance
Patrick Reader [Wed, 16 Sep 2020 04:58:32 +0000 (05:58 +0100)]
bpo-41792: Add is_typeddict function to typing.py (GH-22254)
Closes issue41792.
Also closes https://github.com/python/typing/issues/751.
Ethan Furman [Tue, 15 Sep 2020 23:28:25 +0000 (16:28 -0700)]
bpo-41789: honor object overrides in Enum classes (GH-22250)
EnumMeta double-checks that `__repr__`, `__str__`, `__format__`, and `__reduce_ex__` are not the same as `object`'s, and replaces them if they are -- even if that replacement was intentionally done in the Enum being constructed. This patch fixes that.
Automerge-Triggered-By: @ethanfurman
Tim Burke [Tue, 15 Sep 2020 23:26:06 +0000 (16:26 -0700)]
Doc: Fix broken manpage link (GH-21937)
sigprocmask is in section 2, not 3.
Ethan Furman [Tue, 15 Sep 2020 22:56:26 +0000 (15:56 -0700)]
bpo-39587: Enum - use correct mixed-in data type (GH-22263)
Batuhan Taskaya [Tue, 15 Sep 2020 21:58:32 +0000 (00:58 +0300)]
bpo-41780: Fix __dir__ of types.GenericAlias (GH-22262)
Automerge-Triggered-By: @gvanrossum
Andre Delfino [Tue, 15 Sep 2020 20:13:26 +0000 (17:13 -0300)]
Fix all Python Cookbook links (#22205)
Ethan Furman [Tue, 15 Sep 2020 19:27:06 +0000 (12:27 -0700)]
minor reformat of enum tests (GH-22259)
Automerge-Triggered-By: @ethanfurman
Mandeep [Tue, 15 Sep 2020 19:20:49 +0000 (15:20 -0400)]
Improve the description of difflib in the documentation (GH-22253)
From "can produce difference information in various formats ..."
to " can produce information about file differences in various formats ..."
Automerge-Triggered-By: @Mariatta
Victor Stinner [Tue, 15 Sep 2020 16:03:34 +0000 (18:03 +0200)]
bpo-41631: _ast module uses again a global state (#21961)
Partially revert commit
ac46eb4ad6662cf6d771b20d8963658b2186c48c :
"bpo-38113: Update the Python-ast.c generator to PEP384 (gh-15957)".
Using a module state per module instance is causing subtle practical
problems.
For example, the Mercurial project replaces the __import__() function
to implement lazy import, whereas Python expected that "import _ast"
always return a fully initialized _ast module.
Add _PyAST_Fini() to clear the state at exit.
The _ast module has no state (set _astmodule.m_size to 0). Remove
astmodule_traverse(), astmodule_clear() and astmodule_free()
functions.
Neeraj Samtani [Tue, 15 Sep 2020 13:39:29 +0000 (17:39 +0400)]
bpo-41776: Revise example of "continue" in the tutorial documentation (GH-22234)
Revise example of "continue" in the tutorial documentation
Raymond Hettinger [Tue, 15 Sep 2020 00:13:49 +0000 (17:13 -0700)]
bpo-41513: Remove broken tests that fail on Gentoo (GH-22249)
Ethan Furman [Mon, 14 Sep 2020 20:32:44 +0000 (13:32 -0700)]
bpo-40721: add note about enum member name case (GH-22231)
* UPPER_CASE preferred as enum members are constants
Václav Slavík [Mon, 14 Sep 2020 19:30:15 +0000 (21:30 +0200)]
bpo-41744: Package python.props with correct name in NuGet package (GH-22154)
NuGet automatically includes .props file from the build directory in the
target using the package, but only if the .props file has the correct
name: it must be $(id).props
Rename python.props correspondingly in all the nuspec variants. Also
keep python.props as it were for backward compatibility.
Zackery Spytz [Mon, 14 Sep 2020 19:28:46 +0000 (13:28 -0600)]
bpo-41646: Mention path-like objects support in the docs for shutil.copy() (GH-22208)
abdo [Mon, 14 Sep 2020 17:36:34 +0000 (20:36 +0300)]
Fix a typo in locale Docs (#22233)
Raymond Hettinger [Mon, 14 Sep 2020 06:33:41 +0000 (23:33 -0700)]
bpo-41513: Add docs and tests for hypot() (GH-22238)
Ned Deily [Mon, 14 Sep 2020 05:18:01 +0000 (01:18 -0400)]
bpo-39883: Update macOS installer copy of LICENSE. (GH-22235)
Emmanuel Arias [Sun, 13 Sep 2020 21:05:44 +0000 (18:05 -0300)]
bpo-41778: Change a punctuation on documentation. (GH-22229)
On this paragrapah the clarification about IIS7 seems there's not
connection beacuase is in other sentence. Move the punctuation
to connect both the last sentence with the information in the
parenthesis.
I think the NEWS is not necessary here.
Automerge-Triggered-By: @ericvsmith
Zackery Spytz [Sun, 13 Sep 2020 20:27:51 +0000 (14:27 -0600)]
bpo-38967: Improve the error msg for reserved _sunder_ names in enum (GH-18370)
Sergey Fedoseev [Sun, 13 Sep 2020 17:59:01 +0000 (22:59 +0500)]
bpo-33239: Fix default value of 'buffering' parameter in docs of tempfile.* functions (GH-21763)
`None` doesn't work:
```python
>>> import tempfile
>>> tempfile.TemporaryFile(buffering=None)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/sergey/tmp/cpython-dev/Lib/tempfile.py", line 607, in TemporaryFile
return _io.open(fd, mode, buffering=buffering,
TypeError: 'NoneType' object cannot be interpreted as an integer
```
Automerge-Triggered-By: @vsajip
Norbert Cyran [Sat, 12 Sep 2020 07:58:56 +0000 (09:58 +0200)]
bpo-41672: Fix type mismatches in imaplib docs (GH-22207)
Victor Stinner [Sat, 12 Sep 2020 06:50:18 +0000 (08:50 +0200)]
bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197)
Fix a race condition in the call_soon_threadsafe() method of
asyncio.ProactorEventLoop: do nothing if the self-pipe socket has
been closed.
Terry Jan Reedy [Sat, 12 Sep 2020 06:25:36 +0000 (02:25 -0400)]
bpo-41731: Make test_cmd_line_script pass with -vv (GH-22206)
Argument script_exec_args is usually an absolute file name,
but twice has form ['-m', 'module_name'].
Terry Jan Reedy [Sat, 12 Sep 2020 05:51:52 +0000 (01:51 -0400)]
bpo-41729: Fix test_winconsole failures (3) and hang (GH-22146)
The problems occured with a repository build on machine
with freshly updated Windows 10 Pro.
Stargirl Flowers [Fri, 11 Sep 2020 15:20:12 +0000 (08:20 -0700)]
[doc] struct: update note about network byte order form to be more helpful (GH-22201)
Update the sentence to provide some context on why network byte order is defined as big endian.
Benjamin Peterson [Thu, 10 Sep 2020 23:59:02 +0000 (18:59 -0500)]
Doc: Fix alphabetical ordering of removeprefix/suffix. (GH-22194)
Mark Roseman [Thu, 10 Sep 2020 20:04:20 +0000 (13:04 -0700)]
bpo-37149: Change Shipman tkinter link from archive.org to TkDocs (GH-22188)
The new link responds much faster and begins with a short explanation of the status of the doc.
Mohamed Koubaa [Thu, 10 Sep 2020 14:09:04 +0000 (09:09 -0500)]
bpo-
1635741 : Port cmath to multi-phase init (PEP 489) (GH-22165)
Bar Harel [Thu, 10 Sep 2020 10:50:23 +0000 (13:50 +0300)]
Update logging documentation to tidy up formatting (GH-22173)
Andre Delfino [Thu, 10 Sep 2020 06:33:13 +0000 (03:33 -0300)]
[doc] Remove superfluous comment about equal in f-strings (GH-22006)
Automerge-Triggered-By: @kushaldas
Terry Jan Reedy [Wed, 9 Sep 2020 22:53:18 +0000 (18:53 -0400)]
Update idlelib/help.html to current IDLE doc (GH-22181)
Andre Delfino [Wed, 9 Sep 2020 22:17:14 +0000 (19:17 -0300)]
Add missing colon to IDLE doc markup (GH-22007)
Maggie Moss [Wed, 9 Sep 2020 20:23:24 +0000 (13:23 -0700)]
bpo-41428: Implementation for PEP 604 (GH-21515)
See https://www.python.org/dev/peps/pep-0604/ for more information.
Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
Jakub Kulík [Wed, 9 Sep 2020 19:29:42 +0000 (21:29 +0200)]
bpo-41687: Fix error handling in Solaris sendfile implementation (GH-22128)
I just realized that my recent PR with sendfile on Solaris ([PR 22040](https://github.com/python/cpython/pull/22040)) has broken error handling.
Sorry for that, this simple followup fixes that.
Automerge-Triggered-By: @1st1
Vinay Sajip [Wed, 9 Sep 2020 10:21:22 +0000 (11:21 +0100)]
Add minor clarification in logging documentation. (GH-22167)
Victor Stinner [Wed, 9 Sep 2020 10:07:17 +0000 (12:07 +0200)]
Fix compiler warnings in init_dump_ascii_wstr() (GH-22150)
Fix GCC 9.3 (using -O3) warnings on x86:
initconfig.c: In function ‘init_dump_ascii_wstr’:
initconfig.c:2679:34: warning: format ‘%lc’ expects argument of type
‘wint_t’, but argument 2 has type ‘wchar_t’ {aka ‘long int’}
2679 | PySys_WriteStderr("%lc", ch);
initconfig.c:2682:38: warning: format ‘%x’ expects argument of type
‘unsigned int’, but argument 2 has type ‘wchar_t’ {aka ‘long int’}
2682 | PySys_WriteStderr("\\x%02x", ch);
initconfig.c:2686:38: warning: format ‘%x’ expects argument of type
‘unsigned int’, but argument 2 has type ‘wchar_t’ {aka ‘long int’}
2686 | PySys_WriteStderr("\\U%08x", ch);
initconfig.c:2690:38: warning: format ‘%x’ expects argument of type
‘unsigned int’, but argument 2 has type ‘wchar_t’ {aka ‘long int’}
2690 | PySys_WriteStderr("\\u%04x", ch);
Hai Shi [Wed, 9 Sep 2020 09:48:44 +0000 (17:48 +0800)]
bpo-41726: Update the refcounts info of PyType_FromModuleAndSpec in refcounts.dat (GH-22112)
Update refcounts info of PyType_FromModuleAndSpec in refcounts.dat
Mohamed Koubaa [Wed, 9 Sep 2020 03:28:48 +0000 (22:28 -0500)]
bpo-
1635741 : port scproxy to multi-phase init (GH-22164)
Serhiy Storchaka [Wed, 9 Sep 2020 00:28:02 +0000 (03:28 +0300)]
bpo-41525: Make the Python program help ASCII-only (GH-21836)
Andre Delfino [Tue, 8 Sep 2020 23:39:19 +0000 (20:39 -0300)]
[doc] Fix padding in timeit (GH-22152)
Compare -p and -u options help in rendered output to see the difference.
Graham Bleaney [Tue, 8 Sep 2020 22:41:10 +0000 (18:41 -0400)]
Fix typo in typing.py (GH-22121)
This is a trivial PR to fix a typo in a docstring in typing.py. From reverences -> references
Irit Katriel [Tue, 8 Sep 2020 19:40:04 +0000 (20:40 +0100)]
bpo-38762: Extend logging.test_multiprocessing to cover missing cases. (GH-22142)
Mark Shannon [Tue, 8 Sep 2020 16:47:14 +0000 (17:47 +0100)]
Fix incorrect bpo number in change notes. (GH-22151)
Victor Stinner [Tue, 8 Sep 2020 13:33:52 +0000 (15:33 +0200)]
bpo-
1635741 : Port mashal module to multi-phase init (#22149)
Port the 'mashal' extension module to the multi-phase initialization
API (PEP 489).
Victor Stinner [Tue, 8 Sep 2020 13:33:08 +0000 (15:33 +0200)]
bpo-
1635741 : Port _string module to multi-phase init (GH-22148)
Port the _string extension module to the multi-phase initialization
API (PEP 489).
Mohamed Koubaa [Tue, 8 Sep 2020 09:16:14 +0000 (04:16 -0500)]
bpo-
1635741 : Convert _sha256 types to heap types (GH-22134)
Convert the _sha256 extension module types to heap types.
Mohamed Koubaa [Tue, 8 Sep 2020 08:59:15 +0000 (03:59 -0500)]
bpo-
1635741 : Port the termios to multi-phase init (PEP 489) (GH-22139)
dxflores [Tue, 8 Sep 2020 07:28:45 +0000 (08:28 +0100)]
bpo-41732: add iterator to memoryview (GH-22119)
Erlend Egeberg Aasland [Mon, 7 Sep 2020 21:26:54 +0000 (23:26 +0200)]
bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909)
Remove code required to support SQLite pre 3.7.3.
Co-written-by: Berker Peksag <berker.peksag@gmail.com>
Co-written-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
Artem Bulgakov [Mon, 7 Sep 2020 16:46:33 +0000 (19:46 +0300)]
bpo-41316: Make tarfile follow specs for FNAME (GH-21511)
tarfile writes full path to FNAME field of GZIP format instead of just basename if user specified absolute path. Some archive viewers may process file incorrectly. Also it creates security issue because anyone can know structure of directories on system and know username or other personal information.
RFC1952 says about FNAME:
This is the original name of the file being compressed, with any directory components removed.
So tarfile must remove directory names from FNAME and write only basename of file.
Automerge-Triggered-By: @jaraco
Serhiy Storchaka [Mon, 7 Sep 2020 15:55:22 +0000 (18:55 +0300)]
bpo-41720: Add "return NotImplemented" in turtle.Vec2D.__rmul__(). (GH-22092)
Mohamed Koubaa [Mon, 7 Sep 2020 15:14:25 +0000 (10:14 -0500)]
bpo-
1635741 port _curses_panel to multi-phase init (PEP 489) (GH-21986)
Mohamed Koubaa [Mon, 7 Sep 2020 13:12:40 +0000 (08:12 -0500)]
bpo-
1635741 : Port _overlapped module to multi-phase init (GH-22051)
Port the _overlapped extension module to multi-phase initialization (PEP 489).
Mohamed Koubaa [Mon, 7 Sep 2020 08:48:44 +0000 (03:48 -0500)]
bpo-
1635741 : Port _opcode module to multi-phase init (PEP 489) (GH-22050)
Mohamed Koubaa [Mon, 7 Sep 2020 08:27:55 +0000 (03:27 -0500)]
bpo-
1635741 port zlib module to multi-phase init (GH-21995)
Port the zlib extension module to multi-phase initialization (PEP 489).
Andre Delfino [Mon, 7 Sep 2020 05:29:38 +0000 (02:29 -0300)]
[doc] Add link to Generic in typing (GH-22125)
Raymond Hettinger [Sun, 6 Sep 2020 22:10:07 +0000 (15:10 -0700)]
bpo-41513: Expand comments and add references for a better understanding (GH-22123)
Mohamed Koubaa [Sun, 6 Sep 2020 10:09:51 +0000 (05:09 -0500)]
bpo-
1635741 : Port _sha1, _sha512, _md5 to multiphase init (GH-21818)
Port the _sha1, _sha512, and _md5 extension modules
to multi-phase initialization API (PEP 489).
Zackery Spytz [Sun, 6 Sep 2020 03:39:23 +0000 (21:39 -0600)]
closes bpo-41723: Fix an error in the py_compile documentation. (GH-22110)
Andre Delfino [Sat, 5 Sep 2020 23:40:25 +0000 (20:40 -0300)]
[doc] Fix padding in some typing definitions (GH-22114)
Automerge-Triggered-By: @gvanrossum
johnthagen [Sat, 5 Sep 2020 20:53:47 +0000 (16:53 -0400)]
Fix documented Python version for venv --upgrade-deps (GH-22113)
Fixes incorrect Python version added for `venv` `--upgrade-deps` in #13100. This feature was added in Python 3.9 not 3.8.
Relates to:
-
- https://github.com/python/cpython/commit/
1cba1c9abadf76f458ecf883a48515aa3b534dbd
Automerge-Triggered-By: @vsajip
Erlend Egeberg Aasland [Sat, 5 Sep 2020 20:43:31 +0000 (22:43 +0200)]
bpo-40318: Migrate to SQLite3 trace v2 API (GH-19581)
Ref. https://sqlite.org/c3ref/trace_v2.html
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Jakub Kulík [Sat, 5 Sep 2020 19:10:01 +0000 (21:10 +0200)]
bpo-41687: Fix sendfile implementation to work with Solaris (#22040)
Steve Dower [Fri, 4 Sep 2020 23:45:54 +0000 (00:45 +0100)]
bpo-41627: Distinguish 32 and 64-bit user site packages on Windows (GH-22098)
Also fixes the error message returned when sysconfig fails to interpolate a variable correctly.
Zackery Spytz [Fri, 4 Sep 2020 20:57:48 +0000 (14:57 -0600)]
bpo-38585: Remove references to defusedexpat (GH-22095)
defusedexpat is not maintained.
Stefan Krah [Fri, 4 Sep 2020 20:33:17 +0000 (22:33 +0200)]
bpo-41721: Add xlc options (GH-22096)
Serhiy Storchaka [Fri, 4 Sep 2020 18:19:30 +0000 (21:19 +0300)]
bpo-40486: Specify what happens if directory content change diring iteration (GH-22025)
Serhiy Storchaka [Fri, 4 Sep 2020 17:55:41 +0000 (20:55 +0300)]
bpo-41638: Improve ProgrammingError message for absent parameter. (GH-21999)
It contains now the name of the parameter instead of its index when parameters
are supplied as a dict.
Victor Stinner [Fri, 4 Sep 2020 12:51:05 +0000 (14:51 +0200)]
bpo-41713: _signal doesn't use multi-phase init (GH-22087)
Partially revert commit
71d1bd9569c8a497e279f2fea6fe47cd70a87ea3 :
don't use multi-phase initialization (PEP 489) for the _signal
extension module.
Dong-hee Na [Fri, 4 Sep 2020 08:47:40 +0000 (08:47 +0000)]
bpo-41700: Skip test if the locale is not supported (GH-22081)
Vinay Sajip [Thu, 3 Sep 2020 18:44:12 +0000 (19:44 +0100)]
[doc] Update documentation on logging optimization. (GH-22075)
Pablo Galindo [Thu, 3 Sep 2020 14:29:55 +0000 (15:29 +0100)]
Fix 'gather' rules in the python parser generator (GH-22021)
Currently, empty sequences in gather rules make the conditional for
gather rules fail as empty sequences evaluate as "False". We need to
explicitly check for "None" (the failure condition) to avoid false
negatives.
Pablo Galindo [Thu, 3 Sep 2020 14:29:32 +0000 (15:29 +0100)]
bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in the parser (GH-22077)
Mario Šaško [Thu, 3 Sep 2020 10:00:10 +0000 (12:00 +0200)]
[doc] Fix a typo in the graphlib docs (#22030)
Mohamed Koubaa [Thu, 3 Sep 2020 08:21:06 +0000 (03:21 -0500)]
bpo-
1635741 : Port _signal module to multi-phase init (PEP 489) (GH-22049)
Todd [Thu, 3 Sep 2020 05:22:36 +0000 (01:22 -0400)]
bpo-39883: Use BSD0 license for code in docs (GH-17635)
The PSF board approved this use.
Ben Darnell [Thu, 3 Sep 2020 04:58:50 +0000 (00:58 -0400)]
bpo-39010: Improve test shutdown (#22066)
Simply closing the event loop isn't enough to avoid warnings. If we
don't also shut down the event loop's default executor, it sometimes
logs a "dangling thread" warning.
Follow-up to GH-22017
Shantanu [Thu, 3 Sep 2020 04:54:46 +0000 (21:54 -0700)]
bpo-41696: Fix handling of debug mode in asyncio.run (#22069)
* bpo-41696: Fix handling of debug mode in asyncio.run
This allows PYTHONASYNCIODEBUG or -X dev to enable asyncio debug mode
when using asyncio.run
* 📜🤖 Added by blurb_it.
Co-authored-by: hauntsaninja <>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Pablo Galindo [Wed, 2 Sep 2020 16:44:19 +0000 (17:44 +0100)]
bpo-41690: Use a loop to collect args in the parser instead of recursion (GH-22053)
This program can segfault the parser by stack overflow:
```
import ast
code = "f(" + ",".join(['a' for _ in range(100000)]) + ")"
print("Ready!")
ast.parse(code)
```
the reason is that the rule for arguments has a simple recursion when collecting args:
args[expr_ty]:
[...]
| a=named_expression b=[',' c=args { c }] {
[...] }
Benjamin Peterson [Wed, 2 Sep 2020 16:29:06 +0000 (11:29 -0500)]
closes bpo-41689: Preserve text signature from tp_doc in C heap type creation. (GH-22058)
Pablo Galindo [Wed, 2 Sep 2020 14:29:38 +0000 (15:29 +0100)]
Fix invalid escape sequences in the peg_highlight Sphinx extension (GH-22047)
Pablo Galindo [Wed, 2 Sep 2020 14:29:12 +0000 (15:29 +0100)]
bpo-41675: Modernize siginterrupt calls (GH-22028)
siginterrupt is deprecated:
./Modules/signalmodule.c:667:5: warning: ‘siginterrupt’ is deprecated: Use sigaction with SA_RESTART instead [-Wdeprecated-declarations]
667 | if (siginterrupt(signalnum, flag)<0) {
Victor Stinner [Wed, 2 Sep 2020 11:11:21 +0000 (13:11 +0200)]
bpo-41685: Don't pin setuptools version anymore in Doc/Makefile (GH-22062)
setuptools 50.0.2 is now compatible with Python 3.10:
https://github.com/pypa/setuptools/pull/2361
Victor Stinner [Wed, 2 Sep 2020 10:29:31 +0000 (12:29 +0200)]
bpo-40204: Update Sphinx to version 3.2.1 in Doc/Makefile (GH-22043)
Mohamed Koubaa [Wed, 2 Sep 2020 09:55:19 +0000 (04:55 -0500)]
bpo-
1635741 : Port _sha3 module to multi-phase init (GH-21855)
Port the _sha3 extension module to multi-phase init (PEP 489).
Convert static types to heap types.
Mohamed Koubaa [Wed, 2 Sep 2020 09:45:13 +0000 (04:45 -0500)]
bpo-
1635741 : Port _blake2 module to multi-phase init (GH-21856)
Port the _blake2 extension module to the multi-phase
initialization API (PEP 489).
han-solo [Wed, 2 Sep 2020 08:56:37 +0000 (04:56 -0400)]
Fixed mistake in test for f-string error description (GH-22036) (GH-22059)
Raymond Hettinger [Wed, 2 Sep 2020 05:00:50 +0000 (22:00 -0700)]
Improve hypot() accuracy with three separate accumulators (GH-22032)
Andre Delfino [Wed, 2 Sep 2020 03:22:55 +0000 (00:22 -0300)]
Remove reference to Boa Constructor. (GH-22012)
Andre Delfino [Wed, 2 Sep 2020 03:21:12 +0000 (00:21 -0300)]
[doc] Remove references to PyChecker. (GH-22011)
Benjamin Peterson [Wed, 2 Sep 2020 01:36:42 +0000 (20:36 -0500)]
Note the buffer slots can be set with PyType_Spec with the unlimited API. (GH-22031)
Follow up to
f7c4e236429606e1c982cacf24e10fc86ef4462f .
Shantanu [Tue, 1 Sep 2020 21:18:07 +0000 (14:18 -0700)]
bpo-39349: Add cancel_futures to Executor.shutdown base class (GH-22023)
* Add cancel_futures parameter to the Executor base class, since it was missed in the original PR (https://github.com/python/cpython/pull/18057) that added cancel_futures.
Pablo Galindo [Tue, 1 Sep 2020 18:39:46 +0000 (19:39 +0100)]
bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH-22020)
When allocating MemoryError classes, there is some logic to use
pre-allocated instances in a freelist only if the type that is being
allocated is not a subclass of MemoryError. Unfortunately in the
destructor this logic is not present so the freelist is altered even
with subclasses of MemoryError.
Marek Madejski [Tue, 1 Sep 2020 16:42:41 +0000 (18:42 +0200)]
bpo-41528: Use math module in turtle (GH-21837)
Use angle-related functions from math module instead of reinventing the wheel.
Victor Stinner [Tue, 1 Sep 2020 16:25:14 +0000 (18:25 +0200)]
bpo-41617: Fix pycore_bitutils.h to support clang 3.0 (GH-22042)
__builtin_bswap16() is not available in LLVM clang 3.0.
han-solo [Tue, 1 Sep 2020 14:34:29 +0000 (10:34 -0400)]
bpo-41681: Fix for `f-string/str.format` error description when using 2 `,` in format specifier (GH-22036)
* Fixed `f-string/str.format` error description when using two `,` in format specifier.
Co-authored-by: millefalcon <hanish0019@hmail.com>
Andre Delfino [Tue, 1 Sep 2020 12:59:46 +0000 (09:59 -0300)]
[doc] Add link to FileHandler in logging (GH-21940)
Co-authored-by: Andrés Delfino <adelfino@onapsis.com>
Ned Deily [Tue, 1 Sep 2020 09:40:27 +0000 (05:40 -0400)]
bpo-41685: Temporarily pin setuptools to 49.2.1 in Docs venv. (GH-22038)
See https://github.com/pypa/setuptools/pull/2361
Andre Delfino [Tue, 1 Sep 2020 06:07:29 +0000 (03:07 -0300)]
[doc] Document VIRTUAL_ENV environment variable (GH-21970)