- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
EDIT: closely related to Imports in __init__.py and
import as
statement. That question deals with the behaviour ofimport ... as ...
for up to Pyhon 3.6. The change in behaviour I'm describing below was introduced in Python 3.7, with the intention to fix the bug described in that other question. I'm more interested in where the change is documented (or where the two different behaviours, for Py2 up to Py3.6 vs Py3.7+, are respectively documented) rather than how exactly this behaviour arises (as I already mostly understand that as a result of experimenting in preparation for this question).
.
└── package
├── __init__.py
├── a.py
└── b.py
__init__.py
文件为空。两个模块
package.a
和
package.b
分别包含:
# package.a
import sys
print('package.b' in sys.modules)
import package.b as b
spam = 'ham'
print("{} says b is {}".format(__name__, b))
# package.b
import package.a
print("{} says package.a.spam is {}".format(__name__, repr(package.a.spam)))
python -c "from __future__ import print_function; import package.b"
从根目录,我得到
True
package.a says b is <module 'package.b' from 'C:\\[...]\\package\\b.py'>
package.b says package.a.spam is 'ham'
True
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "package\b.py", line 1, in <module>
import package.a
File "package\a.py", line 4, in <module>
import package.b as b
AttributeError: 'module' object has no attribute 'b'
package.b
package.a
时尚未完成初始化已导入,因此
package.b
的模块对象尚未添加为
package
的模块对象的属性.但是模块对象本身仍然存在(因为它被添加到
sys.modules
),所以绑定(bind)名称应该没有任何问题
b
到那个对象,我相信 Python 3 是什么? Python 2 似乎没有将其直接绑定(bind)到模块对象,而是尝试通过获取名为
'b'
的属性来获取它。来自
package
的模块对象.
If the requested module is retrieved successfully, it will be made available in the local namespace in one of three ways:
- If the module name is followed by as, then the name following as is bound directly to the imported module.
[...]
The first form of import statement binds the module name in the local namespace to the module object, and then goes on to import the next identifier, if any. If the module name is followed by as, the name following as is used as the local name for the module.
from package import b
在 package/a.py
产生相同的结果,只是有不同的错误(即 ImportError
而不是 AttributeError
)。我怀疑 ImportError
只是包装底层 AttributeError
. import package.b
在 package/a.py
不给 AttributeError
在 Py2 中导入时。但是,当然,引用 package.b
稍后在打印调用中产生 AttributeError
在 Py2 和 Py3 中。 最佳答案
如果你这样做
import package.submodule
package.submodule
,该访问是对模块对象的属性查找
package
,它会找到绑定(bind)到
submodule
的任何对象。属性(如果该属性未设置,则失败)。为了一致性,
import package.submodule as whatever
whatever
的对象.
sys.modules['package.submodule']
如果属性查找失败,则查找。进行此更改是为了与
previous change 保持一致。在 Python 3.5 中制作
from package import submodule
回退到
sys.modules
查找,并且进行了更改以使相对导入更加方便。
关于python - 为什么 Python 2 在使用 "import ... as ..."时会尝试获取模块作为包属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62394688/
我刚刚通过更改 import * as CodeMirror 修复了一个错误简单明了import CodeMirror . 我复制了this code . (从 TypeScript 移植) impo
我调试(在 PyCharm 中)一个脚本。我在断点处停止,然后转到调试控制台窗口,然后从那里调用导入行,如下所示: import my_util1 from my_utils 然后我调用 my_uti
谁能给我解释一下 import 语句是如何工作的? 例如,我在 myapp/app/models 包中有一个类型 User: package models type User struct {
我想导入 Control.App进入一个引用 PrimIO.PrimIO 的模块通过不合格的名称 PrimIO在很多地方。当然,问题在于 Control.App还导出一个名为 PrimIO 的定义.我
我应该使用 from foo import bar 或者 import foo.bar as bar 当导入模块 还有无需/希望更改名称 (bar)? 有什么不同吗?有关系吗? 最佳答案 假设 bar
我正在 Windows 上使用 Theano 进行深度学习实验的第一步,我很惊讶仅仅加载库需要多少时间。 这是小测试程序: from time import time t0 = time() impo
在 TypeScript 中,如何在不创建任何别名的情况下从文件“导入 *”? 例如我有一个包含顶级导出函数的文件“utils”,我想导入所有这些函数而不为每个函数重新创建别名。 像这样: impor
我应该使用 from foo import bar 或 import foo.bar as bar 当导入模块并且不需要/希望更改名称(bar)? 有什么不同吗?有关系吗? 最佳答案 假设bar是fo
这个问题在这里已经有了答案: Use 'import module' or 'from module import'? (23 个回答) 关闭8年前。 我想知道代码片段之间是否有任何区别 from u
我试过了 from urllib import request mine = request.Request() 和 import urllib.request mine = urllib.reque
所以,我有一个关于 Python 导入的小谜团。我确信出于某种原因事情应该是这样的,因为 Guido 很少出错。但是,为什么会这样呢? $ cat myModule.py #!/usr/bin/pyt
我们正在将 Rails 3.2 应用程序升级到 Rails 4.0。 我们有一个 assets/stylesheets/application/index.css.sass加载一些其他 sass 文件
我正在开发一个相当小的 Typescript 代码库,该代码库已经足够大,可以拆分到多个文件中。这是一个二十一点游戏。我目前有一堆代码,看起来像: var player = new Player();
是否可以以当模块为 use 时的方式编写模块? d 没有显式导入所有子例程都被导入,当它是 use d 显式导入只有这些显式导入的子程序可用? #!/usr/bin/env perl6 use v6;
这个问题在这里已经有了答案: how to watch changes in whole directory/folder containing many sass files (9 个回答) 5年前
我真的很难让它在 xcode 4 中工作。 我有一个项目将在许多应用程序(网络)中重用,因此我创建一个工作区并添加我的两个项目。到目前为止,一切都很好....这就是失败的地方.. #import "J
经典提取器和新提取器之间的主要区别是什么,哪个最好用? 最佳答案 经典提取器使用原始工作流程,与爬虫和连接器相同。 新的提取器更加精简,通常看起来和感觉都更好,并且经典提取器中的许多小错误已在新提取器
在处理 google webfont import mixin 时,我注意到无法动态构建 @import URL。 .gFontImport (@name, @weights, @subsets) {
我正在关注Django 1.8 tutorial 。在我的项目中mysite ,有一个源文件夹polls 。文件夹中有views.py模块其中 index函数已定义。还有一个urls.py文件: fr
我想使用名为 warp 的第三方库编译一个简单的 Rust 程序: [package] name = "hello-world-warp" version = "0.1.0" [dependencie
我是一名优秀的程序员,十分优秀!