全局名称're'未定义

时间:2012-10-04 10:12:12

标签: python regex mincemeat

我是python的新手,在地图上工作可以减少mincemeat的问题。运行mincemeat脚本时出现以下错误。

$python mincemeat.py -p changeme localhost
error: uncaptured python exception, closing channel <__main__.Client connected at 0x923fdcc> 
(<type 'exceptions.NameError'>:global name 're' is not defined
 [/usr/lib/python2.7/asyncore.py|read|79]
 [/usr/lib/python2.7/asyncore.py|handle_read_event|438] 
 [/usr/lib/python2.7/asynchat.py|handle_read|140]
 [mincemeat.py|found_terminator|96]
 [mincemeat.py|process_command|194]
 [mincemeat.py|call_mapfn|170]
 [raw1.py|mapfn|43])

我的代码位于raw1.py脚本中,该脚本在上面的堆栈跟踪中显示为[raw1.py|mapfn|43]

import re
import mincemeat

# ...

allStopWords = {'about':1, 'above':1, 'after':1, 'again':1}

def mapfn(fname, fcont):
    # ...
    for item in tList[1].split():
        word = re.sub(r'[^\w]', ' ', item).lower().strip()        # ERROR
        if (word not in allStopWords) and (len(word) > 1):
            # ....

我已经在raw1.py中导入了re。如果我在mincemeat.py中导入re,则不会出现错误。

3 个答案:

答案 0 :(得分:13)

您需要在mapfn本身拥有import语句。 mapfn在不同的python进程中执行,因此它无权访问声明它的原始上下文(包括import)。

答案 1 :(得分:4)

python中的“全局”变量实际上是作用于它们所绑定的模块/文件;你需要在每个使用它们的文件中导入它们。

模块名称就像其他任何变量一样。

答案 2 :(得分:0)

听起来你已经回答了这个问题。如果你在mincemeat.py中使用re,你也需要在那里导入re。