aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/future
diff options
context:
space:
mode:
authorzhshishkin <zhshishkin@yandex-team.ru>2022-02-10 16:47:46 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:46 +0300
commit79c237341aa1ecfb6731e89bfe4bf65c3bb5179e (patch)
tree6fe4848dd5c859ca12bbc73dbefafa00bd1163b3 /contrib/python/future
parentb609303efcd1218868ca0eca806ea3cea2e01a8b (diff)
downloadydb-79c237341aa1ecfb6731e89bfe4bf65c3bb5179e.tar.gz
Restoring authorship annotation for <zhshishkin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/python/future')
-rw-r--r--contrib/python/future/future/backports/xmlrpc/client.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/python/future/future/backports/xmlrpc/client.py b/contrib/python/future/future/backports/xmlrpc/client.py
index 3f0cae9b00f..7eeed807508 100644
--- a/contrib/python/future/future/backports/xmlrpc/client.py
+++ b/contrib/python/future/future/backports/xmlrpc/client.py
@@ -1102,9 +1102,9 @@ class _Method(object):
def __init__(self, send, name):
self.__send = send
self.__name = name
- def __repr__(self):
- return "<_Method for %s>" % self.__name
- __str__ = __repr__
+ def __repr__(self):
+ return "<_Method for %s>" % self.__name
+ __str__ = __repr__
def __getattr__(self, name):
return _Method(self.__send, "%s.%s" % (self.__name, name))
def __call__(self, *args):