diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:07:38 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:07:38 (GMT) |
commit | 5dd99ebbc25ac0e182cb00ac4c67aef8d32a6755 (patch) | |
tree | b639ac7e60a721ab01be413f6ca282c1088057d3 /Lib/test | |
parent | b37327b18c8378a8a631b9b37f4bb99bac4e917c (diff) | |
download | cpython-5dd99ebbc25ac0e182cb00ac4c67aef8d32a6755.zip cpython-5dd99ebbc25ac0e182cb00ac4c67aef8d32a6755.tar.gz cpython-5dd99ebbc25ac0e182cb00ac4c67aef8d32a6755.tar.bz2 |
#18741: fix more typos. Patch by Févry Thibault.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_support.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 1a1cac8..fe5a4f3 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -184,7 +184,7 @@ def unload(name): if sys.platform.startswith("win"): def _waitfor(func, pathname, waitall=False): - # Peform the operation + # Perform the operation func(pathname) # Now setup the wait loop if waitall: @@ -200,7 +200,7 @@ if sys.platform.startswith("win"): # required when contention occurs. timeout = 0.001 while timeout < 1.0: - # Note we are only testing for the existance of the file(s) in + # Note we are only testing for the existence of the file(s) in # the contents of the directory regardless of any security or # access rights. If we have made it this far, we have sufficient # permissions to do that much using Python's equivalent of the |