mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-25 02:57:14 +08:00
Improve a bunch of __(deep)copy__ methods (#7148)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user