소스 검색

Ensure lazy-loading works with subpackages.

tags/v0.2
Ben Kurtovic 12 년 전
부모
커밋
d0217d7b87
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      earwigbot/lazy.py

+ 2
- 0
earwigbot/lazy.py 파일 보기

@@ -60,6 +60,8 @@ class _LazyModule(type):
parents = (ModuleType,)
klass = type.__new__(cls, "module", parents, attributes)
sys.modules[name] = klass(name)
if "." in name: # Also ensure the parent exists
_LazyModule(name.rsplit(".", 1)[0])
return sys.modules[name]
finally:
release_lock()


불러오는 중...
취소
저장