[Python-checkins] r62434 - python/trunk/Tools/pybench/systimes.py

thomas.heller python-checkins at python.org
Mon Apr 21 15:46:55 CEST 2008


Author: thomas.heller
Date: Mon Apr 21 15:46:55 2008
New Revision: 62434

Log:
Fix typo.

Modified:
   python/trunk/Tools/pybench/systimes.py

Modified: python/trunk/Tools/pybench/systimes.py
==============================================================================
--- python/trunk/Tools/pybench/systimes.py	(original)
+++ python/trunk/Tools/pybench/systimes.py	Mon Apr 21 15:46:55 2008
@@ -48,7 +48,7 @@
 ### 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)'


More information about the Python-checkins mailing list