Fix spelling and grammar in documentation and code comments

This commit is contained in:
Martin Panter 2016-08-04 13:07:31 +00:00
parent 72e483aac4
commit 69332c1a64
14 changed files with 15 additions and 15 deletions

View file

@ -465,7 +465,7 @@ class CmdLineTest(unittest.TestCase):
rc, out, err = assert_python_ok('-I', '-c',
'from sys import flags as f; '
'print(f.no_user_site, f.ignore_environment, f.isolated)',
# dummyvar to prevent extranous -E
# dummyvar to prevent extraneous -E
dummyvar="")
self.assertEqual(out.strip(), b'1 1 1')
with test.support.temp_cwd() as tmpdir: