Whitespace normalization.
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 @@
>>> class A(object):
... pass
-
+
>>> class B(A, type):
... pass
Traceback (most recent call last):
@@ -1494,7 +1494,7 @@
... 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