In Jython, `@' is not allowed in module names.  Extend the TESTFN test
to use "$test" when in Jython.  Closes SF patch #403668.
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 @@
     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