-
-
Notifications
You must be signed in to change notification settings - Fork 32k
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
MikeSchiessl
wants to merge
1,125
commits into
python:main
from
MikeSchiessl:logger_midnight_handling
Closed
bpo-46377: TimedRotatingFileHandler fix to ignore interval when "midnight" is given #30599
MikeSchiessl
wants to merge
1,125
commits into
python:main
from
MikeSchiessl:logger_midnight_handling
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…GH-29150) Refs python#29147 Automerge-Triggered-By: GH:ericvsmith (cherry picked from commit 07236d5) Co-authored-by: Nikita Sobolev <[email protected]>
…7.1 (pythonGH-29230) (pythonGH-29240) Co-authored-by: Maciej Olko <[email protected]> Co-authored-by: Erlend Egeberg Aasland <[email protected]> (cherry picked from commit bcee6aa)
…ythonGH-29252) (cherry picked from commit 10bbd41) Co-authored-by: Pablo Galindo Salgado <[email protected]> Co-authored-by: Pablo Galindo Salgado <[email protected]>
…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 <[email protected]> (cherry picked from commit d02ffd1) Co-authored-by: Martin Rueckl <[email protected]>
…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 <[email protected]> (cherry picked from commit b1302ab) Co-authored-by: Alex Waygood <[email protected]>
Co-authored-by: Ken Jin <[email protected]> (cherry picked from commit 0a68b36) Co-authored-by: Justinas Petuchovas <[email protected]>
…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 <[email protected]>
…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 <[email protected]>
…ythonGH-29219) (pythonGH-29281) (cherry picked from commit 88d8a1a) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
…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 <[email protected]>
…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 <[email protected]>
) (cherry picked from commit 4dd1e84) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
…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 <[email protected]>
…) (pythonGH-29296) (cherry picked from commit 66e6b3d) Co-authored-by: Nikita Sobolev <[email protected]>
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 <[email protected]> Co-authored-by: Łukasz Langa <[email protected]>
…ythonGH-29309) (cherry picked from commit d957521) Co-authored-by: Alex Waygood <[email protected]>
…ythonGH-29270) (cherry picked from commit cdc7a58) Co-authored-by: Pablo Galindo Salgado <[email protected]>
…thonGH-29200) (pythonGH-29319) (cherry picked from commit 3877fc0) Co-authored-by: Ian Fisher <[email protected]>
…nb (pythonGH-29204) (pythonGH-29322) Co-authored-by: Łukasz Langa <[email protected]> (cherry picked from commit b17cfd1) Co-authored-by: andrei kulakov <[email protected]>
…signals memory error (pythonGH-29171) (pythonGH-29323) (cherry picked from commit e2e62b3) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
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 <[email protected]>
Literal[True, 2] is no longer equal to Literal[1, 2]. (cherry picked from commit 634984d) Co-authored-by: Serhiy Storchaka <[email protected]>
…ythonGH-29039) * bpo-45516: add protocol description to the Traversable documentation Signed-off-by: Filipe Laíns <[email protected]> * Update Doc/library/importlib.rst Co-authored-by: Jason R. Coombs <[email protected]> * Update Lib/importlib/abc.py * Update Doc/library/importlib.rst Co-authored-by: Jason R. Coombs <[email protected]> Co-authored-by: Jason R. Coombs <[email protected]> (cherry picked from commit 4d03de3) Co-authored-by: Filipe Laíns <[email protected]>
…-29351) Co-authored-by: Olaf van der Spek <[email protected]>
…9358) (pythonGH-29361) Co-authored-by: Christian Heimes <[email protected]>
…ythonGH-29353) (pythonGH-29362) Co-authored-by: Christian Heimes <[email protected]>
…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 <[email protected]> (cherry picked from commit 38982ab) Co-authored-by: Filipe Laíns <[email protected]>
PR appears to be faulty as it references a lot of unrelated files. |
@MikeSchiessl, it looks like you might have accidentally tried to merge the 3.10 branch of your fork into the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
https://bugs.python.org/issue46377
https://bugs.python.org/issue46377