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

Lines Matching full:pathname

415 def _compile(pathname, timestamp):
418 The file specified by <pathname> is compiled to a code object and
425 codestring = open(pathname, 'rU').read()
428 code = __builtin__.compile(codestring, pathname, 'exec')
432 f = open(pathname + _suffix_char, 'wb')
483 def _os_path_isdir(pathname):
486 s = _os_stat(pathname)
491 def _timestamp(pathname):
494 s = _os_stat(pathname)
556 def _import_pathname(self, pathname, fqname):
557 if _os_path_isdir(pathname):
558 result = self._import_pathname(_os_path_join(pathname, '__init__'),
562 values['__pkgdir__'] = pathname
563 values['__path__'] = [ pathname ]
568 filename = pathname + suffix
696 # method for coming up with an importer given a pathname that's not yet