From 8dc082dce5a742a0d87270a4494304acec000ec7 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Fri, 21 Apr 2017 17:52:48 -0700 Subject: [PATCH] fix arg names in string.pyi (#1188) --- stdlib/2/string.pyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stdlib/2/string.pyi b/stdlib/2/string.pyi index 4bbfb486c..751fd28a0 100644 --- a/stdlib/2/string.pyi +++ b/stdlib/2/string.pyi @@ -41,9 +41,9 @@ def strip(s: AnyStr, chars: AnyStr = ...) -> AnyStr: ... def swapcase(s: AnyStr) -> AnyStr: ... def translate(s: str, table: str, deletechars: str = ...) -> str: ... def upper(s: AnyStr) -> AnyStr: ... -def ljust(s: AnyStr, width: int, fillhar: AnyStr = ...) -> AnyStr: ... -def rjust(s: AnyStr, width: int, fillhar: AnyStr = ...) -> AnyStr: ... -def center(s: AnyStr, width: int, fillhar: AnyStr = ...) -> AnyStr: ... +def ljust(s: AnyStr, width: int, fillchar: AnyStr = ...) -> AnyStr: ... +def rjust(s: AnyStr, width: int, fillchar: AnyStr = ...) -> AnyStr: ... +def center(s: AnyStr, width: int, fillchar: AnyStr = ...) -> AnyStr: ... def zfill(s: AnyStr, width: int) -> AnyStr: ... def replace(s: AnyStr, old: AnyStr, new: AnyStr, maxreplace: int = ...) -> AnyStr: ...