Lines Matching refs:baseName
1725 def __init__(self, screenName=None, baseName=None, className='Tk',
1728 be created. BASENAME will be used for the identification of the profile file (see
1738 if baseName is None:
1740 baseName = os.path.basename(sys.argv[0])
1741 baseName, ext = os.path.splitext(baseName)
1743 baseName = baseName + ext
1745 self.tk = _tkinter.create(screenName, baseName, className, interactive, wantobjects, useTk, sync, use)
1750 self.readprofile(baseName, className)
1795 def readprofile(self, baseName, className):
1796 """Internal function. It reads BASENAME.tcl and CLASSNAME.tcl into
1797 the Tcl Interpreter and calls execfile on BASENAME.py and CLASSNAME.py if
1804 base_tcl = os.path.join(home, '.%s.tcl' % baseName)
1805 base_py = os.path.join(home, '.%s.py' % baseName)
1843 def Tcl(screenName=None, baseName=None, className='Tk', useTk=0):
1844 return Tk(screenName, baseName, className, useTk)