testmodulefqname.py
来自「Python Development Environment (Python I」· Python 代码 · 共 32 行
PY
32 行
import httplib as foo
from httplib import HTTP as bar
from httplib import HTTP_PORT as port
class a(bar):
pass
class b(foo.HTTPConnection):
pass
print port
##c
'''
<config>
<resolveNames>
<string>bar</string>
<string>foo.HTTPConnection</string>
<string>port</string>
</resolveNames>
</config>
'''
##r
# bar -> httplib.HTTP
# foo.HTTPConnection -> httplib.HTTPConnection
# port -> httplib.HTTP_PORT
# Imported regular modules (Alias, Realname)
# foo httplib
# AliasToIdentifier (Module, Realname, Alias)
# httplib HTTP bar
# httplib HTTP_PORT port
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?