OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pth_file
(Results
1 - 2
of
2
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_site.py
77
def pth_file_tests(self,
pth_file
):
79
self.assertIn(
pth_file
.imported, sys.modules,
80
"%s not in sys.modules" %
pth_file
.imported)
81
self.assertIn(site.makepath(
pth_file
.good_dir_path)[0], sys.path)
82
self.assertFalse(os.path.exists(
pth_file
.bad_dir_path))
89
pth_file
= PthFile()
90
pth_file
.cleanup(prep=True) # to make sure that nothing is
93
pth_file
.create()
94
site.addpackage(
pth_file
.base_dir,
pth_file
.filename, set()
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_site.py
77
def pth_file_tests(self,
pth_file
):
79
self.assertIn(
pth_file
.imported, sys.modules,
80
"%s not in sys.modules" %
pth_file
.imported)
81
self.assertIn(site.makepath(
pth_file
.good_dir_path)[0], sys.path)
82
self.assertFalse(os.path.exists(
pth_file
.bad_dir_path))
89
pth_file
= PthFile()
90
pth_file
.cleanup(prep=True) # to make sure that nothing is
93
pth_file
.create()
94
site.addpackage(
pth_file
.base_dir,
pth_file
.filename, set()
[
all
...]
Completed in 81 milliseconds