Author: Antonio Cuni <[email protected]>
Branch:
Changeset: r122:8c862863e7fb
Date: 2011-07-16 10:27 +0200
http://bitbucket.org/pypy/benchmarks/changeset/8c862863e7fb/
Log: kill the symlink, and use a python hack to share the content of
util.py in both directories
diff --git a/own/util.py b/own/util.py
old mode 120000
new mode 100644
--- a/own/util.py
+++ b/own/util.py
@@ -1,1 +1,5 @@
-../unladen_swallow/performance/util.py
\ No newline at end of file
+import os.path
+
+root = os.path.abspath(os.path.join(__file__, '..', '..'))
+util_py = os.path.join(root, 'unladen_swallow', 'performance', 'util.py')
+execfile(util_py)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit