[pypy-svn] r44809 - pypy/extradoc/talk/ep2007/rpython

antocuni at codespeak.net antocuni at codespeak.net
Fri Jul 6 20:49:24 CEST 2007


Author: antocuni
Date: Fri Jul  6 20:49:24 2007
New Revision: 44809

Added:
   pypy/extradoc/talk/ep2007/rpython/demo.py   (contents, props changed)
Log:
automatic execution of the demo



Added: pypy/extradoc/talk/ep2007/rpython/demo.py
==============================================================================
--- (empty file)
+++ pypy/extradoc/talk/ep2007/rpython/demo.py	Fri Jul  6 20:49:24 2007
@@ -0,0 +1,9 @@
+import clr
+clr.AddReferenceToFile('mylib.dll')
+
+import func
+import mylib
+
+N = 10**7
+print func.fn(N)
+print mylib.fn(N)



More information about the Pypy-commit mailing list