Misc stub fixes (#181)

This commit is contained in:
Jukka Lehtosalo
2016-05-05 00:54:57 +01:00
committed by Guido van Rossum
parent c21d8a41d5
commit 292447bd62
10 changed files with 52 additions and 33 deletions
+2 -2
View File
@@ -2,9 +2,9 @@
# NOTE: These are incomplete!
from typing import TypeVar
from typing import TypeVar, Dict, Any
_T = TypeVar('_T')
def deepcopy(x: _T) -> _T: ...
def deepcopy(x: _T, memo: Dict[Any, Any] = ...) -> _T: ...
def copy(x: _T) -> _T: ...