PyXR

c:\projects\bitpim\src \ native \ strings

Subpackages:

Modules

Init code



0001 # There is a Python and a C implementation of Jaro/Winkler available in this
0002 # directory - we try for C first
0003 
0004 if __debug__:
0005     try:
0006         import jarow as j
0007     except:
0008         print "Using (slow) Python version of Jaro/Winkler.  Build C module in native/strings."
0009         import jarowpy as j
0010     jarow=j.jarow
0011     del j
0012 else:
0013     # production must always use native version
0014     import jarow as j
0015     jarow=j.jarow
0016     del j
0017 

Generated by PyXR 0.9.4