[pypy-svn] r45002 - pypy/dist/pypy/translator/cli/test

antocuni at codespeak.net antocuni at codespeak.net
Fri Jul 13 10:35:24 CEST 2007


Author: antocuni
Date: Fri Jul 13 10:35:23 2007
New Revision: 45002

Added:
   pypy/dist/pypy/translator/cli/test/mylib.py   (contents, props changed)
Log:
forgot to add this file



Added: pypy/dist/pypy/translator/cli/test/mylib.py
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/translator/cli/test/mylib.py	Fri Jul 13 10:35:23 2007
@@ -0,0 +1,5 @@
+from pypy.translator.cli.carbonpython import export
+
+ at export(int, int)
+def sum(a, b):
+    return a+b



More information about the Pypy-commit mailing list