summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2007-03-12 18:07:52 (GMT)
committerTim Peters <tim.peters@gmail.com>2007-03-12 18:07:52 (GMT)
commitea5962f86e8550978446724dadcacd60e03feef2 (patch)
treea133c011e4a81da13347903bd8d99ef1e2ddf898 /Lib/test/test_descr.py
parentcb637c9ea341b5b1fe94eec78085d2851119161d (diff)
downloadcpython-ea5962f86e8550978446724dadcacd60e03feef2.zip
cpython-ea5962f86e8550978446724dadcacd60e03feef2.tar.gz
cpython-ea5962f86e8550978446724dadcacd60e03feef2.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r--Lib/test/test_descr.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index 1c0b366..7e2313d 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -1466,7 +1466,7 @@ def errors():
>>> class A(object):
... pass
-
+
>>> class B(A, type):
... pass
Traceback (most recent call last):
@@ -1494,7 +1494,7 @@ def errors():
... pass
Also check that assignment to bases is safe.
-
+
>>> B.__bases__ = A1, A2
Traceback (most recent call last):
TypeError: metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases