Annotate textwrap.dedent (#1295)

This commit is contained in:
Daniel Li
2017-05-22 18:53:04 -04:00
committed by Jelle Zijlstra
parent adae702fc1
commit 787e423468

View File

@@ -1,4 +1,4 @@
from typing import Any
from typing import Any, AnyStr
class _unicode: ...
@@ -26,4 +26,4 @@ class TextWrapper:
def wrap(text, width=..., **kwargs): ...
def fill(text, width=..., **kwargs): ...
def dedent(text): ...
def dedent(text: AnyStr) -> AnyStr: ...