2002-10-12 11:37:38 +00:00
|
|
|
""" mxTextTools - A tools package for fast text processing.
|
|
|
|
|
|
|
|
|
|
(c) Copyright Marc-Andre Lemburg; All Rights Reserved.
|
|
|
|
|
See the documentation for further information on copyrights,
|
|
|
|
|
or contact the author (mal@lemburg.com).
|
|
|
|
|
"""
|
2003-02-06 03:30:25 +00:00
|
|
|
from mxTextTools import *
|
|
|
|
|
from mxTextTools import __version__
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Make BMS take the role of FS in case the Fast Search object was not built
|
|
|
|
|
#
|
|
|
|
|
try:
|
|
|
|
|
FS
|
|
|
|
|
except NameError:
|
|
|
|
|
FS = BMS
|
|
|
|
|
FSType = BMSType
|