mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
11 lines
194 B
Python
11 lines
194 B
Python
# Stubs for copy
|
|
|
|
# NOTE: These are incomplete!
|
|
|
|
from typing import TypeVar, Dict, Any
|
|
|
|
_T = TypeVar('_T')
|
|
|
|
def deepcopy(x: _T, memo: Dict[Any, Any] = ...) -> _T: ...
|
|
def copy(x: _T) -> _T: ...
|