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

fijal at codespeak.net fijal at codespeak.net
Fri Feb 2 21:31:19 CET 2007


Author: fijal
Date: Fri Feb  2 21:31:16 2007
New Revision: 37828

Modified:
   pypy/dist/pypy/translator/js/modules/dom.py
Log:
Let Document/Window have property to be rendered always the same.


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	Fri Feb  2 21:31:16 2007
@@ -313,8 +313,8 @@
 
 window = Window()
 document = window.document
-window._render_name = 'window'
-document._render_name = 'document'
+Window._render_name = 'window'
+Document._render_name = 'document'
 
 # rtyper stuff
 



More information about the Pypy-commit mailing list