summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r--Lib/test/test_support.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index aa8eaa6..943ba8a 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -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