Change empty string literals to ellipsis (#377)

For pytype compatibility
This commit is contained in:
alvarocaceres
2016-07-20 12:57:32 -05:00
committed by Matthias Kramm
parent 1d5df0bd7b
commit c1b12970f6
6 changed files with 17 additions and 22 deletions

View File

@@ -51,7 +51,7 @@ class HTMLCalendar(Calendar):
def formatmonthname(self, theyear: int, themonth: int, withyear: bool = ...) -> str: ...
def formatmonth(self, theyear: int, themonth: int, withyear: bool = ...) -> str: ...
def formatyear(self, theyear: int, width: int = 3) -> str: ...
def formatyearpage(self, theyear: int, width: int = 3, css: Optional[str] = 'calendar.css', encoding: Optional[str] = ...) -> str: ...
def formatyearpage(self, theyear: int, width: int = 3, css: Optional[str] = ..., encoding: Optional[str] = ...) -> str: ...
class TimeEncoding:
def __init__(self, locale: LocaleType) -> None: ...