]> granicus.if.org Git - python/commitdiff
#6224: s/JPython/Jython/, and remove one link to a module nine years old.
authorGeorg Brandl <georg@python.org>
Sat, 6 Jun 2009 18:21:58 +0000 (18:21 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 6 Jun 2009 18:21:58 +0000 (18:21 +0000)
Doc/library/platform.rst
Doc/library/tkinter.rst
Lib/imputil.py
Objects/unicodeobject.c

index cd90c389c3c17fac7ed66ab8425e97dfa9c9c296..9900278022b492036b712fa82d7cacc3a488422e 100644 (file)
@@ -169,7 +169,7 @@ Java Platform
 
 .. function:: java_ver(release='', vendor='', vminfo=('','',''), osinfo=('','',''))
 
-   Version interface for JPython.
+   Version interface for Jython.
 
    Returns a tuple ``(release, vendor, vminfo, osinfo)`` with *vminfo* being a
    tuple ``(vm_name, vm_release, vm_vendor)`` and *osinfo* being a tuple
index ce8085d973bc33f4c3b46af5fd9f16e61bc5a0a1..b1a179194026e5f3fa5a315ea68f7408022220fe 100644 (file)
@@ -29,9 +29,6 @@ is maintained at ActiveState.)
    `Tkinter reference: a GUI for Python <http://infohost.nmt.edu/tcc/help/pubs/lang.html>`_
       On-line reference material.
 
-   `Tkinter for JPython <http://jtkinter.sourceforge.net>`_
-      The Jython interface to Tkinter.
-
    `Python and Tkinter Programming <http://www.amazon.com/exec/obidos/ASIN/1884777813>`_
       The book by John Grayson (ISBN 1-884777-81-3).
 
index 0eba43544e07c5e611bdaff93c0cb5f532355304..8b37ef4f78cd772cf34e029aa3eb6a99fb428e44 100644 (file)
@@ -14,7 +14,7 @@ warnpy3k("the imputil module has been removed in Python 3.0", stacklevel=2)
 del warnpy3k
 
 # note: avoid importing non-builtin modules
-import imp                      ### not available in JPython?
+import imp                      ### not available in Jython?
 import sys
 import __builtin__
 
@@ -25,7 +25,7 @@ import marshal
 __all__ = ["ImportManager","Importer","BuiltinImporter"]
 
 _StringType = type('')
-_ModuleType = type(sys)         ### doesn't work in JPython...
+_ModuleType = type(sys)         ### doesn't work in Jython...
 
 class ImportManager:
     "Manage the import process."
@@ -639,8 +639,8 @@ def _test_revamp():
 # TODO
 #
 # from Finn Bock:
-#   type(sys) is not a module in JPython. what to use instead?
-#   imp.C_EXTENSION is not in JPython. same for get_suffixes and new_module
+#   type(sys) is not a module in Jython. what to use instead?
+#   imp.C_EXTENSION is not in Jython. same for get_suffixes and new_module
 #
 #   given foo.py of:
 #      import sys
index 32836433007ec7cbbe1780859552c9b9a5b4ee99..c42cd0c6b33476a79380a4d36fb74268ccadad19 100644 (file)
@@ -6308,7 +6308,7 @@ unicode_center(PyUnicodeObject *self, PyObject *args)
 
 /* This code should go into some future Unicode collation support
    module. The basic comparison should compare ordinals on a naive
-   basis (this is what Java does and thus JPython too). */
+   basis (this is what Java does and thus Jython too). */
 
 /* speedy UTF-16 code point order comparison */
 /* gleaned from: */