]>
git.ipfire.org Git - thirdparty/Python/cpython.git/log
Dong-hee Na [Thu, 2 Mar 2023 11:32:05 +0000 (20:32 +0900)]
gh-101101: Fix test_code_extra to reset value for refleak test (gh-102350)
Hyunkyun Moon [Thu, 2 Mar 2023 11:10:08 +0000 (20:10 +0900)]
gh-95672: Update memory_watchdog to use test.support.get_pagesize (gh-102365)
Stefan Pochmann [Thu, 2 Mar 2023 03:16:23 +0000 (04:16 +0100)]
gh-102088 Optimize iter_index itertools recipe (GH-102360)
Hyunkyun Moon [Wed, 1 Mar 2023 14:56:19 +0000 (23:56 +0900)]
gh-95672 skip fcntl when pipesize is smaller than pagesize (gh-102163)
Max Bachmann [Wed, 1 Mar 2023 14:50:38 +0000 (15:50 +0100)]
gh-102344: Reimplement winreg QueryValue / SetValue using QueryValueEx / SetValueEx (GH-102345)
The newer APIs are more widely available than the old ones, and are called in a way to preserve functionality.
Max Bachmann [Wed, 1 Mar 2023 12:01:39 +0000 (13:01 +0100)]
gh-102336: Ensure CancelIoEx result is not ignored (GH-102347)
fix ignored return value
Irit Katriel [Wed, 1 Mar 2023 09:49:23 +0000 (09:49 +0000)]
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives in tkinter module (#102319)
Inada Naoki [Wed, 1 Mar 2023 00:48:15 +0000 (09:48 +0900)]
Doc: Fix minor error in ePub (GH-100614)
Fix issue reported https://mail.python.org/archives/list/docs@python.org/message/KE7OIAO53P4XRC4ZOWPDHA63ZQJCHEC3/
Max Bachmann [Wed, 1 Mar 2023 00:31:21 +0000 (01:31 +0100)]
gh-102336: Remove code specifically for handling Windows 7 (GH-102337)
Anthony Sottile [Tue, 28 Feb 2023 21:34:06 +0000 (16:34 -0500)]
gh-99108: Add missing md5/sha1 defines to Modules/Setup (#102308)
Eric Snow [Tue, 28 Feb 2023 21:16:39 +0000 (14:16 -0700)]
gh-100227: Move _str_replace_inf to PyInterpreterState (gh-102333)
https://github.com/python/cpython/issues/100227
Eric Snow [Tue, 28 Feb 2023 20:14:40 +0000 (13:14 -0700)]
gh-100227: Move the dtoa State to PyInterpreterState (gh-102331)
https://github.com/python/cpython/issues/100227
Guido van Rossum [Tue, 28 Feb 2023 16:49:35 +0000 (08:49 -0800)]
GH-102305: Expand some macros in generated_cases.c.h (#102309)
* Emit straight stack_pointer[-i] instead of PEEK(i), POKE(i, ...)
* Expand JUMPBY() and NEXTOPARG(), and fix a perf bug
Ee Durbin [Tue, 28 Feb 2023 13:23:39 +0000 (08:23 -0500)]
Migrate to new PSF mailgun account (#102284)
Our legacy mailgun account is associated with a parent rackspace account that I am trying to decomission.
The necessary secret has been added to the GitHub Actions Secrets already, so this is ready to go on approval.
Irit Katriel [Tue, 28 Feb 2023 11:50:52 +0000 (11:50 +0000)]
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in Python/) (#102193)
Furkan Onder [Tue, 28 Feb 2023 11:43:00 +0000 (11:43 +0000)]
GH-90744: Fix erroneous doc links in the sys module (#101319)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Irit Katriel [Tue, 28 Feb 2023 11:29:32 +0000 (11:29 +0000)]
gh-87092: Make jump target label equal to the offset of the target in the instructions sequence (#102093)
Petr Viktorin [Tue, 28 Feb 2023 08:31:01 +0000 (09:31 +0100)]
gh-101101: Unstable C API tier (PEP 689) (GH-101102)
JosephSBoyle [Tue, 28 Feb 2023 06:11:52 +0000 (06:11 +0000)]
IDLE: Simplify DynOptionsMenu __init__code (#101371)
Refactor DynOptionMenu's initializer to not copy kwargs dict and use subscripting;
improve its htest.
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Steven Troxler [Mon, 27 Feb 2023 21:16:11 +0000 (13:16 -0800)]
gh-101561: Add typing.override decorator (#101564)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Sergey B Kirpichev [Mon, 27 Feb 2023 19:11:28 +0000 (22:11 +0300)]
gh-101825: Clarify that as_integer_ratio() output is always normalized (#101843)
Make docstrings for `as_integer_ratio` consistent across types, and document that
the returned pair is always normalized (coprime integers, with positive denominator).
---------
Co-authored-by: Owain Davies <116417456+OTheDev@users.noreply.github.com>
Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
Sergey B Kirpichev [Mon, 27 Feb 2023 18:53:22 +0000 (21:53 +0300)]
gh-101773: Optimize creation of Fractions in private methods (#101780)
This PR adds a private `Fraction._from_coprime_ints` classmethod for internal creations of `Fraction` objects, replacing the use of `_normalize=False` in the existing constructor. This speeds up creation of `Fraction` objects arising from calculations. The `_normalize` argument to the `Fraction` constructor has been removed.
Co-authored-by: Pieter Eendebak <pieter.eendebak@gmail.com>
Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
Eric Snow [Mon, 27 Feb 2023 16:21:18 +0000 (09:21 -0700)]
gh-102251: Updates to test_imp Toward Fixing Some Refleaks (gh-102254)
This is related to fixing the refleaks introduced by commit
096d009 . I haven't been able to find the leak yet, but these changes are a consequence of that effort. This includes some cleanup, some tweaks to the existing tests, and a bunch of new test cases. The only change here that might have impact outside the tests in question is in imp.py, where I update imp.load_dynamic() to use spec_from_file_location() instead of creating a ModuleSpec directly.
Also note that I've updated the tests to only skip if we're checking for refleaks (regrtest's --huntrleaks), whereas in gh-101969 I had skipped the tests entirely. The tests will be useful for some upcoming work and I'd rather the refleaks not hold that up. (It isn't clear how quickly we'll be able to fix the leaking code, though it will certainly be done in the short term.)
https://github.com/python/cpython/issues/102251
Gouvernathor [Mon, 27 Feb 2023 15:13:18 +0000 (16:13 +0100)]
gh-102296 Document that inspect.Parameter kinds support ordering (GH-102297)
Automerge-Triggered-By: GH:AlexWaygood
Dennis Sweeney [Mon, 27 Feb 2023 10:46:40 +0000 (05:46 -0500)]
gh-102250: Fix double-decref in COMPARE_AND_BRANCH error case (GH-102287)
Nikita Sobolev [Mon, 27 Feb 2023 07:26:21 +0000 (10:26 +0300)]
gh-101100: Fix sphinx warnings in `types` module (#102274)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Rotzbua [Mon, 27 Feb 2023 02:10:34 +0000 (03:10 +0100)]
gh-91038: Change default argument value to `False` instead of `0` (#31621)
The argument is used as a switch and corresponds to a boolean logic. Therefore it is more intuitive to use the corresponding constant `False` as default value instead of the integer `0`.
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
Jelle Zijlstra [Sun, 26 Feb 2023 22:45:37 +0000 (14:45 -0800)]
gh-101765: unicodeobject: use Py_XDECREF correctly (#102283)
VMan [Sun, 26 Feb 2023 13:15:27 +0000 (13:15 +0000)]
[doc] Improve grammar/fix missing word (GH-102060)
Skip Montanaro [Sun, 26 Feb 2023 02:22:16 +0000 (20:22 -0600)]
gh-102259: Fix re doc issue regarding right square brackets (#102264)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Jelle Zijlstra [Sun, 26 Feb 2023 00:01:58 +0000 (16:01 -0800)]
gh-101765: Fix refcount issues in list and unicode pickling (#102265)
Followup from #101769.
Nikita Sobolev [Sat, 25 Feb 2023 21:48:00 +0000 (00:48 +0300)]
gh-101100: Fix sphinx warnings in `typing` module docs (#102260)
Eclips4 [Sat, 25 Feb 2023 20:50:24 +0000 (23:50 +0300)]
gh-102252: Improve coverage of test_bool.py (#102253)
Add tests for conversion from bool to complex.
Jason R. Coombs [Sat, 25 Feb 2023 16:15:48 +0000 (11:15 -0500)]
gh-102209: Sync with zipp 3.15 moving complexity tests into dedicated module (#102232)
Sync with jaraco/zipp@
757a4e1a .
Jelle Zijlstra [Sat, 25 Feb 2023 13:21:32 +0000 (05:21 -0800)]
asyncio docs: Fix dangling hyphen (#102227)
Currently this gets rendered with a dangling hyphen.
Pradyun Gedam [Sat, 25 Feb 2023 12:00:12 +0000 (12:00 +0000)]
gh-101997: Update bundled pip version to 23.0.1 (#101998)
Hugo van Kemenade [Sat, 25 Feb 2023 09:42:45 +0000 (11:42 +0200)]
gh-101100: Fix Sphinx warnings in `decimal` module (#102125)
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Kumar Aditya [Sat, 25 Feb 2023 06:51:36 +0000 (12:21 +0530)]
GH-102126: fix deadlock at shutdown when clearing thread states (#102222)
SKO [Sat, 25 Feb 2023 02:26:40 +0000 (11:26 +0900)]
gh-95675: fix uid and gid at test_add_dir_getmember (gh-102207)
Co-authored-by: Seonkyo Ok <seonkyo.ok@linecorp.com>
Ionite [Fri, 24 Feb 2023 23:02:04 +0000 (18:02 -0500)]
gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when internal access of `builtins.__dict__` exhausts the iterator (#101769)
Jason R. Coombs [Fri, 24 Feb 2023 22:58:10 +0000 (17:58 -0500)]
gh-102209: Disable the timeout in test_implied_dirs_performance. (#102225)
Disable the timeout in test_implied_dirs_performance. Workaround for #102209 until I can work out a more robust test for linearity.
Irit Katriel [Fri, 24 Feb 2023 21:43:03 +0000 (21:43 +0000)]
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in Modules/) (#102196)
Erlend E. Aasland [Fri, 24 Feb 2023 20:16:29 +0000 (21:16 +0100)]
gh-101476: Use _PyType_GetModuleState where applicable (#102188)
Stefan Pochmann [Fri, 24 Feb 2023 16:13:05 +0000 (17:13 +0100)]
gh-102105 Fix wording in filterfalse/quantify/filter (GH-102189)
Max Bachmann [Fri, 24 Feb 2023 14:53:50 +0000 (15:53 +0100)]
Remove references to old Windows source files from internal documentation (GH-102216)
Max Bachmann [Fri, 24 Feb 2023 12:38:21 +0000 (13:38 +0100)]
gh-102141: replace use of getpid on Windows with GetCurrentProcessId (GH-102142)
Yeojin Kim [Fri, 24 Feb 2023 10:26:51 +0000 (19:26 +0900)]
gh-81652: Add MAP_ALIGNED_SUPER FreeBSD and MAP_CONCEAL OpenBSD constants (gh-102191)
Eclips4 [Fri, 24 Feb 2023 02:28:24 +0000 (05:28 +0300)]
gh-102158: Add tests for `softkwlist` (#102159)
---------
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Jacob Bower [Thu, 23 Feb 2023 22:57:06 +0000 (14:57 -0800)]
Fix deadlock on shutdown if test_current_{exception,frames} fails (#102019)
* Don't deadlock on shutdown if test_current_{exception,frames} fails
These tests spawn a thread that waits on a threading.Event. If the test fails any of its assertions, the Event won't be signaled and the thread will wait indefinitely, causing a deadlock when threading._shutdown() tries to join all outstanding threads.
Co-authored-by: Brett Simmers <bsimmers@meta.com>
* Add a news entry
* Fix whitespace
---------
Co-authored-by: Brett Simmers <bsimmers@meta.com>
Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
Erlend E. Aasland [Thu, 23 Feb 2023 21:42:15 +0000 (22:42 +0100)]
gh-101476: Add _PyType_GetModuleState (GH-101477)
For fast module state access from heap type methods.
Jonathan Protzenko [Thu, 23 Feb 2023 17:23:57 +0000 (09:23 -0800)]
gh-99108: Followup fix for Modules/Setup (GH-102183)
Automerge-Triggered-By: GH:erlend-aasland
Erlend E. Aasland [Thu, 23 Feb 2023 15:03:13 +0000 (16:03 +0100)]
gh-93649: Split exception tests from _testcapimodule.c (GH-102173)
Automerge-Triggered-By: GH:erlend-aasland
Erlend E. Aasland [Thu, 23 Feb 2023 15:02:23 +0000 (16:02 +0100)]
gh-101981: Consolidate macOS configure steps in CI (GH-102131)
Automerge-Triggered-By: GH:erlend-aasland
Erlend E. Aasland [Thu, 23 Feb 2023 14:09:51 +0000 (15:09 +0100)]
gh-102151: Correctly fetch CONFIG_ARGS in Tools/freeze/test/freeze.py (#102152)
Zackery Spytz [Thu, 23 Feb 2023 14:00:58 +0000 (06:00 -0800)]
bpo-23224: Fix segfaults and multiple leaks in the lzma and bz2 modules (GH-7822)
lzma.LZMADecompressor and bz2.BZ2Decompressor objects caused
segfaults when their `__init__()` methods were not called.
lzma.LZMADecompressor, lzma.LZMACompressor, bz2.BZ2Compressor,
and bz2.BZ2Decompressor objects would leak locks and internal buffers
when their `__init__()` methods were called multiple times.
https://bugs.python.org/issue23224
Tanner Firl [Thu, 23 Feb 2023 13:28:33 +0000 (07:28 -0600)]
Fix typo in `Py_GetPythonHome` signature (#102168)
Erlend E. Aasland [Thu, 23 Feb 2023 12:19:21 +0000 (13:19 +0100)]
gh-101578: Fixup NEWS and add What's New entry for new exception APIs (#102157)
Mark Shannon [Thu, 23 Feb 2023 10:19:01 +0000 (10:19 +0000)]
GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)
Irit Katriel [Thu, 23 Feb 2023 10:17:44 +0000 (10:17 +0000)]
Revert "bpo-46978: Correct docstrings for in-place builtin operators #31802) (#102146)
Revert "bpo-46978: Correct docstrings for in-place builtin operators (#31802)"
This reverts commit
128379b8cdb88a6d3d7fed24df082c9a654b3fb8 .
Carl Meyer [Thu, 23 Feb 2023 01:49:22 +0000 (18:49 -0700)]
gh-87634: remove locking from functools.cached_property (GH-101890)
Remove the undocumented locking capabilities of functools.cached_property.
Terry Jan Reedy [Wed, 22 Feb 2023 23:55:03 +0000 (18:55 -0500)]
Fix syntax error in struct doc example (#102160)
Missing closing ) reported on Discuss by Chukwudi Nwachukwu.
Jonathan Protzenko [Wed, 22 Feb 2023 21:18:43 +0000 (13:18 -0800)]
gh-99108: Import MD5 and SHA1 from HACL* (#102089)
Replaces our fallback non-OpenSSL MD5 and SHA1 implementations with those from HACL* as we've already done with SHA2.
Owain Davies [Wed, 22 Feb 2023 20:21:38 +0000 (03:21 +0700)]
GH-101777: `queue.rst`: use 2 spaces after a period to be consistent. (#102143)
Sergey B Kirpichev [Wed, 22 Feb 2023 19:10:01 +0000 (22:10 +0300)]
Few coverage nitpicks for the cmath module (#102067)
- partial tests for cosh/sinh overflows (L535 and L771). I doubt
both ||-ed conditions could be tested.
- removed inaccessible case in sqrt (L832): ax=ay=0 is handled
above (L823) because fabs() is exact. Also added test (checked
with mpmath and gmpy2) for second condition on that line.
- some trivial tests for isclose (cover all conditions on L1217-1218)
- add comment for uncovered L1018
Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
Mark Shannon [Wed, 22 Feb 2023 11:11:57 +0000 (11:11 +0000)]
GH-100982: Restrict `FOR_ITER_RANGE` to a single instruction to allow instrumentation. (GH-101985)
somebody [Wed, 22 Feb 2023 10:11:30 +0000 (14:11 +0400)]
gh-102135: Update turtle docs to rename wikipedia demo to rosette (#102137)
Eli Schwartz [Wed, 22 Feb 2023 01:21:24 +0000 (20:21 -0500)]
gh-99942: python.pc on android/cygwin should link to libpython per configure.ac (GH-100356)
In commit
254b309c801f82509597e3d7d4be56885ef94c11 a previous change to avoid linking to libpython was partially reverted for Android (and later Cygwin as well), to add back the link flags. This was applied to distutils and to python-config.sh, but not to python.pc.
Add it back to python.pc as well.
Automerge-Triggered-By: GH:gpshead
Hyunkyun Moon [Tue, 21 Feb 2023 17:39:00 +0000 (02:39 +0900)]
gh-95672 fix typo SkitTest to SkipTest (gh-102119)
Co-authored-by: HyunKyun Moon <hyunkyun.moon@linecorp.com>
Vo Hoang Long [Tue, 21 Feb 2023 15:14:41 +0000 (22:14 +0700)]
gh-101936: Update the default value of fp from io.StringIO to io.BytesIO (gh-102100)
Co-authored-by: Long Vo <long.vo@linecorp.com>
Irit Katriel [Tue, 21 Feb 2023 15:11:31 +0000 (15:11 +0000)]
gh-102008: simplify test_except_star by using sys.exception() instead of sys.exc_info() (#102009)
Owain Davies [Tue, 21 Feb 2023 11:58:47 +0000 (18:58 +0700)]
gh-101903: Remove obsolete undefs for previously removed macros Py_EnterRecursiveCall and Py_LeaveRecursiveCall (#101923)
ram vikram singh [Tue, 21 Feb 2023 10:34:56 +0000 (16:04 +0530)]
gh-100556: Improve clarity of `or` docs (#100589)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Owain Davies [Tue, 21 Feb 2023 10:24:33 +0000 (17:24 +0700)]
gh-101777: Make `PriorityQueue` docs slightly clearer (#102026)
Adjust wording slightly, and use min(entries) instead of
sorted(list(entries))[0] as an example.
Owain Davies [Tue, 21 Feb 2023 10:03:50 +0000 (17:03 +0700)]
gh-101965: Fix usage of Py_EnterRecursiveCall return value in _bisectmodule.c (GH-101966)
Closes #101965
Automerge-Triggered-By: GH:erlend-aasland
Erlend E. Aasland [Tue, 21 Feb 2023 08:15:49 +0000 (09:15 +0100)]
gh-101578: Amend exception docs (#102057)
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Gihwan Kim [Tue, 21 Feb 2023 03:10:29 +0000 (12:10 +0900)]
gh-101961 fileinput.hookcompressed should not set the encoding value for the binary mode (gh-102068)
Irit Katriel [Mon, 20 Feb 2023 22:16:09 +0000 (22:16 +0000)]
gh-102056: Fix a few bugs in error handling of exception printing code (#102078)
Irit Katriel [Mon, 20 Feb 2023 21:54:19 +0000 (21:54 +0000)]
gh-102011: use sys.exception() instead of sys.exc_info() in docs where possible (#102012)
Jason R. Coombs [Mon, 20 Feb 2023 21:01:58 +0000 (16:01 -0500)]
gh-101566: Sync with zipp 3.14. (GH-102018)
Filipe Laíns [Mon, 20 Feb 2023 19:21:10 +0000 (19:21 +0000)]
GH-99818: improve the documentation for zipfile.Path and Traversable (GH-101589)
Automerge-Triggered-By: GH:FFY00
Tim Hatch [Mon, 20 Feb 2023 17:07:03 +0000 (09:07 -0800)]
gh-88233: zipfile: handle extras after a zip64 extra (GH-96161)
Previously, any data _after_ the zip64 extra would be removed.
With many new tests.
Fixes #88233
Automerge-Triggered-By: GH:jaraco
Dong-hee Na [Mon, 20 Feb 2023 15:20:18 +0000 (00:20 +0900)]
gh-101981: Apply HOMEBREW related environment variables (gh-102074)
Steve Dower [Mon, 20 Feb 2023 14:56:48 +0000 (14:56 +0000)]
gh-101907: Stop using `_Py_OPCODE` and `_Py_OPARG` macros (GH-101912)
* gh-101907: Removes use of non-standard C++ extension from Include/cpython/code.h
* Make cases_generator correct on Windows
Erlend E. Aasland [Mon, 20 Feb 2023 13:46:20 +0000 (14:46 +0100)]
gh-101819: Adapt _io types to heap types, batch 1 (GH-101949)
Adapt StringIO, TextIOWrapper, FileIO, Buffered*, and BytesIO types.
Automerge-Triggered-By: GH:erlend-aasland
Erlend E. Aasland [Mon, 20 Feb 2023 13:07:25 +0000 (14:07 +0100)]
gh-101981: Build macOS as recommended by the devguide (GH-102070)
Automerge-Triggered-By: GH:erlend-aasland
Mark Dickinson [Mon, 20 Feb 2023 01:16:11 +0000 (01:16 +0000)]
gh-97786: Fix compiler warnings in pytime.c (#101826)
Fixes compiler warnings in pytime.c.
Erlend E. Aasland [Sun, 19 Feb 2023 20:22:29 +0000 (21:22 +0100)]
gh-101578: Amend PyErr_{Set,Get}RaisedException docs (#101962)
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Raymond Hettinger [Sun, 19 Feb 2023 19:21:37 +0000 (13:21 -0600)]
Misc improvements to the float tutorial (GH-102052)
Mark Dickinson [Sun, 19 Feb 2023 19:15:44 +0000 (19:15 +0000)]
gh-85417: Clarify behaviour on branch cuts in cmath module (#102046)
This PR updates the cmath module documentation to reflect the reality that Python is almost always (and as far as I can tell, that "almost" can be omitted) running on a machine whose C double supports signed zeros.
* Removes misleading references to functions being continuous from above / below / the left / the right at branch cuts
* Expands the note on branch cuts at the top of the module documentation to explain the double-sided sign-of-zero-based behaviour
neuralstring [Sun, 19 Feb 2023 16:39:03 +0000 (16:39 +0000)]
gh-100425: Update tutorial docs related to sum() accuracy (FH-101854)
Owain Davies [Sun, 19 Feb 2023 15:00:59 +0000 (22:00 +0700)]
Add missing 'is' to `cmath.log()` docstring (#102049)
Fix missing 'is' in cmath.log() docstring
Jean-Christophe Amiel [Sun, 19 Feb 2023 10:18:12 +0000 (11:18 +0100)]
gh-100210: Correct the comment link for unescaping HTML (#100212)
gh-100210: correct the comment link for unescaping HTML
Jason R. Coombs [Sun, 19 Feb 2023 02:32:50 +0000 (21:32 -0500)]
gh-97930: Also include subdirectory in makefile. (#102030)
Patricio Paez [Sun, 19 Feb 2023 01:06:03 +0000 (19:06 -0600)]
gh-99735: Use required=True in argparse subparsers example (#100927)
Reza Rastak [Sun, 19 Feb 2023 00:55:43 +0000 (19:55 -0500)]
Fix incorrectly documented attribute in csv docs (#101250)
Furkan Onder [Sun, 19 Feb 2023 00:22:02 +0000 (00:22 +0000)]
GH-84783: Make the slice object hashable (GH-101264)
Jason R. Coombs [Sat, 18 Feb 2023 21:29:22 +0000 (16:29 -0500)]
gh-97930: Apply changes from importlib_resources 5.12. (GH-102010)
Nicko van Someren [Sat, 18 Feb 2023 18:44:41 +0000 (11:44 -0700)]
bpo-46978: Correct docstrings for in-place builtin operators (#31802)
Nikita Sobolev [Sat, 18 Feb 2023 15:46:33 +0000 (18:46 +0300)]
gh-101536: [docs] Improve attributes of `urllib.error.HTTPError` (#101612)
* gh-101536: [docs] Improve attributes of `urllib.error.HTTPError`
* Address review
Eclips4 [Sat, 18 Feb 2023 00:52:23 +0000 (03:52 +0300)]
gh-101967: add a missing error check (#101968)