summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-04-13 21:20:36 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-04-13 21:20:36 (GMT)
commit71557596b26e9c899e83adc99659732097097c4e (patch)
treee47d7358f64ca1c126d92e7cd4f66525ad62ad7b /Lib/test/test_descr.py
parent214a7d267471b22cd458bcdac0ca74d22f2ad96a (diff)
downloadcpython-71557596b26e9c899e83adc99659732097097c4e.zip
cpython-71557596b26e9c899e83adc99659732097097c4e.tar.gz
cpython-71557596b26e9c899e83adc99659732097097c4e.tar.bz2
remove pointless change
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r--Lib/test/test_descr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index ed4b289..d38d1f4 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -1743,7 +1743,7 @@ order (MRO) for bases """
return b"hello"
def empty_seq(self):
return []
- def zero(self, other=None):
+ def zero(self):
return 0
def complex_num(self):
return 1j