From 3511c05298607a49d2bb70a0916437a320fcdcfb Mon Sep 17 00:00:00 2001 From: Eitot Date: Mon, 29 Aug 2016 04:32:54 +0200 Subject: [PATCH] Remove obsolete Psyco dependency (#100) --- scour/scour.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/scour/scour.py b/scour/scour.py index 369bf87..2fc4921 100644 --- a/scour/scour.py +++ b/scour/scour.py @@ -71,13 +71,6 @@ try: except ImportError: sys.stderr.write("Scour requires at least Python 2.7 or Python 3.3+.") -# Import Psyco if available -try: - import psyco - psyco.full() -except ImportError: - pass - # select the most precise walltime measurement function available on the platform if sys.platform.startswith('win'): walltime = time.clock