Move __replace__ issues out of triage (#12656)

This commit is contained in:
Max Muoto
2024-09-14 00:39:34 -05:00
committed by GitHub
parent df30049ac7
commit 53d4877071

View File

@@ -15,9 +15,6 @@ importlib.resources.path
importlib.resources.read_binary
importlib.resources.read_text
os.path.splitroot
# `__replace__` to be special cased in dataclasses
pstats.FunctionProfile.__replace__
pstats.StatsProfile.__replace__
tkinter.Misc.after_info
tkinter.Misc.busy
tkinter.Misc.busy_cget
@@ -191,3 +188,7 @@ codecs.xmlcharrefreplace_errors
# To match `dict`, we lie about the runtime, but use overloads to match the correct behavior
types.MappingProxyType.get
# `__replace__` is dynamically generated, and special-cased by type-checkers
pstats.FunctionProfile.__replace__
pstats.StatsProfile.__replace__