textwrap for py3: fixed stubs to include 'text' param (#420)

This commit is contained in:
Max Wittek
2016-07-29 14:01:03 -07:00
committed by Matthias Kramm
parent 417230043e
commit af860ee993

View File

@@ -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 = ...,