2013-05-26 45 views

回答

3

你看錯了,它說:

本地應用程序/庫特定進口

其中當地適用於自己的應用程序和庫進口(如:你自己的庫/類)

3

想象一下,你正在開發一個Twisted -application myapp有模塊AB。你的代碼myapp.A使用myapp.B的一些功能。它還使用Twisted功能和一些內置集合。這就是你如何在A.py結構化進口:

# Standard library imports first 
from collections import defaultdict 

# 3rd-party imports 
from twisted.internet import reactor 

# And now your own modules 
from myapp.B import foo, bar