diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 16:13:22 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 16:13:22 +0300 |
commit | e0c69161bc9d4e9deca4fc0add189b4df9cce8cb (patch) | |
tree | 577f43f5da23af8cd3f34422599627cef6a2902f /Lib/sqlite3/test/regression.py | |
parent | 1d8e7dbf1ab5f206016de6ccd9ce3962d264bd9b (diff) | |
parent | b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0 (diff) | |
download | cpython-git-e0c69161bc9d4e9deca4fc0add189b4df9cce8cb.tar.gz |
#18741: merge with 3.3.
Diffstat (limited to 'Lib/sqlite3/test/regression.py')
-rw-r--r-- | Lib/sqlite3/test/regression.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/sqlite3/test/regression.py b/Lib/sqlite3/test/regression.py index 5e2fbf9435..b927cb3ed1 100644 --- a/Lib/sqlite3/test/regression.py +++ b/Lib/sqlite3/test/regression.py @@ -161,7 +161,8 @@ class RegressionTests(unittest.TestCase): def CheckCursorConstructorCallCheck(self): """ - Verifies that cursor methods check wether base class __init__ was called. + Verifies that cursor methods check whether base class __init__ was + called. """ class Cursor(sqlite.Cursor): def __init__(self, con): @@ -187,7 +188,8 @@ class RegressionTests(unittest.TestCase): def CheckConnectionConstructorCallCheck(self): """ - Verifies that connection methods check wether base class __init__ was called. + Verifies that connection methods check whether base class __init__ was + called. """ class Connection(sqlite.Connection): def __init__(self, name): |