Improve a bunch of __(deep)copy__ methods (#7148)

This commit is contained in:
Alex Waygood
2022-02-06 23:40:44 +00:00
committed by GitHub
parent a62fd92fb0
commit 494481a0ae
6 changed files with 13 additions and 10 deletions

View File

@@ -44,8 +44,8 @@ class LazyProxy:
def __delitem__(self, key) -> None: ...
def __getitem__(self, key): ...
def __setitem__(self, key, value) -> None: ...
def __copy__(self): ...
def __deepcopy__(self, memo): ...
def __copy__(self) -> LazyProxy: ...
def __deepcopy__(self, memo: Any) -> LazyProxy: ...
class NullTranslations(gettext.NullTranslations):
DEFAULT_DOMAIN: Any