Exemplo n.º 1
0
 def test_abs__file__(self):
     # Make sure all imported modules have their __file__ attribute
     # as an absolute path.
     # Handled by abs__file__()
     site.abs__file__()
     for module in (sys, os, __builtin__):
         try:
             self.assertTrue(os.path.isabs(module.__file__), repr(module))
         except AttributeError:
             continue
Exemplo n.º 2
0
 def test_abs__file__(self):
     # Make sure all imported modules have their __file__ attribute
     # as an absolute path.
     # Handled by abs__file__()
     site.abs__file__()
     for module in (sys, os, builtins):
         try:
             self.assertTrue(os.path.isabs(module.__file__), repr(module))
         except AttributeError:
             continue
Exemplo n.º 3
0
 def test_abs__file__(self):
     # Make sure all imported modules have their __file__ attribute
     # as an absolute path.
     # Handled by abs__file__()
     site.abs__file__()
     for module in (sys, os, __builtin__):
         try:
             self.failUnless(os.path.isabs(module.__file__), `module`)
         except AttributeError:
             continue
Exemplo n.º 4
0
"""
from system_support import Run_Python
Run_Python ( 'support/gui_support.py', cwd = 'support/' )
print 'finished-1'
"""
"""
import subprocess
subprocess.Popen ( ['python', 'support/gui_support.py' ] )
#
#                            cwd   = cwd ,
#                            shell =  ( os.name == 'nt') )
"""

import __init__root

execfile('support/gui_support.py')
print 'finished-2'
import site

print site.abs__file__()
import gui_support

print gui_support.__file__, __file__

# This will give the current filename,
# including a relative or absolute path
import inspect

print inspect.currentframe().f_code.co_filename

#print site.path