diff --git a/stdlib/2/__builtin__.pyi b/stdlib/2/__builtin__.pyi index 05caa608b..4b3e719b2 100644 --- a/stdlib/2/__builtin__.pyi +++ b/stdlib/2/__builtin__.pyi @@ -283,6 +283,7 @@ class unicode(basestring, Sequence[unicode]): def __getslice__(self, start: int, stop: int) -> unicode: ... def __add__(self, s: unicode) -> unicode: ... def __mul__(self, n: int) -> unicode: ... + def __rmul__(self, n: int) -> unicode: ... def __mod__(self, x: Any) -> unicode: ... def __eq__(self, x: object) -> bool: ... def __ne__(self, x: object) -> bool: ...