Commit dac7b49e authored by Barry Warsaw's avatar Barry Warsaw

In Jython, `@' is not allowed in module names. Extend the TESTFN test

to use "$test" when in Jython.  Closes SF patch #403668.
parent fcc51e88
......@@ -57,10 +57,14 @@ def fcmp(x, y): # fuzzy comparison function
return cmp(x, y)
import os
if os.name !='riscos':
TESTFN = '@test' # Filename used for testing
# Filename used for testing
if os.name == 'java':
# Jython disallows @ in module names
TESTFN = '$test'
elif os.name != 'riscos':
TESTFN = '@test'
else:
TESTFN = 'test' # Filename used for testing
TESTFN = 'test'
del os
from os import unlink
......
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