Django Book 翻译
菜单>:
TOC
返回
原文:
Note the ``import re`` , because ``DISALLOWED_USER_AGENTS`` requires its values to be compiled regexes (i.e., the output of ``re.compile()`` ). The settings file is regular python, so its perfectly OK to include Python ``import`` statements in it.
翻译:
请注意 ``import re`` ,因为 ``DISALLOWED_USER_AGENTS`` 要求其值为已编译的正则表达式(也就是 ``re.compile()`` 的返回值)。配置文件是常规的python文件,所以在其中包括Python ``import`` 语句不会有任何问题。
备注:
译者: