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

Lines Matching full:__file__

56         __file__        filename (missing for built-in modules)"""
401 if hasattr(object, '__file__'):
402 return object.__file__
406 if hasattr(object, '__file__'):
407 return object.__file__
491 if ismodule(module) and hasattr(module, '__file__'):
492 f = module.__file__