diff options
-rw-r--r-- | PCbuild9/build_tkinter.py | 12 | ||||
-rwxr-xr-x | Tools/pybench/pybench.py | 1 |
2 files changed, 6 insertions, 7 deletions
diff --git a/PCbuild9/build_tkinter.py b/PCbuild9/build_tkinter.py index 993c37c..5423a3b 100644 --- a/PCbuild9/build_tkinter.py +++ b/PCbuild9/build_tkinter.py @@ -12,12 +12,12 @@ import shutil here = os.path.abspath(os.path.dirname(__file__)) par = os.path.pardir -TCL = "tcl8.4.16" -TIX = "Tix8.4.2" -TK = "tk8.4.16" -#TCL = "tcl8.4.12" -#TIX = "Tix8.4.0" -#TK = "tk8.4.12" +#TCL = "tcl8.4.16" +#TIX = "Tix8.4.2" +#TK = "tk8.4.16" +TCL = "tcl8.4.12" +TIX = "Tix8.4.0" +TK = "tk8.4.12" ROOT = os.path.abspath(os.path.join(here, par, par)) NMAKE = "nmake /nologo " diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py index 1a6c85b..dd398f5 100755 --- a/Tools/pybench/pybench.py +++ b/Tools/pybench/pybench.py @@ -301,7 +301,6 @@ class Test: if _debug: print('Calib. overhead time = %.6fms' % ( min_overhead * MILLI_SECONDS)) - return if min_overhead < 0.0: raise ValueError('calibration setup did not work') if max_overhead - min_overhead > 0.1: |