เพียงเพื่อติดตามAlexMartelli ของและCatskul ของคำตอบมีบางกรณีที่เรียบง่าย แต่จริงๆที่น่ารังเกียจที่ปรากฏฉิบหายreload
อย่างน้อยในหลาม 2
สมมติว่าฉันมีแผนผังแหล่งที่มาต่อไปนี้:
- foo
- __init__.py
- bar.py
โดยมีเนื้อหาดังต่อไปนี้:
init.py:
from bar import Bar, Quux
bar.py:
print "Loading bar"
class Bar(object):
@property
def x(self):
return 42
class Quux(Bar):
object_count = 0
def __init__(self):
self.count = self.object_count
self.__class__.object_count += 1
@property
def x(self):
return super(Quux,self).x + 1
def __repr__(self):
return 'Quux[%d, x=%d]' % (self.count, self.x)
ใช้งานได้ดีโดยไม่ต้องใช้reload
:
>>> from foo import Quux
Loading bar
>>> Quux()
Quux[0, x=43]
>>> Quux()
Quux[1, x=43]
>>> Quux()
Quux[2, x=43]
แต่ลองโหลดใหม่และมันก็ไม่มีผลหรือเสียหายอะไร:
>>> import foo
Loading bar
>>> from foo import Quux
>>> Quux()
Quux[0, x=43]
>>> Quux()
Quux[1, x=43]
>>> reload(foo)
<module 'foo' from 'foo\__init__.pyc'>
>>> Quux()
Quux[2, x=43]
>>> from foo import Quux
>>> Quux()
Quux[3, x=43]
>>> reload(foo.bar)
Loading bar
<module 'foo.bar' from 'foo\bar.pyc'>
>>> Quux()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "foo\bar.py", line 17, in __repr__
return 'Quux[%d, x=%d]' % (self.count, self.x)
File "foo\bar.py", line 15, in x
return super(Quux,self).x + 1
TypeError: super(type, obj): obj must be an instance or subtype of type
>>> Quux().count
5
>>> Quux().count
6
>>> Quux = foo.bar.Quux
>>> Quux()
Quux[0, x=43]
>>> foo.Quux()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "foo\bar.py", line 17, in __repr__
return 'Quux[%d, x=%d]' % (self.count, self.x)
File "foo\bar.py", line 15, in x
return super(Quux,self).x + 1
TypeError: super(type, obj): obj must be an instance or subtype of type
>>> foo.Quux().count
8
วิธีเดียวที่ฉันจะให้แน่ใจว่าbar
submodule ถูกโหลดใหม่คือการreload(foo.bar)
; วิธีเดียวที่ฉันเข้าถึงQuux
คลาสที่โหลดซ้ำคือการเข้าถึงและคว้ามันจากโมดูลย่อยที่โหลดซ้ำ แต่foo
โมดูลตัวเองเก็บไว้ถือไว้เดิมQuux
วัตถุชั้นคงเพราะมันใช้from bar import Bar, Quux
(แทนที่จะimport bar
ตามมาด้วยQuux = bar.Quux
); ยิ่งไปกว่านั้นQuux
ชั้นเรียนก็ไม่ตรงกันซึ่งเป็นเรื่องแปลกประหลาด
... possible ... import a component Y from module X
" vs "question is ... importing a class or function X from a module Y
" ฉันกำลังเพิ่มการแก้ไขเอฟเฟกต์นั้น