From 3029357ad7be9b86e5ade20c5ca5f6e583fe11cf Mon Sep 17 00:00:00 2001 From: Semyon Proshev Date: Thu, 16 Nov 2017 19:31:55 +0300 Subject: [PATCH] Add `unicode.__rmul__` (#1749) --- stdlib/2/__builtin__.pyi | 1 + 1 file changed, 1 insertion(+) 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: ...