Files
typeshed/stdlib/2.7/copy.pyi
2015-09-30 09:59:44 -07:00

11 lines
155 B
Python

# Stubs for copy
# NOTE: These are incomplete!
from typing import TypeVar
_T = TypeVar('_T')
def deepcopy(x: _T) -> _T: ...
def copy(x: _T) -> _T: ...