Home | History | Annotate | Download | only in python2.7

Lines Matching refs:imp

48 #   - imp.load_module() cannot be prevented from clobbering existing
55 import sys, imp, os, re, types, inspect, __builtin__, pkgutil, warnings
224 try: module = imp.load_module('__temp__', file, filename, info[1:])
251 magic = imp.get_magic()
254 kind = imp.PY_COMPILED
256 kind = imp.PY_SOURCE
262 module = imp.load_module(name, file, path, (ext, 'r', kind))
358 (object.__name__ in ('errno', 'exceptions', 'gc', 'imp',