[Python-Dev] Ill-defined encoding for CP875?

Barry A. Warsaw barry@digicool.com
Mon, 14 May 2001 00:16:18 -0400


>>>>> "FL" == Fredrik Lundh <fredrik@pythonware.com> writes:

    FL> (is Jython using exactly the same hashing and dictionary
    FL> algorithms as CPython?  or does it work by accident also under
    FL> Jython?)

Most likely, it's pure accident.  Jython's PyDictionary uses a Java
Hashtable underneath, so you're dependent on its behavior.

-Barry