We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Originally reported by: Anonymous
Computing the Soundex for a string that matches an imported module seems to clobber that module's namespace. See below from my interactive shell:
#!python >>> import datetime, fuzzy >>> soundex = fuzzy.Soundex(4) >>> datetime <module 'datetime' from '/usr/lib/python2.6/lib-dynload/datetime.so'> >>> soundex('datetime') 'D350' >>> datetime Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'datetime' is not defined
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Originally reported by: Anonymous
Computing the Soundex for a string that matches an imported module seems to clobber that module's namespace. See below from my interactive shell:
The text was updated successfully, but these errors were encountered: