diff --git a/builtins/2.7/unicodedata.pyi b/builtins/2.7/unicodedata.pyi index 51280ea75..196f1428a 100644 --- a/builtins/2.7/unicodedata.pyi +++ b/builtins/2.7/unicodedata.pyi @@ -15,9 +15,9 @@ def combining(unichr: unicode) -> int: ... def decimal(chr: unicode, default: _default = ...) -> Union[int, _default]: ... def decomposition(unichr: unicode) -> str: ... def digit(chr: unicode, default: _default = ...) -> Union[int, _default]: ... -def east_asian_width(unichr: unicode): str -def lookup(name: str): unicode -def mirrored(unichr: unicode): int +def east_asian_width(unichr: unicode) -> str: ... +def lookup(name: str) -> unicode: ... +def mirrored(unichr: unicode) -> int: ... def name(chr: unicode, default: _default = ...) -> Union[str, _default]: ... def normalize(form: str, unistr: unicode) -> unicode: ... def numeric(chr, default: _default = ...) -> Union[float, _default]: ... @@ -32,9 +32,9 @@ class UCD(object): def decimal(self, chr: unicode, default: _default = ...) -> Union[int, _default]: ... def decomposition(self, unichr: unicode) -> str: ... def digit(self, chr: unicode, default: _default = ...) -> Union[int, _default]: ... - def east_asian_width(self, unichr: unicode): str - def lookup(self, name: str): unicode - def mirrored(self, unichr: unicode): int + def east_asian_width(self, unichr: unicode) -> str: ... + def lookup(self, name: str) -> unicode: ... + def mirrored(self, unichr: unicode) -> int: ... def name(self, chr: unicode, default: _default = ...) -> Union[str, _default]: ... def normalize(self, form: str, unistr: unicode) -> unicode: ... def numeric(self, chr: unicode, default: _default = ...) -> Union[float, _default]: ...