summaryrefslogtreecommitdiff
path: root/test_six.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-12-20 22:11:40 -0600
committerBenjamin Peterson <benjamin@python.org>2013-12-20 22:11:40 -0600
commit4ba1d2432cbb5217226194b5a3941c6de01fef6e (patch)
tree7c2955516874aa050ed40356a12c7467b3b6483b /test_six.py
parent99e86b18cb2096a1293b93db7c3bd2a951d6f848 (diff)
downloadsix-4ba1d2432cbb5217226194b5a3941c6de01fef6e.tar.gz
adjust comment
Diffstat (limited to 'test_six.py')
-rw-r--r--test_six.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_six.py b/test_six.py
index 94e33eb..81b424f 100644
--- a/test_six.py
+++ b/test_six.py
@@ -621,7 +621,7 @@ def test_add_metaclass():
assert instance.b == Base.b
assert instance.x == X.x
- # test a class with slots
+ # Test a class with slots.
class MySlots(object):
__slots__ = ["a", "b"]
MySlots = six.add_metaclass(Meta1)(MySlots)