Commit 26b7e09d authored by Vinzenz Feenstra's avatar Vinzenz Feenstra

Make the modules.py test succeed

Signed-off-by: default avatarVinzenz Feenstra <evilissimo@gmail.com>
parent 78c12dde
...@@ -8,4 +8,6 @@ x = repr(empty_module) ...@@ -8,4 +8,6 @@ x = repr(empty_module)
print x[0:29] print x[0:29]
print x[-2:] print x[-2:]
print repr(math) # no path for built-ins, so we can just check as normal # cpython 2.7.5 writes "from '/usr/lib64/python2.7/lib-dynload/math.so'"
# pyston writes "(built-in)"
print repr(math)[0:15] + "(built-in)>"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment