Home
last modified time | relevance | path

Searched refs:extsep (Results 1 – 25 of 34) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_pkg.py90 hier = [("t1", None), ("t1 __init__"+os.extsep+"py", "")]
97 ("t2 __init__"+os.extsep+"py", "'doc for t2'"),
99 ("t2 sub __init__"+os.extsep+"py", ""),
101 ("t2 sub subsub __init__"+os.extsep+"py", "spam = 1"),
144 ("t3 __init__"+os.extsep+"py", ""),
146 ("t3 sub __init__"+os.extsep+"py", ""),
148 ("t3 sub subsub __init__"+os.extsep+"py", "spam = 1"),
161 ("t4 __init__"+os.extsep+"py", ""),
164 ("t4 sub __init__"+os.extsep+"py", ""),
165 ("t4 sub subsub"+os.extsep+"py",
[all …]
Dtest_import.py15 for f in (name + os.extsep + "py",
16 name + os.extsep + "pyc",
17 name + os.extsep + "pyo",
18 name + os.extsep + "pyw",
48 pyo = TESTFN + os.extsep + "pyo"
52 pyc = TESTFN + os.extsep + "pyc"
85 test_with_extension(os.extsep + "py")
99 fname = TESTFN + os.extsep + "py"
140 filename = module + os.extsep + 'py'
166 source = TESTFN + os.extsep + "py"
[all …]
Dtest_imageop.py78 uu.decode(get_qualified_path('testrgb'+os.extsep+'uue'), 'test'+os.extsep+'rgb')
80 image, width, height = getimage('test'+os.extsep+'rgb')
177 unlink('test'+os.extsep+'rgb')
Dtest_repr.py223 touch(os.path.join(self.pkgname, '__init__'+os.extsep+'py'))
226 touch(os.path.join(self.subpkgname, '__init__'+os.extsep+'py'))
248 touch(os.path.join(self.subpkgname, self.pkgname + os.extsep + 'py'))
256 touch(os.path.join(self.subpkgname, 'foo'+os.extsep+'py'), '''\
270 touch(os.path.join(self.subpkgname, 'bar'+os.extsep+'py'), '''\
280 touch(os.path.join(self.subpkgname, 'baz'+os.extsep+'py'), '''\
291 touch(os.path.join(self.subpkgname, 'qux'+os.extsep+'py'), '''\
Dscript_helper.py101 script_filename = script_basename+os.extsep+'py'
117 zip_filename = zip_basename+os.extsep+'zip'
149 zip_filename = zip_basename+os.extsep+'zip'
Dtest_pkgimport.py26 self.package_dir, '__init__'+os.extsep+'py'), 'w').close()
27 self.module_path = os.path.join(self.package_dir, 'foo'+os.extsep+'py')
Dtest_runpy.py111 pkg_fname = os.path.join(pkg_dir, "__init__"+os.extsep+"py")
118 test_fname = mod_base+os.extsep+"py"
213 sibling_fname = os.path.join(module_dir, "sibling"+os.extsep+"py")
224 nephew_fname = os.path.join(cousin_dir, "nephew"+os.extsep+"py")
Dtest_shelve.py11 fn = "shelftemp" + os.extsep + "db"
Dtest_old_mailbox.py48 filename = os.extsep.join((str(t), str(pid), "myhostname", "mydomain"))
Dtest_exceptions.py167 self.assertTrue(co.co_filename.endswith('test_exceptions'+os.extsep+'py'))
179 self.assertTrue(co.co_filename.endswith('test_exceptions'+os.extsep+'py'))
Dtest_pydoc.py286 sourcefn = fullmodname + os.extsep + "py"
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dwhichdb.py32 f = open(filename + os.extsep + "pag", "rb")
36 f = open(filename + os.extsep + "dir", "rb")
43 f = open(filename + os.extsep + "db", "rb")
58 os.stat(filename + os.extsep + "dat")
59 size = os.stat(filename + os.extsep + "dir").st_size
63 f = open(filename + os.extsep + "dir", "rb")
Dgenericpath.py85 def _splitext(p, sep, altsep, extsep): argument
96 dotIndex = p.rfind(extsep)
101 if p[filenameIndex] != extsep:
Ddumbdbm.py55 self._dirfile = filebasename + _os.extsep + 'dir'
61 self._datfile = filebasename + _os.extsep + 'dat'
62 self._bakfile = filebasename + _os.extsep + 'bak'
Dpkgutil.py514 sname = os.extsep.join(name.split('.'))
515 sname_pkg = sname + os.extsep + "pkg"
516 init_py = "__init__" + os.extsep + "py"
Dposixpath.py31 extsep = '.' variable
96 return genericpath._splitext(p, sep, altsep, extsep)
Dntpath.py26 extsep = '.' variable
190 return genericpath._splitext(p, sep, altsep, extsep)
Dfileinput.py318 self._filename + (self._backup or os.extsep+"bak"))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dgenericpath.py93 def _splitext(p, sep, altsep, extsep): argument
104 dotIndex = p.rfind(extsep)
109 if p[filenameIndex] != extsep:
Dpkgutil.py522 sname = os.extsep.join(name.split('.'))
523 sname_pkg = sname + os.extsep + "pkg"
524 init_py = "__init__" + os.extsep + "py"
Dfileinput.py321 self._filename + (self._backup or os.extsep+"bak"))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
Dntpath.py26 extsep = '.' variable
195 return genericpath._splitext(p, sep, altsep, extsep)
Dsite.py194 dotpth = os.extsep + "pth"
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dinstall_lib.py17 PYTHON_SOURCE_EXTENSION = os.extsep + "py"
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
Dntpath.py40 extsep = '.' variable
218 return genericpath._splitext(p, sep, altsep, extsep)

12