[pypy-svn] r36438 - pypy/dist/pypy/translator/js/modules

fijal at codespeak.net fijal at codespeak.net
Wed Jan 10 22:10:40 CET 2007


Author: fijal
Date: Wed Jan 10 22:10:38 2007
New Revision: 36438

Modified:
   pypy/dist/pypy/translator/js/modules/dom.py
Log:
kill unnecessary comment


Modified: pypy/dist/pypy/translator/js/modules/dom.py
==============================================================================
--- pypy/dist/pypy/translator/js/modules/dom.py	(original)
+++ pypy/dist/pypy/translator/js/modules/dom.py	Wed Jan 10 22:10:38 2007
@@ -299,12 +299,10 @@
     pass
     
 def setTimeout(func, delay):
-    # scheduler call, but we don't want to mess with threads right now
     if one():
         setTimeout(some_fun, delay)
     else:
         func()
-    #pass
 
 window = Window()
 document = window.document



More information about the Pypy-commit mailing list