[pypy-svn] r4492 - pypy/trunk/src/pypy/translator/tool/pygame

arigo at codespeak.net arigo at codespeak.net
Fri May 21 23:24:23 CEST 2004


Author: arigo
Date: Fri May 21 23:24:22 2004
New Revision: 4492

Modified:
   pypy/trunk/src/pypy/translator/tool/pygame/graphviewer.py
Log:
Increased a bit the size of the window.


Modified: pypy/trunk/src/pypy/translator/tool/pygame/graphviewer.py
==============================================================================
--- pypy/trunk/src/pypy/translator/tool/pygame/graphviewer.py	(original)
+++ pypy/trunk/src/pypy/translator/tool/pygame/graphviewer.py	Fri May 21 23:24:22 2004
@@ -6,7 +6,7 @@
 
 class Display:
     
-    def __init__(self, (w,h)=(700,600)):
+    def __init__(self, (w,h)=(800,740)):
         pygame.init()
         self.resize((w,h))
 


More information about the Pypy-commit mailing list