Commits · 855be47a02e68bf9217ef8ab79dbd94ddc3298f1
- Jun 02, 2022
-
-
Miss Islington (bot) authored
-
- Jun 01, 2022
-
-
Miss Islington (bot) authored
-
- May 31, 2022
-
-
Miss Islington (bot) authored
-
- May 30, 2022
-
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
- May 29, 2022
-
-
Éric authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
- May 28, 2022
-
-
Miss Islington (bot) authored
-
- May 27, 2022
-
-
Miss Islington (bot) authored
-
- May 25, 2022
-
-
Victor Stinner authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
- May 24, 2022
-
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
- May 23, 2022
-
-
Dennis Sweeney authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
- May 21, 2022
-
-
Miss Islington (bot) authored
-
- May 20, 2022
-
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
- May 19, 2022
-
-
Miss Islington (bot) authored
-
Łukasz Langa authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
- May 18, 2022
-
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
Miss Islington (bot) authored
-
- May 18, 2022
-
-
Miss Islington (bot) authored
(cherry picked from commit 2153daf0) This patch fixes gh-87740 too. Co-authored-by:
Crowthebird <78076854+thatbirdguythatuknownot@users.noreply.github.com>
-
- May 17, 2022
-
-
Miss Islington (bot) authored
(cherry picked from commit 702e0da0) Co-authored-by:
Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com>
-
- May 16, 2022
-
-
Miss Islington (bot) authored
(cherry picked from commit 549567c6) Co-authored-by:
slateny <46876382+slateny@users.noreply.github.com>
-
Miss Islington (bot) authored
gh-92530: Fix an issue that occurred after interrupting threading.Condition.notify (GH-92534) (GH-92830) If Condition.notify() was interrupted just after it released the waiter lock, but before removing it from the queue, the following calls of notify() failed with RuntimeError: cannot release un-acquired lock. (cherry picked from commit 70af994f) Co-authored-by:
Serhiy Storchaka <storchaka@gmail.com>
-
Hugo van Kemenade authored
(cherry picked from commit a487623c)
-
Miss Islington (bot) authored
(cherry picked from commit 3ed1cae9) Co-authored-by:
Stanley <46876382+slateny@users.noreply.github.com>
-
- May 14, 2022
-
-
Miss Islington (bot) authored
The `utc_to_seconds` call can fail, here's a minimal reproducer on Linux: TZ=UTC python -c "from datetime import *; datetime.fromtimestamp(253402300799 + 1)" The old behavior still raised an error in a similar way, but only because subsequent calculations happened to fail as well. Better to fail fast. This also refactors the tests to split out the `fromtimestamp` and `utcfromtimestamp` tests, and to get us closer to the actual desired limits of the functions. As part of this, we also changed the way we detect platforms where the same limits don't necessarily apply (e.g. Windows). As part of refactoring the tests to hit this condition explicitly (even though the user-facing behvior doesn't change in any way we plan to guarantee), I noticed that there was a difference in the places that `datetime.utcfromtimestamp` fails in the C and pure Python versions, which was fixed by skipping the "probe for fold" logic for UTC specifically — since UTC doesn't have any folds or gaps, we were never going to find a fold value anyway. This should prevent some failures in the pure python `utcfromtimestamp` method on timestamps close to 0001-01-01. There are two separate news entries for this because one is a potentially user-facing change, the other is an internal code correctness change that, if anything, changes some error messages. The two happen to be coupled because of the test refactoring, but they are probably best thought of as independent changes. Fixes GH-91581 (cherry picked from commit 83c0247d) Co-authored-by:
Paul Ganssle <1377457+pganssle@users.noreply.github.com>
-
- May 13, 2022
-
-
thueringa authored
-
Miss Islington (bot) authored
(cherry picked from commit 9f68dab3) Co-authored-by:
CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
-
Miss Islington (bot) authored
It fixes 252 errors from a Sphinx nitpicky run (sphinx-build -n). But there's 8182 errors left. Co-authored-by:
Ezio Melotti <ezio.melotti@gmail.com> (cherry picked from commit 664aa94b) Co-authored-by:
Julien Palard <julien@palard.fr>
-
- May 12, 2022
-
-
Dennis Sweeney authored
-
Miss Islington (bot) authored
gh-92436: __future__ docs: add note on expectations for "from __future__ import annotations" (GH-92568) (cherry picked from commit 6582c964) Co-authored-by:
Jelle Zijlstra <jelle.zijlstra@gmail.com>
-
Miss Islington (bot) authored
(cherry picked from commit b69297ea) Co-authored-by:
狂男风 <CrazyBoyFeng@Live.com>
-
- May 11, 2022
-
-
Miss Islington (bot) authored
(cherry picked from commit b3f99b69) Co-authored-by:
Steve Dower <steve.dower@python.org>
-
Miss Islington (bot) authored
[3.10] gh-91810: ElementTree: Use text file's encoding by default in XML declaration (GH-91903) (GH-92664) ElementTree method write() and function tostring() now use the text file's encoding ("UTF-8" if not available) instead of locale encoding in XML declaration when encoding="unicode" is specified. (cherry picked from commit 707839b0) Co-authored-by:Serhiy Storchaka <storchaka@gmail.com> Automerge-Triggered-By: GH:serhiy-storchaka
-
Miss Islington (bot) authored
(cherry picked from commit 38486ca2) Co-authored-by:
Mikhail Terekhov <termim@gmail.com> Automerge-Triggered-By: GH:serhiy-storchaka
-
Miss Islington (bot) authored
-
- May 10, 2022
-
-
Itai Steinherz authored
* [3.10] bpo-46785: Fix race condition between os.stat() and unlink on Windows (GH-31858). (cherry picked from commit 39e6b8ae) Co-authored-by:
Itai Steinherz <itaisteinherz@gmail.com>
-
Miss Islington (bot) authored
[3.10] gh-76773: Update docs mentioning no-longer-supported Windows versions & features (GH-92529) (GH-92609) (cherry picked from commit f1bbcba7) Co-authored-by:
CAM Gerlach <CAM.Gerlach@Gerlach.CAM> Automerge-Triggered-By: GH:serhiy-storchaka
-
Miss Islington (bot) authored
Co-authored-by:
Serhiy Storchaka <storchaka@gmail.com> Co-authored-by:
Victor Stinner <vstinner@python.org> (cherry picked from commit 4bd07d1d) Co-authored-by:
Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
-
Miss Islington (bot) authored
(cherry picked from commit c56e2bb9) Co-authored-by:
Cheryl Sabella <cheryl.sabella@gmail.com>
-
- May 09, 2022
-
-
Miss Islington (bot) authored
See: https://mail.python.org/archives/list/docs@python.org/thread/KDVFGNGGUGGPVRZT7WZYHHWXCRS2GEN7/ (cherry picked from commit b77a95f4) Co-authored-by:
Julien Palard <julien@palard.fr>
-
Miss Islington (bot) authored
Signed-off-by:
Erlend E. Aasland <erlend.aasland@protonmail.com> (cherry picked from commit 3edda031) Co-authored-by:
Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
-
Miss Islington (bot) authored
* Some handlers were wrongly described as text-encoding only, but actually they can also be used in text-decoding. * Add more description to each handler. * Add two REPL examples. * Add indexes for Error Handler's name. Co-authored-by:
Kyle Stanley <aeros167@gmail.com> Co-authored-by:
Victor Stinner <vstinner@python.org> Co-authored-by:
Jelle Zijlstra <jelle.zijlstra@gmail.com> (cherry picked from commit 5bc23902) Co-authored-by:
Ma Lin <animalize@users.noreply.github.com>
-
- May 08, 2022
-
-
Miss Islington (bot) authored
Missing reference of auditing event presents error when building translated documentation (cherry picked from commit f298ba1f) Co-authored-by:
Rafael Fontenelle <rffontenelle@users.noreply.github.com>
-
Miss Islington (bot) authored
see https://github.com/gotcha/ipdb/issues/172 Co-authored-by:
Jelle Zijlstra <jelle.zijlstra@gmail.com> (cherry picked from commit 2888b110) Co-authored-by:
Godefroid Chapelle <gotcha@bubblenet.be>
-
Miss Islington (bot) authored
Co-authored-by:
Jelle Zijlstra <jelle.zijlstra@gmail.com> (cherry picked from commit 859250cc) Co-authored-by:
slateny <46876382+slateny@users.noreply.github.com>
-
Ezio Melotti authored
-
Gregory P. Smith authored
Do not spawn ProcessPool workers on demand when they spawn via fork. This avoids potential deadlocks in the child processes due to forking from a multithreaded process.. (cherry picked from commit ebb37fc3) Co-authored-by:
Gregory P. Smith <greg@krypto.org>
-
Miss Islington (bot) authored
* Doc: Reveal doctest directives. * Fix whitespace. Co-authored-by:
Julien Palard <julien@palard.fr> Co-authored-by:
Ezio Melotti <ezio.melotti@gmail.com> (cherry picked from commit 7b024e3a) Co-authored-by:
Davide Rizzo <sorcio@gmail.com>
-
Miss Islington (bot) authored
(cherry picked from commit 318c4e91) Co-authored-by:
Alex Waygood <Alex.Waygood@Gmail.com>
-
Miss Islington (bot) authored
[3.10] gh-92417: `asyncio` docs: `asyncio.run()` is available on all supported Python versions (GH-92419) (GH-92463) (cherry picked from commit f4e317b3) Co-authored-by:
Alex Waygood <Alex.Waygood@Gmail.com> Automerge-Triggered-By: GH:serhiy-storchaka
-
Miss Islington (bot) authored
[3.10] gh-92417: `json` docs: `dict` is ordered on all supported Python versions (GH-92422) (GH-92465) (cherry picked from commit bc098cfd) Co-authored-by:
Alex Waygood <Alex.Waygood@Gmail.com> Automerge-Triggered-By: GH:serhiy-storchaka
-
Miss Islington (bot) authored
(cherry picked from commit 5639ea1e) Co-authored-by:
Alex Waygood <Alex.Waygood@Gmail.com> Automerge-Triggered-By: GH:serhiy-storchaka
-
Miss Islington (bot) authored
* Remove redundant footnote ref: the footnote has been removed * Fix footnote ref to match footnote * Convert footnotes into reST footnotes: will error if missing (cherry picked from commit 788ef54b) Co-authored-by:
Hugo van Kemenade <hugovk@users.noreply.github.com> Automerge-Triggered-By: GH:serhiy-storchaka
-
Miss Islington (bot) authored
(cherry picked from commit 8f293180) Co-authored-by:
slateny <46876382+slateny@users.noreply.github.com> Automerge-Triggered-By: GH:serhiy-storchaka
-
Miss Islington (bot) authored
Given that 2.7 has now been end-of-life for two and a half years, I don't think we need such a detailed explanation here anymore of the differences between Python 2 and Python 3. (cherry picked from commit 8efda1e7) Co-authored-by:
Alex Waygood <Alex.Waygood@Gmail.com> Automerge-Triggered-By: GH:serhiy-storchaka
-
Miss Islington (bot) authored
gh-92417: `typing` docs: `from __future__ import annotations` can be used in all supported Python versions (GH-92418) (cherry picked from commit e5b4bd4d) Co-authored-by:
Alex Waygood <Alex.Waygood@Gmail.com>
-
Dong-hee Na authored
-
- May 07, 2022
-
-
Jelle Zijlstra authored
(cherry picked from commit 85354ed7) Co-authored-by:
Alexey Izbyshev <izbyshev@ispras.ru>
-
Loading