]>
git.ipfire.org Git - thirdparty/Python/cpython.git/log
Dong-hee Na [Mon, 28 Feb 2022 07:06:58 +0000 (16:06 +0900)]
bpo-46541: Remove unnecessary Py_VISIT (GH-31608)
Jannis Vajen [Sun, 27 Feb 2022 14:25:54 +0000 (15:25 +0100)]
bpo-46786: Make ElementTree write the HTML tags embed, source, track, wbr as empty tags (GH-31406)
See https://html.spec.whatwg.org/multipage/syntax.html#void-elements
for reference.
Victor Stinner [Sun, 27 Feb 2022 00:12:33 +0000 (01:12 +0100)]
bpo-46852: Restore test_getformat() test (GH-31601)
Victor Stinner [Sat, 26 Feb 2022 23:28:24 +0000 (00:28 +0100)]
bpo-46857: Fix refleak in OSError INIT_ALIAS() (GH-31594)
_Py_GetRefTotal() no longer decrements _PySet_Dummy refcount.
Kumar Aditya [Sat, 26 Feb 2022 23:25:46 +0000 (04:55 +0530)]
bpo-46748: Fix ctypes test_frozentable() (GH-31600)
Victor Stinner [Sat, 26 Feb 2022 23:14:28 +0000 (00:14 +0100)]
bpo-46606: os.getgroups() doesn't overallocate (GH-31569)
Yuxin Wu [Sat, 26 Feb 2022 18:29:51 +0000 (10:29 -0800)]
[doc] Add a note in howto/logging.rst about "do not log to root logger in libraries" (GH-31271)
Kumar Aditya [Sat, 26 Feb 2022 16:35:03 +0000 (22:05 +0530)]
Propagate errors (however unlikely) from _Py_Deepfreeze_Init() (GH-31596)
Tin Tvrtković [Sat, 26 Feb 2022 16:18:48 +0000 (17:18 +0100)]
Taskgroup tweaks (GH-31559)
Now uses .cancel()/.uncancel(), for even fewer broken edge cases.
Kumar Aditya [Sat, 26 Feb 2022 13:06:43 +0000 (18:36 +0530)]
bpo-44011: Document ssl_shutdown_timeout added by revisited asyncio SSL implementation (GH-31597)
Thomas Grainger [Sat, 26 Feb 2022 12:05:20 +0000 (12:05 +0000)]
bpo-38415: Remove redundant AsyncContextDecorator.__call__ override from _AsyncGeneratorContextManager (GH-30233)
Charlie Zhao [Sat, 26 Feb 2022 04:17:13 +0000 (12:17 +0800)]
bpo-45735: Promise the long-time truth that `args=list` works (GH-30982)
For threads, and for multiprocessing, it's always been the case that ``args=list`` works fine when passed to ``Process()`` or ``Thread()``, and such code is common in the wild. But, according to the docs, only a tuple can be used. This brings the docs into synch with reality.
Doc changes by Charlie Zhao.
Co-authored-by: Tim Peters <tim.peters@gmail.com>
Victor Stinner [Fri, 25 Feb 2022 23:53:27 +0000 (00:53 +0100)]
bpo-46852: Remove the float.__set_format__() method (GH-31585)
Remove the undocumented private float.__set_format__() method,
previously known as float.__set_format__() in Python 3.7. Its
docstring said: "You probably don't want to use this function. It
exists mainly to be used in Python's test suite."
Oleg Iarygin [Fri, 25 Feb 2022 23:16:59 +0000 (02:16 +0300)]
bpo-46816: Remove declarations for non-__STDC__ compilers (GH-31466)
After Python switched to C11, there is a guarantee that every compiler
conforms to ISO C so checks of __STDC__ have no sense.
Kumar Aditya [Fri, 25 Feb 2022 18:05:24 +0000 (23:35 +0530)]
bpo-46712: Share global string identifiers in deepfreeze (GH-31261)
Where appropriate, deepfreeze.c now uses `&_Py_ID(blah)` references instead of locally defining constants. This saves some space.
Victor Stinner [Fri, 25 Feb 2022 17:24:25 +0000 (18:24 +0100)]
bpo-46857: Fix test_embed.test_no_memleak() on Windows (GH-31589)
Tolerate a leak of 1 reference and 1 memory block until it's fixed.
Kumar Aditya [Fri, 25 Feb 2022 16:41:19 +0000 (22:11 +0530)]
bpo-26897: Clarify Popen stdin, stdout, stderr file object docs (GH-30231)
Victor Stinner [Fri, 25 Feb 2022 15:22:00 +0000 (16:22 +0100)]
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Rename also struct _interpreter_frame to struct _PyInterpreterFrame.
Reduce risk of name conflicts if a project includes pycore_frame.h.
Victor Stinner [Fri, 25 Feb 2022 15:19:30 +0000 (16:19 +0100)]
bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580)
Move the private unexported _PyArg_Fini() function to the internal C
API: to the pycore_pylifecycle.h header file.
Victor Stinner [Fri, 25 Feb 2022 15:07:14 +0000 (16:07 +0100)]
bpo-45316: Move private functions to internal C API (GH-31579)
Move the unexported private functions to the internal C API:
* pycore_frame.h: _PyFrame_New_NoTrack()
* pycore_function.h: _PyFunction_GetVersionForCurrentState()
* pycore_genobject.h: _PyAsyncGenValueWrapperNew()
* pycore_genobject.h: _PyCoro_GetAwaitableIter()
* pycore_genobject.h: _PyGen_yf()
Raymond Hettinger [Fri, 25 Feb 2022 14:49:53 +0000 (08:49 -0600)]
Update dict/OrderedDict differences with code equivalents. (GH-31563)
Victor Stinner [Fri, 25 Feb 2022 14:41:55 +0000 (15:41 +0100)]
bpo-45316: Move private PyDict functions to internal C API (GH-31577)
Move the following private unexported functions to the internal C API
headers:
* _PyDictKeys_GetVersionForCurrentState()
* _PyDictKeys_StringLookup()
* _PyDict_FromKeys()
* _PyDict_GetItemHint()
* _PyDict_KeysSize()
* _PyDict_LoadGlobal()
* _PyDict_NewKeysForClass()
* _PyDict_Pop_KnownHash()
* _PyDict_SetItem_Take2()
* _PyObjectDict_SetItem()
* _PyObject_MakeDictFromInstanceAttributes()
* _Py_dict_lookup()
Victor Stinner [Fri, 25 Feb 2022 14:41:32 +0000 (15:41 +0100)]
bpo-45316: Move private PyCode C API to internal C API (GH-31576)
Rename private functions (no exported), add an underscore prefix:
* PyLineTable_InitAddressRange() => _PyLineTable_InitAddressRange()
* PyLineTable_NextAddressRange() => _PyLineTable_NextAddressRange()
* PyLineTable_PreviousAddressRange() => _PyLineTable_PreviousAddressRange()
Move private functions to the internal C API:
* _PyCode_Addr2EndLine()
* _PyCode_Addr2EndOffset()
* _PyCode_Addr2Offset()
* _PyCode_InitAddressRange()
* _PyCode_InitEndAddressRange(
* _PyLineTable_InitAddressRange()
* _PyLineTable_NextAddressRange()
* _PyLineTable_PreviousAddressRange()
No longer export the following internal functions:
* _PyCode_GetVarnames()
* _PyCode_GetCellvars()
* _PyCode_GetFreevars()
* _Py_GetSpecializationStats()
Add "extern" to pycore_code.h functions to identify them more easiliy
(they are still not exported).
Irit Katriel [Fri, 25 Feb 2022 12:17:50 +0000 (12:17 +0000)]
bpo-46808: remove NEXT_BLOCK() from compile.c (GH-31448)
Brandt Bucher [Fri, 25 Feb 2022 12:11:34 +0000 (04:11 -0800)]
bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)
Victor Stinner [Fri, 25 Feb 2022 11:53:19 +0000 (12:53 +0100)]
bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530)
Move the PyFrameObject type definition (struct _frame) to the
internal C API pycore_frame.h header file.
Victor Stinner [Fri, 25 Feb 2022 11:34:00 +0000 (12:34 +0100)]
bpo-
1635741 : Fix winreg reference leaks (GH-31560)
Clear also the PyHKEY_Type static type at exit.
Serhiy Storchaka [Fri, 25 Feb 2022 11:31:03 +0000 (13:31 +0200)]
bpo-46756: Fix authorization check in urllib.request (GH-31353)
Fix a bug in urllib.request.HTTPPasswordMgr.find_user_password() and
urllib.request.HTTPPasswordMgrWithPriorAuth.is_authenticated() which
allowed to bypass authorization. For example, access to URI "example.org/foobar"
was allowed if the user was authorized for URI "example.org/foo".
slateny [Fri, 25 Feb 2022 11:07:52 +0000 (03:07 -0800)]
bpo-34429: Noted TemporaryFile behavior on non-Posix/non-Cygwin systems (GH-31547)
Petr Viktorin [Fri, 25 Feb 2022 08:25:54 +0000 (09:25 +0100)]
bpo-46748: Don't import <stdbool.h> in public headers (GH-31553)
<stdbool.h> is the standard/modern way to define embedd/extends Python free to define bool, true and false, but there are existing applications that use slightly different redefinitions, which fail if the header is included.
It's OK to use stdbool outside the public headers, though.
https://bugs.python.org/issue46748
Serhiy Storchaka [Fri, 25 Feb 2022 08:25:12 +0000 (10:25 +0200)]
bpo-46820: Refactor tests for ambiguous end of numerical literal (GH-31494)
Inada Naoki [Fri, 25 Feb 2022 05:13:14 +0000 (14:13 +0900)]
bpo-46606: Remove redundant +1. (GH-31561)
Victor Stinner [Fri, 25 Feb 2022 02:05:25 +0000 (03:05 +0100)]
bpo-46852: Rename float.__set_format__() to float.__setformat__() (GH-31558)
Rename the private undocumented float.__set_format__() method to
float.__setformat__() to fix a typo introduced in Python 3.7. The
method is only used by test_float.
The change enables again test_float tests on the float format which
were previously skipped because of the typo.
The typo was introduced in Python 3.7 by bpo-20185
in commit
b5c51d3dd95bbfde533655fb86ac0f96f771ba7b .
Victor Stinner [Fri, 25 Feb 2022 00:32:57 +0000 (01:32 +0100)]
bpo-46656: Remove Py_NO_NAN macro (GH-31160)
Building Python now requires support for floating point Not-a-Number
(NaN): remove the Py_NO_NAN macro.
Victor Stinner [Fri, 25 Feb 2022 00:31:30 +0000 (01:31 +0100)]
bpo-46656: Building Python now requires a C11 compiler (GH-31557)
See PEP 7:
https://python.github.io/peps/pep-0007/#c-dialect
Victor Stinner [Thu, 24 Feb 2022 23:32:02 +0000 (00:32 +0100)]
bpo-46623: Skip two test_zlib tests on s390x (GH-31096)
Skip test_pair() and test_speech128() of test_zlib on s390x since
they fail if zlib uses the s390x hardware accelerator.
Victor Stinner [Thu, 24 Feb 2022 23:03:20 +0000 (00:03 +0100)]
bpo-
1635741 : test_embed cheks that Python does not leak (GH-31555)
Christian Heimes [Thu, 24 Feb 2022 19:51:57 +0000 (21:51 +0200)]
bpo-45898: Remove duplicate symbols from _ctypes/cfield.c (GH-29791)
Mark Shannon [Thu, 24 Feb 2022 19:34:57 +0000 (19:34 +0000)]
bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)
Kumar Aditya [Thu, 24 Feb 2022 16:54:06 +0000 (22:24 +0530)]
bpo-46430: Fix memory leak in interned strings of deep-frozen modules (GH-31549)
Victor Stinner [Thu, 24 Feb 2022 16:51:59 +0000 (17:51 +0100)]
bpo-45459: C API uses type names rather than structure names (GH-31528)
Thanks to the new pytypedefs.h, it becomes to use type names like
PyObject rather like structure names like "struct _object".
Victor Stinner [Thu, 24 Feb 2022 16:07:12 +0000 (17:07 +0100)]
bpo-45459: Add pytypedefs.h header file (GH-31527)
Move forward declarations of Python C API types to a new pytypedefs.h
header file to solve interdependency issues between header files.
pytypedefs.h contains forward declarations of the following types:
* PyCodeObject
* PyFrameObject
* PyGetSetDef
* PyInterpreterState
* PyLongObject
* PyMemberDef
* PyMethodDef
* PyModuleDef
* PyObject
* PyThreadState
* PyTypeObject
Dennis Sweeney [Thu, 24 Feb 2022 14:55:59 +0000 (09:55 -0500)]
bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH-31484)
Victor Stinner [Thu, 24 Feb 2022 13:29:08 +0000 (14:29 +0100)]
bpo-46659: Enhance LocaleTextCalendar for C locale (GH-31214)
If the LC_TIME locale is "C", use the user preferred locale.
Mark Shannon [Thu, 24 Feb 2022 12:10:53 +0000 (12:10 +0000)]
Add (undocumented) _co_quickened attribute for code object. (GH-31552)
Tin Tvrtković [Thu, 24 Feb 2022 02:17:00 +0000 (03:17 +0100)]
bpo-46771: Implement task cancel requests counter (GH-31513)
This changes cancelling() and uncancel() to return the count of pending cancellations.
This can be used to avoid bugs in certain edge cases (e.g. two timeouts going off at the same time).
dependabot[bot] [Wed, 23 Feb 2022 21:16:47 +0000 (23:16 +0200)]
build(deps): bump actions/upload-artifact from 2.2.4 to 2.3.1 (GH-30325)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.2.4 to 2.3.1.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v2.2.4...v2.3.1)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Victor Stinner [Wed, 23 Feb 2022 19:20:03 +0000 (20:20 +0100)]
bpo-40421: What's New in Python 3.11: PyFrameObject.f_lasti (GH-31536)
Suggest replacing PyCode_Addr2Line() with PyFrame_GetLineNumber().
Brandt Bucher [Wed, 23 Feb 2022 18:53:24 +0000 (10:53 -0800)]
bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)
Victor Stinner [Wed, 23 Feb 2022 18:49:21 +0000 (19:49 +0100)]
bpo-40421: Fix PyFrame_GetCode() documentation (GH-31535)
Fix PyFrame_GetBack() and PyFrame_GetCode() return type in
the documentation.
Dong-hee Na [Wed, 23 Feb 2022 17:59:32 +0000 (02:59 +0900)]
closes bpo-46736: SimpleHTTPRequestHandler now uses HTML5. (GH-31533)
Co-authored-by: Oleg Iarygin <dralife@yandex.ru>
Victor Stinner [Wed, 23 Feb 2022 17:16:23 +0000 (18:16 +0100)]
bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171)
Remove the HAVE_PY_SET_53BIT_PRECISION macro (moved to the internal
C API).
* Move HAVE_PY_SET_53BIT_PRECISION macro to pycore_pymath.h.
* Replace PY_NO_SHORT_FLOAT_REPR macro with _PY_SHORT_FLOAT_REPR
macro which is always defined. gcc -Wundef emits a warning when
using _PY_SHORT_FLOAT_REPR but the macro is not defined, if
pycore_pymath.h include was forgotten.
Brandt Bucher [Wed, 23 Feb 2022 11:06:25 +0000 (03:06 -0800)]
bpo-45885: Don't un-adapt `COMPARE_OP` when collecting stats (GH-31516)
Brandt Bucher [Wed, 23 Feb 2022 11:00:28 +0000 (03:00 -0800)]
bpo-46329: Fix test failure when `Py_STATS` is enabled (GH-31511)
Eric V. Smith [Wed, 23 Feb 2022 05:14:35 +0000 (00:14 -0500)]
bpo-46757: Add a test to verify dataclass's __post_init__ isn't being automatically added. (GH-31523)
Jelle Zijlstra [Wed, 23 Feb 2022 04:34:17 +0000 (20:34 -0800)]
Minor fixes to C API docs (GH-31501)
* C API docs: move PyErr_SetImportErrorSubclass docs
It was in the section about warnings, but it makes more sense to
put it with PyErr_SetImportError.
* C API docs: document closeit argument to PyRun_AnyFileExFlags
It was already documented for PyRun_SimpleFileExFlags.
* textual fixes to unicode docs
* Move paragraph about tp_dealloc into tp_dealloc section
* __aiter__ returns an async iterator, not an awaitable
Dong-hee Na [Wed, 23 Feb 2022 01:40:30 +0000 (10:40 +0900)]
bpo-46794: Bump up the libexpat version into 2.4.6 (GH-31487)
Thomas Grainger [Wed, 23 Feb 2022 00:25:00 +0000 (00:25 +0000)]
bpo-46522: fix concurrent.futures and io AttributeError messages (GH-30887)
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Eric Snow [Wed, 23 Feb 2022 00:23:51 +0000 (17:23 -0700)]
bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects (gh-31366)
https://bugs.python.org/issue46765
Andrew Svetlov [Tue, 22 Feb 2022 23:39:24 +0000 (01:39 +0200)]
Inherit asyncio proactor datagram transport from asyncio.DatagramTransport (#31512)
Victor Stinner [Tue, 22 Feb 2022 22:11:48 +0000 (23:11 +0100)]
bpo-45459: Rename buffer.h to pybuffer.h (#31201)
Rename Include/buffer.h header file to Include/pybuffer.h to avoid
conflicts with projects having an existing "buffer.h" header file.
* Incude pybuffer.h before object.h in Python.h.
* Remove #include "buffer.h" from Include/cpython/object.h.
* Add a forward declaration of the PyObject type in pybuffer.h to fix
an inter-dependency issue.
Victor Stinner [Tue, 22 Feb 2022 21:06:43 +0000 (22:06 +0100)]
bpo-46659: Deprecate locale.getdefaultlocale() (GH-31206)
The locale.getdefaultlocale() function is deprecated and will be
removed in Python 3.13. Use locale.setlocale(),
locale.getpreferredencoding(False) and locale.getlocale() functions
instead.
Victor Stinner [Tue, 22 Feb 2022 21:04:07 +0000 (22:04 +0100)]
bpo-46659: Fix the MBCS codec alias on Windows (GH-31218)
Thomas Grainger [Tue, 22 Feb 2022 20:35:57 +0000 (20:35 +0000)]
bpo-46827: pass sock.type to getaddrinfo in sock_connect (GH-31499)
Co-authored-by: Thomas Grainger <tagrain@gmail.com>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Irit Katriel [Tue, 22 Feb 2022 18:28:58 +0000 (18:28 +0000)]
bpo-46729: add number of sub-exceptions in str() of BaseExceptionGroup (GH-31294)
vidhya [Tue, 22 Feb 2022 18:06:41 +0000 (13:06 -0500)]
bpo-20923 : [doc] Explain ConfigParser 'valid section name' and .SECTCRE (GH-31413)
slateny [Tue, 22 Feb 2022 17:36:13 +0000 (09:36 -0800)]
bpo-36557: Updated wording for using/windows (GH-31457)
Pablo Galindo Salgado [Tue, 22 Feb 2022 17:26:46 +0000 (17:26 +0000)]
bpo-46725: Document starred expressions in for statements (GH-31481)
Automerge-Triggered-By: GH:pablogsal
Mark Shannon [Tue, 22 Feb 2022 17:18:10 +0000 (17:18 +0000)]
Fix reporting of specialization stats. (GH-31503)
Steve Dower [Tue, 22 Feb 2022 16:25:05 +0000 (16:25 +0000)]
bpo-46822: Increase timeout for test_create_server_ssl_over_ssl to match underlying timeouts (GH-31502)
Mark Shannon [Tue, 22 Feb 2022 15:44:31 +0000 (15:44 +0000)]
Remove pair-counts from specialization stats. (GH-31500)
Mark Shannon [Tue, 22 Feb 2022 14:57:01 +0000 (14:57 +0000)]
Move call specializations from CALL to PRECALL. (GH-31496)
Inada Naoki [Tue, 22 Feb 2022 11:03:15 +0000 (20:03 +0900)]
dict: Add dk_log2_index_bytes (GH-31439)
Serhiy Storchaka [Tue, 22 Feb 2022 07:51:51 +0000 (09:51 +0200)]
bpo-46820: Fix a SyntaxError in a numeric literal followed by "not in" (GH-31479)
Fix parsing a numeric literal immediately (without spaces) followed by
"not in" keywords, like in "1not in x". Now the parser only emits
a warning, not a syntax error.
Inada Naoki [Tue, 22 Feb 2022 02:59:27 +0000 (11:59 +0900)]
bpo-46606: Reduce stack usage of getgroups and setgroups (GH-31073)
NGROUPS_MAX was 32 before Linux 2.6.4 but 65536 since Linux 2.6.4.
Andrew Svetlov [Mon, 21 Feb 2022 20:59:04 +0000 (22:59 +0200)]
bpo-45390: Propagate CancelledError's message from cancelled task to its awaiter (GH-31383)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Mark Shannon [Mon, 21 Feb 2022 18:26:47 +0000 (18:26 +0000)]
bpo-46329: Streamline calling sequence a bit. (GH-31465)
* Move handling of bound-methods to PRECALL.
* Remove call_shape.postcall_shrink
* Remove call_shape.callable
* Remove call_shape.callable. Change CALL oparg to match PRECALL oparg.
* Move KW_NAMES before PRECALL.
* Update opcode docs in dis.rst
Jelle Zijlstra [Mon, 21 Feb 2022 15:42:27 +0000 (07:42 -0800)]
fix __bool__ docstring (GH-31301)
Sebastian Pipping [Mon, 21 Feb 2022 14:48:32 +0000 (15:48 +0100)]
bpo-46811: Make test suite support Expat >=2.4.5 (GH-31453)
Curly brackets were never allowed in namespace URIs
according to RFC 3986, and so-called namespace-validating
XML parsers have the right to reject them a invalid URIs.
libexpat >=2.4.5 has become strcter in that regard due to
related security issues; with ET.XML instantiating a
namespace-aware parser under the hood, this test has no
future in CPython.
References:
- https://datatracker.ietf.org/doc/html/rfc3968
- https://www.w3.org/TR/xml-names/
Also, test_minidom.py: Support Expat >=2.4.5
Dong-hee Na [Mon, 21 Feb 2022 14:46:52 +0000 (23:46 +0900)]
bpo-46541: Remove usage of _Py_IDENTIFIER from pyexpat (GH-31468)
Serhiy Storchaka [Mon, 21 Feb 2022 11:25:52 +0000 (13:25 +0200)]
bpo-46796: Simplify handling of removed parameter "loop" in asyncio (GH-31431)
Christian Heimes [Sun, 20 Feb 2022 20:42:31 +0000 (22:42 +0200)]
bpo-46232: Fix parsing of certs with bit string in DN (GH-30351)
Lital Natan [Sun, 20 Feb 2022 16:02:10 +0000 (18:02 +0200)]
bpo-39327: Close file descriptors as soon as possible in shutil.rmtree (GH-31384)
It fixes the "Text File Busy" OSError when using 'rmtree' on a
windows-managed filesystem in via the VirtualBox shared folder
(and possible other scenarios like a windows-managed network file
system).
Josh Smith [Sun, 20 Feb 2022 12:31:09 +0000 (07:31 -0500)]
replace `self` param with more appropriate `cls` in classmethods (GH-31402)
Andrew Svetlov [Sun, 20 Feb 2022 12:17:15 +0000 (14:17 +0200)]
Raise TypeError if SSLSocket is passed to asyncio transport-based methods (GH-31442)
Nikita Sobolev [Sun, 20 Feb 2022 10:24:00 +0000 (13:24 +0300)]
bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Andrew Svetlov [Sun, 20 Feb 2022 10:07:00 +0000 (12:07 +0200)]
bpo-46752: Uniform TaskGroup.__repr__ (GH-31409)
Raymond Hettinger [Sun, 20 Feb 2022 05:02:30 +0000 (23:02 -0600)]
Improve discussion about how __getattr__ is invoked. (GH-31435)
Jelle Zijlstra [Sun, 20 Feb 2022 01:44:51 +0000 (17:44 -0800)]
bpo-46066: Check DeprecationWarning in test_typing (GH-31428)
Dennis Sweeney [Sat, 19 Feb 2022 05:57:36 +0000 (00:57 -0500)]
Use raw string to avoid deprecation warning (GH-31427)
Inada Naoki [Sat, 19 Feb 2022 04:15:20 +0000 (13:15 +0900)]
dict: Use DK_LOG_SIZE in hot loop. (GH-31405)
DK_LOG_SIZE(key) < 8 is faster than DK_SIZE(key) <= 0xff, at least on GCC.
Charles Brunet [Sat, 19 Feb 2022 02:23:53 +0000 (21:23 -0500)]
Counter doc mentions three methods, but lists four (GH-30706)
Was probably caused by the addition of the `total()` method
Nikita Sobolev [Sat, 19 Feb 2022 01:56:30 +0000 (04:56 +0300)]
bpo-46685: improve test coverage of `Self` and `Never` in `typing` (GH-31222)
Nikita Sobolev [Sat, 19 Feb 2022 01:54:01 +0000 (04:54 +0300)]
bpo-46603: improve coverage of `typing._strip_annotations` (GH-31063)
Nikita Sobolev [Sat, 19 Feb 2022 01:53:29 +0000 (04:53 +0300)]
bpo-46571: improve `typing.no_type_check` to skip foreign objects (GH-31042)
There are several changes:
1. We now don't explicitly check for any base / sub types, because new name check covers it
2. I've also checked that `no_type_check` do not modify foreign functions. It was the same as with `type`s
3. I've also covered `except TypeError` in `no_type_check` with a simple test case, it was not covered at all
4. I also felt like adding `lambda` test is a good idea: because `lambda` is a bit of both in class bodies: a function and an assignment
<!-- issue-number: [bpo-46571](https://bugs.python.org/issue46571) -->
https://bugs.python.org/issue46571
<!-- /issue-number -->
Jörn Heissler [Sat, 19 Feb 2022 01:49:04 +0000 (02:49 +0100)]
[docs] Correct typos in SSLContext.sni_callback (GH-30623)
Co-authored-by: Jörn Heissler <nosuchaddress@joern-heissler.de>
Yilei "Dolee" Yang [Fri, 18 Feb 2022 22:33:06 +0000 (14:33 -0800)]
bpo-46784: Add newly exported expat symbols to the namespace. (GH-31397)
The libexpat 2.4.1 upgrade from introduced the following new exported symbols:
* `testingAccountingGetCountBytesDirect`
* `testingAccountingGetCountBytesIndirect`
* `unsignedCharToPrintable`
* `XML_SetBillionLaughsAttackProtectionActivationThreshold`
* `XML_SetBillionLaughsAttackProtectionMaximumAmplification`
We need to adjust [Modules/expat/pyexpatns.h](https://github.com/python/cpython/blob/master/Modules/expat/pyexpatns.h)
(The newer libexpat upgrade has no new symbols).
Automerge-Triggered-By: GH:gpshead
Hugo van Kemenade [Fri, 18 Feb 2022 19:28:12 +0000 (21:28 +0200)]
Process more stale PRs, oldest first (GH-31407)
Brandt Bucher [Fri, 18 Feb 2022 18:57:02 +0000 (10:57 -0800)]
"Own" pattern matching and peepholing (GH-31412)
Guido van Rossum [Fri, 18 Feb 2022 17:28:56 +0000 (09:28 -0800)]
Reduce flakiness of taskgroups test 13 (GH-31411)