[pypy-commit] pypy py3k: typos

bdkearns noreply at buildbot.pypy.org
Tue Mar 5 06:40:34 CET 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: py3k
Changeset: r62057:3cf5ccae78bf
Date: 2013-03-05 00:40 -0500
http://bitbucket.org/pypy/pypy/changeset/3cf5ccae78bf/

Log:	typos

diff --git a/lib-python/3/test/datetimetester.py b/lib-python/3/test/datetimetester.py
--- a/lib-python/3/test/datetimetester.py
+++ b/lib-python/3/test/datetimetester.py
@@ -3676,7 +3676,7 @@
         self.assertEqual(as_datetime, datetime_sc)
         self.assertEqual(datetime_sc, as_datetime)
 
-    def test_attributes():
+    def test_attributes(self):
         a = datetime.date.today()
         with self.assertRaises(AttributeError): a.abc = 1
         a = datetime.time()
@@ -3688,7 +3688,7 @@
         a = datetime.timedelta()
         with self.assertRaises(AttributeError): a.abc = 1
 
-    def test_check_arg_types():
+    def test_check_arg_types(self):
         import decimal
         class Number:
             def __init__(self, value):


More information about the pypy-commit mailing list