From 6d619e013c17a1b347e50be90b28bbea2f9883c4 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 10 Oct 2017 10:07:18 -0700 Subject: [PATCH] Add textwrap.dedent() to Py2 stubs (#1661) --- stdlib/2/textwrap.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/2/textwrap.pyi b/stdlib/2/textwrap.pyi index d757489db..00d6e884e 100644 --- a/stdlib/2/textwrap.pyi +++ b/stdlib/2/textwrap.pyi @@ -61,3 +61,5 @@ def fill( drop_whitespace: bool = ..., break_on_hyphens: bool = ...) -> AnyStr: ... + +def dedent(text: AnyStr) -> AnyStr: ...