summaryrefslogtreecommitdiff
path: root/pyflakes/test/test_imports.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyflakes/test/test_imports.py')
-rw-r--r--pyflakes/test/test_imports.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyflakes/test/test_imports.py b/pyflakes/test/test_imports.py
index f1bb5cd..3e3be88 100644
--- a/pyflakes/test/test_imports.py
+++ b/pyflakes/test/test_imports.py
@@ -180,7 +180,7 @@ class Test(TestCase):
def test_redefinedTry(self):
"""
- Test that importing a module twice in an try block
+ Test that importing a module twice in a try block
does raise a warning.
"""
self.flakes('''
@@ -193,7 +193,7 @@ class Test(TestCase):
def test_redefinedTryExcept(self):
"""
- Test that importing a module twice in an try
+ Test that importing a module twice in a try
and except block does not raise a warning.
"""
self.flakes('''
@@ -1149,7 +1149,7 @@ class TestSpecialAll(TestCase):
class Python26Tests(TestCase):
"""
- Tests for checking of syntax which is valid in PYthon 2.6 and newer.
+ Tests for checking of syntax which is valid in Python 2.6 and newer.
"""
@skipIf(version_info < (2, 6), "Python >= 2.6 only")