Skip to content

bpo-46377: TimedRotatingFileHandler fix to ignore interval when "midnight" is given #30599

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1,125 commits into from

Conversation

MikeSchiessl
Copy link

@MikeSchiessl MikeSchiessl commented Jan 14, 2022

miss-islington and others added 30 commits October 24, 2021 06:29
…GH-29150)

Refs python#29147

Automerge-Triggered-By: GH:ericvsmith
(cherry picked from commit 07236d5)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
…7.1 (pythonGH-29230) (pythonGH-29240)

Co-authored-by: Maciej Olko <maciej.olko@yougov.com>
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
(cherry picked from commit bcee6aa)
…ythonGH-29252)

(cherry picked from commit 10bbd41)

Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>

Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
…H-29212)

Use types.GenericAlias in inspect.formatannotation to correctly add
type arguments of builtin types to the string representation of
Signatures.

Co-authored-by: Martin Rückl <martin.rueckl@codecentric.de>
(cherry picked from commit d02ffd1)

Co-authored-by: Martin Rueckl <enigma@nbubu.de>
…8838)

The doctest module raised an error if a docstring contained an example that
attempted to access a classmethod property. (Stacking '@classmethod' on top of
`@property` has been supported since Python 3.9; see
https://docs.python.org/3/howto/descriptor.htmlGH-class-methods.)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
(cherry picked from commit b1302ab)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
(cherry picked from commit 0a68b36)

Co-authored-by: Justinas Petuchovas <justinas.petuchovas@gmail.com>
…thonGH-29276)

when using the Tk 8.6.11 provided by python.org macOS installers.
Patch by Marc Culler of the Tk project.
(cherry picked from commit be8318b)

Co-authored-by: Ned Deily <nad@python.org>
…Track() (pythonGH-29246) (pythonGH-29249)

Objects that support garbage collection ("container" objects) should
call PyObject_GC_UnTrack() from their destructors before clearing any
fields which may point to other "container" objects.
(cherry picked from commit 35e1ff3)

Co-authored-by: Sam Gross <colesbury@gmail.com>
…ythonGH-29219) (pythonGH-29281)

(cherry picked from commit 88d8a1a)

Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
…nc (pythonGH-29226) (pythonGH-29283)

Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
(cherry picked from commit 1fb968c)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
…ythonGH-29285)

It should be noted that this part of the documentation is redundant with
function.rst's documentation of int. This one was correctly updated with Python 3.8.
(cherry picked from commit d9c1868)

Co-authored-by: Arthur Milchior <arthur@milchior.fr>
)

(cherry picked from commit 4dd1e84)

Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
…ts (pythonGH-29233) (pythonGH-29293)

the current test depended on integer sets being iterated on in a certain
fixed order. That order is different on PyPy (insertion based) and could
change in CPython in the future in theory. Make the test robust against
a different iteration order by sorting.
(cherry picked from commit 7401694)

Co-authored-by: Carl Friedrich Bolz-Tereick <cfbolz@gmx.de>
…) (pythonGH-29296)

(cherry picked from commit 66e6b3d)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Run test_shelve with all underlying dbm implementations and pickle protocols.
Also make test_shelve discoverable.
(cherry picked from commit b781cc3)
…ythonGH-29302)

The list of PEPs at the top of the documentation for the ``typing`` module has
become too long to be readable. This PR proposes presenting this
information in a more structured and readable way by adding a new "relevant
PEPs" section to the ``typing`` docs.

(cherry picked from commit 03db1bb)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
…ythonGH-29309)

(cherry picked from commit d957521)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
…ythonGH-29270)

(cherry picked from commit cdc7a58)

Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
…thonGH-29200) (pythonGH-29319)

(cherry picked from commit 3877fc0)

Co-authored-by: Ian Fisher <ian@iafisher.com>
…nb (pythonGH-29204) (pythonGH-29322)

Co-authored-by: Łukasz Langa <lukasz@langa.pl>
(cherry picked from commit b17cfd1)

Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
…signals memory error (pythonGH-29171) (pythonGH-29323)

(cherry picked from commit e2e62b3)

Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
The link broke for Python 3.10 since importlib.metadata was made from a module into a package

I think this is trivial enough to not need a bpo issue.

Automerge-Triggered-By: GH:jaraco
(cherry picked from commit aae18a1)

Co-authored-by: Philipp A <flying-sheep@web.de>
Literal[True, 2] is no longer equal to Literal[1, 2].
(cherry picked from commit 634984d)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
…ythonGH-29039)

* bpo-45516: add protocol description to the Traversable documentation

Signed-off-by: Filipe Laíns <lains@riseup.net>

* Update Doc/library/importlib.rst

Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>

* Update Lib/importlib/abc.py

* Update Doc/library/importlib.rst

Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>

Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
(cherry picked from commit 4d03de3)

Co-authored-by: Filipe Laíns <filipe.lains@gmail.com>
…-29351)

Co-authored-by: Olaf van der Spek <olafvdspek@gmail.com>
…9368)

SGI_ABI support was removed in [1] but this variable was never removed
from the makefile. Currently, it is just a bad variable that does not
get replaced by the configure script.

[1] python#3294

Signed-off-by: Filipe Laíns <lains@riseup.net>
(cherry picked from commit 38982ab)

Co-authored-by: Filipe Laíns <lains@riseup.net>
@vsajip
Copy link
Member

vsajip commented Jan 14, 2022

PR appears to be faulty as it references a lot of unrelated files.

@vsajip vsajip closed this Jan 14, 2022
@AlexWaygood
Copy link
Member

@MikeSchiessl, it looks like you might have accidentally tried to merge the 3.10 branch of your fork into the main branch of CPython 🙂

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy