[pypy-svn] r19733 - pypy/dist/pypy/translator/tool/pygame

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Nov 10 18:29:57 CET 2005


Author: cfbolz
Date: Thu Nov 10 18:29:55 2005
New Revision: 19733

Modified:
   pypy/dist/pypy/translator/tool/pygame/drawgraph.py
Log:
add blue and yellow


Modified: pypy/dist/pypy/translator/tool/pygame/drawgraph.py
==============================================================================
--- pypy/dist/pypy/translator/tool/pygame/drawgraph.py	(original)
+++ pypy/dist/pypy/translator/tool/pygame/drawgraph.py	Thu Nov 10 18:29:55 2005
@@ -16,6 +16,8 @@
     'white': (255,255,255),
     'red': (255,0,0),
     'green': (0,255,0),
+    'blue': (0,0,255),
+    'yellow': (255,255,0),
     }
 re_nonword=re.compile(r'([^0-9a-zA-Z_.]+)')
 



More information about the Pypy-commit mailing list