diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-25 22:32:56 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-25 22:32:56 (GMT) |
commit | 7c4a7e6f3cbd98ad547a3f1661582517612419e3 (patch) | |
tree | 401bde344fe15ab617c9be5c0e6fec7f4363d81f /Tools/pybench | |
parent | bf8ab77f940013e42f7b9af5b4fd2100238f389b (diff) | |
download | cpython-7c4a7e6f3cbd98ad547a3f1661582517612419e3.zip cpython-7c4a7e6f3cbd98ad547a3f1661582517612419e3.tar.gz cpython-7c4a7e6f3cbd98ad547a3f1661582517612419e3.tar.bz2 |
#18803: fix more typos. Patch by FĂ©vry Thibault.
Diffstat (limited to 'Tools/pybench')
-rw-r--r-- | Tools/pybench/CommandLine.py | 2 | ||||
-rw-r--r-- | Tools/pybench/systimes.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Tools/pybench/CommandLine.py b/Tools/pybench/CommandLine.py index 715bc49..073cca0 100644 --- a/Tools/pybench/CommandLine.py +++ b/Tools/pybench/CommandLine.py @@ -462,7 +462,7 @@ class Application: handler = getattr(self, handlername) except AttributeError: if value == '': - # count the number of occurances + # count the number of occurrences if optionname in values: values[optionname] = values[optionname] + 1 else: diff --git a/Tools/pybench/systimes.py b/Tools/pybench/systimes.py index 6bc7e80..5e00891 100644 --- a/Tools/pybench/systimes.py +++ b/Tools/pybench/systimes.py @@ -5,7 +5,7 @@ This module implements various different strategies for measuring performance timings. It tries to choose the best available method - based on the platforma and available tools. + based on the platform and available tools. On Windows, it is recommended to have the Mark Hammond win32 package installed. Alternatively, the Thomas Heller ctypes |