HomeSort by relevance Sort by last modified time
    Searched defs:__file__ (Results 1 - 5 of 5) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
appletrawmain.py 41 __file__ = os.path.join(_dir, '__main__.py') variable
42 if os.path.exists(__file__):
46 sys.argv[0] = __file__
48 execfile(__file__)
50 __file__ = os.path.join(_dir, '__main__.pyc') variable
51 if os.path.exists(__file__):
55 sys.argv[0] = __file__
56 _fp = open(__file__, 'rb')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 319 __file__ = 'bar/foo.py' variable in class:TestDiscovery.test_detect_module_clash.Module
362 expectedPath = os.path.abspath(os.path.dirname(unittest.test.__file__))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 319 __file__ = 'bar/foo.py' variable in class:TestDiscovery.test_detect_module_clash.Module
362 expectedPath = os.path.abspath(os.path.dirname(unittest.test.__file__))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
regrtest.py 173 # Some times __path__ and __file__ are not absolute (e.g. while running from
177 # they are found in the CWD their __file__ and __path__ will be relative (this
180 # (site.py absolutize them), the __file__ and __path__ will be absolute too.
181 # Therefore it is necessary to absolutize manually the __file__ and __path__ of
186 if hasattr(module, '__file__'):
187 module.__file__ = os.path.abspath(module.__file__)
1536 __file__ = os.path.abspath(__file__) variable
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
regrtest.py 173 # Some times __path__ and __file__ are not absolute (e.g. while running from
177 # they are found in the CWD their __file__ and __path__ will be relative (this
180 # (site.py absolutize them), the __file__ and __path__ will be absolute too.
181 # Therefore it is necessary to absolutize manually the __file__ and __path__ of
186 if hasattr(module, '__file__'):
187 module.__file__ = os.path.abspath(module.__file__)
1536 __file__ = os.path.abspath(__file__) variable
    [all...]

Completed in 839 milliseconds