Changeset 1186
- Timestamp:
- 04/14/08 11:53:37 (2 years ago)
- Location:
- pyamf/branches/adapter-pep-302-250/pyamf
- Files:
-
- 3 added
- 1 removed
- 1 modified
-
adapters/__init__.py (modified) (2 diffs)
-
util (added)
-
util.py (deleted)
-
util/__init__.py (added)
-
util/imports.py (added)
Legend:
- Unmodified
- Added
- Removed
-
pyamf/branches/adapter-pep-302-250/pyamf/adapters/__init__.py
r1064 r1186 11 11 """ 12 12 13 import os.path, glob , imp13 import os.path, glob 14 14 15 from p eak.util import imports15 from pyamf.util import imports 16 16 17 17 class PackageImporter(object): … … 46 46 47 47 try: 48 imp .find_module(mod[1:])48 imports.find_module(mod[1:]) 49 49 except ImportError: 50 50 continue
