summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-04-21 13:46:55 (GMT)
committerThomas Heller <theller@ctypes.org>2008-04-21 13:46:55 (GMT)
commitb9dd8db8bff19c921566f591f884e6d5fd639298 (patch)
tree566c97028a01a331d2890181d93aad1a1d95c6fe /Tools
parentad9f62953fb84ed65759902b9f94a016a03662c2 (diff)
downloadcpython-b9dd8db8bff19c921566f591f884e6d5fd639298.zip
cpython-b9dd8db8bff19c921566f591f884e6d5fd639298.tar.gz
cpython-b9dd8db8bff19c921566f591f884e6d5fd639298.tar.bz2
Fix typo.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/pybench/systimes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/pybench/systimes.py b/Tools/pybench/systimes.py
index c4b952e..013add2 100644
--- a/Tools/pybench/systimes.py
+++ b/Tools/pybench/systimes.py
@@ -48,7 +48,7 @@ import time, sys
### Choose an implementation
SYSTIMES_IMPLEMENTATION = None
-USE_CTYPES_GETPROCESSTIMES = 'cytpes GetProcessTimes() wrapper'
+USE_CTYPES_GETPROCESSTIMES = 'ctypes GetProcessTimes() wrapper'
USE_WIN32PROCESS_GETPROCESSTIMES = 'win32process.GetProcessTimes()'
USE_RESOURCE_GETRUSAGE = 'resource.getrusage()'
USE_PROCESS_TIME_CLOCK = 'time.clock() (process time)'