From af860ee993393c8d04f02f8288148b24074f1d9e Mon Sep 17 00:00:00 2001 From: Max Wittek Date: Fri, 29 Jul 2016 14:01:03 -0700 Subject: [PATCH] textwrap for py3: fixed stubs to include 'text' param (#420) --- stdlib/3/textwrap.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/3/textwrap.pyi b/stdlib/3/textwrap.pyi index f6441042a..babb45e42 100644 --- a/stdlib/3/textwrap.pyi +++ b/stdlib/3/textwrap.pyi @@ -79,6 +79,7 @@ def wrap( ... def fill( + text: str, width: int = ..., *, initial_indent: str = ..., @@ -96,6 +97,7 @@ def fill( ... def shorten( + text: str, width: int, *, initial_indent: str = ...,