作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在同一个包中导入类时遇到问题,这似乎不是循环依赖问题。所以我现在真的很困惑。
my-project/
lexer.py
exceptions.py
exceptions.py
中声明了一个异常并想在
lexer.py
中使用它:
class LexError(Exception):
def __init__(self, message, line):
self.message = message
self.line = line
import re
import sys
from exceptions import LexError
...
lexer.py
是唯一的文件有
import
在里面。
最佳答案
exceptions
与内置模块冲突 exception
.
>>> import exceptions
>>> exceptions.LexError
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'LexError'
>>> from exceptions import LexError
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name LexError
关于python - 导入错误 : cannot import name (not a circular dependency),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33719949/
我是一名优秀的程序员,十分优秀!