- python 2.2 compatibility
authorMark Huang <mlhuang@cs.princeton.edu>
Sun, 29 Oct 2006 02:35:28 +0000 (02:35 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Sun, 29 Oct 2006 02:35:28 +0000 (02:35 +0000)
PLC/Debug.py

index ccd7db7..b8dac85 100644 (file)
@@ -46,8 +46,9 @@ def profile(callable):
     return wrapper
 
 if __name__ == "__main__":
-    @profile
     def sleep(seconds = 1):
         time.sleep(seconds)
 
+    sleep = profile(sleep)
+
     sleep(1)