summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* bpo-37295: Speed up math.comb(n, k) for 0 <= k <= n <= 67 (GH-30275)Mark Dickinson2021-12-282-0/+90
|
* bpo-45189: Drop the "list_frozen" command from _test_embed. (GH-30273)Dong-hee Na2021-12-282-32/+5
|
* bpo-46055: Speed up binary shifting operators (GH-30044)Xinhang Xu2021-12-274-3/+80
| | | Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
* bpo-46055: Streamline inner loop for right shifts (#30243)Mark Dickinson2021-12-271-7/+8
|
* bpo-45496: Allow flexibility in winfo_rgb tests (GH-30185)E-Paine2021-12-261-2/+9
|
* bpo-43413: Revert changes in set.__init__ (GH-28403)Serhiy Storchaka2021-12-264-6/+8
| | | | Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
* bpo-22815: Print unexpected successes in summary in TextTestResult (GH-30138)Serhiy Storchaka2021-12-263-8/+40
|
* bpo-23819: Fix asyncio tests on python optimized mode (GH-30195)Kumar Aditya2021-12-265-4/+9
|
* Fix typo in io.rst (GH-30218)David Gilbertson2021-12-261-1/+1
|
* doc: fix a typo in unittest.mock.rst (GH-30227)Joe2021-12-261-1/+1
|
* docs: Fix typos and use anchor for internal link (GH-30236)Rafael Fontenelle2021-12-261-9/+9
|
* Remove a NEWS entry for bpo-45878 (GH-30259)Serhiy Storchaka2021-12-261-10/+0
| | | The docs linter complains about it, and in general news entries for such changes are not required.
* bpo-46032: Check types in singledispatch's register() at declaration time ↵Serhiy Storchaka2021-12-253-5/+89
| | | | | | | | | (GH-30050) The registry() method of functools.singledispatch() functions checks now the first argument or the first parameter annotation and raises a TypeError if it is not supported. Previously unsupported "types" were ignored (e.g. typing.List[int]) or caused an error at calling time (e.g. list[int]).
* bpo-46120: State that `|` is preferred over `Union` (GH-30222)Nikita Sobolev2021-12-242-1/+2
| | | | Co-authored-by: Éric <merwok@netwok.org> Co-authored-by: Guido van Rossum <gvanrossum@gmail.com>
* bpo-46150: ensure `fakeuser` does not exist in ↵Nikita Sobolev2021-12-242-5/+15
| | | | | `PosixPathTest.test_expanduser` (GH-30240) Ensure `fakeuser` does not exist in `PosixPathTest.test_expanduser`
* Allow test_pathlib to pass on systems where fakeuser exists. (GH-30244)Gregory P. Smith2021-12-241-1/+1
|
* typos (#30239)Kumar Aditya2021-12-231-3/+3
|
* bpo-46157: fix typo in docs (GH-30237)Kumar Aditya2021-12-236-14/+14
|
* bpo-46140: take more Py_buffer arguments as const * (GH-30217)David Hewitt2021-12-227-22/+23
|
* bpo-46106: Update OpenSSL to 1.1.1m (GH-30211)Kumar Aditya2021-12-229-75/+17
| | | Co-authored-by: Ned Deily <nad@python.org>
* bpo-46107: ExceptionGroup.subgroup()/split() should copy __note__ to the ↵Irit Katriel2021-12-213-1/+9
| | | | parts (GH-30159)
* Update potentially confusing note for mean. (GH-30174)Mark Dickinson2021-12-211-4/+5
|
* bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser ↵Pablo Galindo Salgado2021-12-205-3197/+4602
| | | | | (GH-30177) Co-authored-by: Batuhan Taskaya <isidentical@gmail.com>
* bpo-23819: Get rid of assert statements in test_asyncio (GH-30212)Serhiy Storchaka2021-12-2010-63/+102
| | | | | | To keep checks even if run tests with optimized Python. Either use special assertion methods like assertEqual() or raise an AssertionError explicitly.
* bpo-46104: Fix example broken by GH-30148 (GH-30203)Alex Waygood2021-12-201-1/+1
| | | See discussion in GH-30179.
* Revert "bpo-46131: add fastpath for PyFloat_Check() (GH-30200)" (GH-30208)Raymond Hettinger2021-12-197-23/+0
| | | This reverts commit 2ef06d412531d1163dbc72877c88aedf3ed82a25.
* bpo-46131: add fastpath for PyFloat_Check() (#30200)Matti Picus2021-12-197-0/+23
|
* bpo-46076: Improve documentation for per-attribute docstrings with ↵Alex Waygood2021-12-191-3/+6
| | | | `__slots__` (GH-30109)
* bpo-46123: Disable optimizations for _freeze_module.exe on MSVC for faster ↵neonene2021-12-191-0/+3
| | | | building (GH-30181)
* bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198)Andrew Svetlov2021-12-193-261/+214
| | | Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
* bpo-46130: [docs] Add anchor for whatsnew/3.10 type hint section (GH-30199)Rafael Fontenelle2021-12-191-1/+2
| | | This allows the title to be translated to other languages without linking problems.
* bpo-42413: Replace `concurrent.futures.TimeoutError` and ↵Kumar Aditya2021-12-197-25/+26
| | | | | `asyncio.TimeoutError` with builtin `TimeoutError` (GH-30197) Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
* bpo-46125: Refactor tests to test traversable API directly. Includes changes ↵Jason R. Coombs2021-12-1911-213/+154
| | | | from importlib_resources 5.4.0. (GH-30189)
* bpo-46044: Fix doc typo introduced in GH-30043 (GH-30171)Matthias Bussonnier2021-12-181-1/+1
| | | | | | | See https://github.com/python/cpython/pull/30043/files#r770944718 My bad I likely messed up by using a repeat command in my editor Automerge-Triggered-By: GH:merwok
* bpo-40280: Add Tools/wasm with helpers for cross building (GH-29984)Christian Heimes2021-12-187-10/+380
| | | | Co-authored-by: Ethan Smith <ethan@ethanhs.me> Co-authored-by: Brett Cannon <brett@python.org>
* bpo-37578: glob.glob -- added include_hidden parameter (GH-30153)andrei kulakov2021-12-184-23/+68
| | | Automerge-Triggered-By: GH:asvetlov
* bpo-46113: Minor fixes in stdtypes documentation (GH-30167)Vivek Vashist2021-12-181-8/+8
| | | | | | | | | * Fix#1 - isidentifier() function output * Fix#2 Update the str.splitlines() function parameter * Fix#3 Removed unwanted full stop for str and bytes types double quotes examples. * Fix#4 Updated class dict from **kwarg to **kwargs
* bpo-46099: Fix pthread_getcpuclockid test on Solaris (GH-30140)Jakub Kulík2021-12-181-5/+6
| | | Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
* bpo-46088: Automatically detect or install bootstrap Python runtime when ↵Steve Dower2021-12-185-16/+49
| | | | building from Visual Studio (GH-30143)
* bpo-40915: Avoid compiler warnings by fixing mmapmodule conversion from ↵neonene2021-12-181-1/+2
| | | | LARGE_INTEGER to Py_ssize_t (GH-30175)
* bpo-46104: Reduce use of pre-PEP 526 syntax in typing docs (GH-30148)Alex Waygood2021-12-181-9/+8
| | | Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
* bpo-44035: Show git diff after autoreconf and regen (GH-30117)Christian Heimes2021-12-171-1/+3
|
* bpo-46114: Fix OpenSSL version check for 3.0.1 (GH-30170)Christian Heimes2021-12-174-3/+8
|
* bpo-46072: Add top level stats struct (GH-30169)Mark Shannon2021-12-176-103/+154
|
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-1714-392/+231
| | | | | | | | * Do not PUSH/POP traceback or type to the stack as part of exc_info * Remove exc_traceback and exc_type from _PyErr_StackItem * Add to what's new, because this change breaks things like Cython
* Doc: some rst linting. (GH-30149)Julien Palard2021-12-173-4/+4
|
* bpo-46111: Fix unittest tests in optimized mode (GH-30163)Serhiy Storchaka2021-12-173-3/+6
|
* Fix a typo in the message from make_ssl_certs. (GH-30152)Yilei "Dolee" Yang2021-12-171-1/+1
| | | | | The file is utils.py not util.py. Automerge-Triggered-By: GH:gpshead
* bpo-45635: Do not suppress errors in functions called from _PyErr_Display ↵Irit Katriel2021-12-162-113/+158
| | | | | | (GH-30073) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
* bpo-44893: Implement EntryPoint as simple class with attributes. (GH-30150)Jason R. Coombs2021-12-1611-108/+269
| | | | | * bpo-44893: Implement EntryPoint as simple class and deprecate tuple access in favor of attribute access. Syncs with importlib_metadata 4.8.1. * Apply refactorings found in importlib_metadata 4.8.2.