diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-03-15 16:55:01 (GMT) |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-03-15 16:55:01 (GMT) |
| commit | 24b07bcba350bb86c4d6ca446e1564647a199868 (patch) | |
| tree | 1815b1c49a6aec401da86b33fa81d06a0c735679 /Lib/test/test_os.py | |
| parent | 1aa999c49ed82c89257c13cba5e210c3ba34c130 (diff) | |
| download | cpython-24b07bcba350bb86c4d6ca446e1564647a199868.zip cpython-24b07bcba350bb86c4d6ca446e1564647a199868.tar.gz cpython-24b07bcba350bb86c4d6ca446e1564647a199868.tar.bz2 | |
#11515: fix several typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Lib/test/test_os.py')
| -rw-r--r-- | Lib/test/test_os.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 6f68620..6435b61 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -243,7 +243,7 @@ class StatAttributeTests(unittest.TestCase): except TypeError: pass - # Use the constructr with a too-long tuple. + # Use the constructor with a too-long tuple. try: result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) except TypeError: @@ -290,7 +290,7 @@ class StatAttributeTests(unittest.TestCase): except TypeError: pass - # Use the constructr with a too-long tuple. + # Use the constructor with a too-long tuple. try: result2 = os.statvfs_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) except TypeError: |
