diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:11:40 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:11:40 (GMT) |
commit | b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0 (patch) | |
tree | fecebf5a3c00ff7f3194ff1296e4cb26468634f0 /Lib/unittest/test/test_program.py | |
parent | 9ff79f7c46fc13bb0855d33ab75acd578a950abf (diff) | |
download | cpython-b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0.zip cpython-b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0.tar.gz cpython-b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0.tar.bz2 |
#18741: fix more typos. Patch by Févry Thibault.
Diffstat (limited to 'Lib/unittest/test/test_program.py')
-rw-r--r-- | Lib/unittest/test/test_program.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/test/test_program.py b/Lib/unittest/test/test_program.py index 9794868..8a4b3fa 100644 --- a/Lib/unittest/test/test_program.py +++ b/Lib/unittest/test/test_program.py @@ -330,7 +330,7 @@ class TestCommandLineArgs(unittest.TestCase): self.assertEqual(program.testNames, argv[1:]) # it may be better to use platform specific functions to normalise paths - # rather than accepting '.PY' and '\' as file seprator on Linux / Mac + # rather than accepting '.PY' and '\' as file separator on Linux / Mac # it would also be better to check that a filename is a valid module # identifier (we have a regex for this in loader.py) # for invalid filenames should we raise a useful error rather than |