Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Closed

Conversation

@MikeSchiessl
Copy link

@MikeSchiesslMikeSchiessl commentedJan 14, 2022
edited by bedevere-bot
Loading

miss-islingtonand others added30 commitsOctober 24, 2021 06:29
…GH-29150)Refspython#29147Automerge-Triggered-By: GH:ericvsmith(cherry picked from commit07236d5)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 commitbcee6aa)
…ythonGH-29252)(cherry picked from commit10bbd41)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 addtype arguments of builtin types to the string representation ofSignatures.Co-authored-by: Martin Rückl <martin.rueckl@codecentric.de>(cherry picked from commitd02ffd1)Co-authored-by: Martin Rueckl <enigma@nbubu.de>
…8838)The doctest module raised an error if a docstring contained an example thatattempted to access a classmethod property. (Stacking '@classmethod' on top of`@property` has been supported since Python 3.9; seehttps://docs.python.org/3/howto/descriptor.htmlGH-class-methods.)Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>(cherry picked from commitb1302ab)Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>(cherry picked from commit0a68b36)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 commitbe8318b)Co-authored-by: Ned Deily <nad@python.org>
…Track() (pythonGH-29246) (pythonGH-29249)Objects that support garbage collection ("container" objects) shouldcall PyObject_GC_UnTrack() from their destructors before clearing anyfields which may point to other "container" objects.(cherry picked from commit35e1ff3)Co-authored-by: Sam Gross <colesbury@gmail.com>
…ythonGH-29219) (pythonGH-29281)(cherry picked from commit88d8a1a)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 commit1fb968c)Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
…ythonGH-29285)It should be noted that this part of the documentation is redundant withfunction.rst's documentation of int. This one was correctly updated with Python 3.8.(cherry picked from commitd9c1868)Co-authored-by: Arthur Milchior <arthur@milchior.fr>
)(cherry picked from commit4dd1e84)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 certainfixed order. That order is different on PyPy (insertion based) and couldchange in CPython in the future in theory. Make the test robust againsta different iteration order by sorting.(cherry picked from commit7401694)Co-authored-by: Carl Friedrich Bolz-Tereick <cfbolz@gmx.de>
…) (pythonGH-29296)(cherry picked from commit66e6b3d)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 commitb781cc3)
…ythonGH-29302)The list of PEPs at the top of the documentation for the ``typing`` module hasbecome too long to be readable. This PR proposes presenting thisinformation in a more structured and readable way by adding a new "relevantPEPs" section to the ``typing`` docs.(cherry picked from commit03db1bb)Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>Co-authored-by: Łukasz Langa <lukasz@langa.pl>
…ythonGH-29309)(cherry picked from commitd957521)Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
…ythonGH-29270)(cherry picked from commitcdc7a58)Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
…thonGH-29200) (pythonGH-29319)(cherry picked from commit3877fc0)Co-authored-by: Ian Fisher <ian@iafisher.com>
…nb (pythonGH-29204) (pythonGH-29322)Co-authored-by: Łukasz Langa <lukasz@langa.pl>(cherry picked from commitb17cfd1)Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
…signals memory error (pythonGH-29171) (pythonGH-29323)(cherry picked from commite2e62b3)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 packageI think this is trivial enough to not need a bpo issue.Automerge-Triggered-By: GH:jaraco(cherry picked from commitaae18a1)Co-authored-by: Philipp A <flying-sheep@web.de>
Literal[True, 2] is no longer equal to Literal[1, 2].(cherry picked from commit634984d)Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
…ythonGH-29039)* bpo-45516: add protocol description to the Traversable documentationSigned-off-by: Filipe Laíns <lains@riseup.net>* Update Doc/library/importlib.rstCo-authored-by: Jason R. Coombs <jaraco@jaraco.com>* Update Lib/importlib/abc.py* Update Doc/library/importlib.rstCo-authored-by: Jason R. Coombs <jaraco@jaraco.com>Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>(cherry picked from commit4d03de3)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 removedfrom the makefile. Currently, it is just a bad variable that does notget replaced by the configure script.[1]python#3294Signed-off-by: Filipe Laíns <lains@riseup.net>(cherry picked from commit38982ab)Co-authored-by: Filipe Laíns <lains@riseup.net>
@vsajip
Copy link
Member

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

@vsajipvsajip closed thisJan 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 themain branch of CPython 🙂

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

26 participants

@MikeSchiessl@the-knights-who-say-ni@vsajip@AlexWaygood@dfaure-kdab@marcosp-araujo@bedevere-bot@miss-islington@colesbury@serhiy-storchaka@ambv@ned-deily@zooba@pablogsal@iritkatriel@brandtbucher@m2-farzan@asottile@ethanfurman@hugovk@brettcannon@vstinner@asvetlov@tiran@markshannon@1st1

[8]ページ先頭

©2009-2025 Movatter.jp