OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:setup_py
(Results
1 - 3
of
3
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_core.py
77
setup_py
= os.path.join(test.test_support.TESTFN, "setup.py")
79
self.write_setup(setup_prints_cwd, path=
setup_py
))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_core.py
77
setup_py
= os.path.join(test.test_support.TESTFN, "setup.py")
79
self.write_setup(setup_prints_cwd, path=
setup_py
))
/external/autotest/utils/
external_packages.py
212
egg_path = self._build_egg_using_setup_py(
setup_py
='setup.py')
220
egg_path = self._build_egg_using_setup_py(
setup_py
='setupegg.py')
286
def _build_using_setup_py(self,
setup_py
='setup.py'):
291
@param
setup_py
- The name of the setup.py file to execute.
295
if not os.path.exists(
setup_py
):
296
raise Error('%s does not exist in %s' % (
setup_py
, os.getcwd()))
297
status = system("'%s' %s build" % (sys.executable,
setup_py
))
304
def _build_egg_using_setup_py(self,
setup_py
='setup.py'):
309
@param
setup_py
- The name of the setup.py file to execute.
313
if not os.path.exists(
setup_py
)
[
all
...]
Completed in 329 milliseconds