[pypy-svn] r45915 - pypy/dist/pypy/rpython/numpy/test

simonb at codespeak.net simonb at codespeak.net
Wed Aug 22 20:01:20 CEST 2007


Author: simonb
Date: Wed Aug 22 20:01:17 2007
New Revision: 45915

Modified:
   pypy/dist/pypy/rpython/numpy/test/test_array.py
Log:
remove this junk test code, i think it was there because i could not get pygame to work

Modified: pypy/dist/pypy/rpython/numpy/test/test_array.py
==============================================================================
--- pypy/dist/pypy/rpython/numpy/test/test_array.py	(original)
+++ pypy/dist/pypy/rpython/numpy/test/test_array.py	Wed Aug 22 20:01:17 2007
@@ -117,15 +117,4 @@
         assert fn(0) == 1
         assert fn(1) == 99
         
-        t = TranslationContext()
-        t.buildannotator().build_types(access_array, [int])
-        t.buildrtyper().specialize()
-        graph = t.buildflowgraph(access_array)
-        
-        from pypy.translator.tool.make_dot import make_dot
-        filename = make_dot('access_array', graph)
-
-        from pypy.translator.c.genc import CExtModuleBuilder
-        b = CExtModuleBuilder(t, access_array)
-        filename = b.generate_source()
 



More information about the Pypy-commit mailing list