Lines Matching full:pathname
37 --output pkgdir Pathname of the output package (short: -o)
448 # XXXX Put this in site-packages if it isn't a full pathname?
451 pathname = output
453 pathname = EasyDialogs.AskFolder(message='Create and select package folder for %s'%packagename,
455 output = pathname
456 if not pathname:
458 packagename = os.path.split(os.path.normpath(pathname))[1]
478 suiteinfo = suite, pathname, modname
562 self.pathname = None
580 self.pathname = EasyDialogs.AskFileForSave(message='Python output file',
587 self.pathname = os.path.join(self.output, modname + '.py')
589 self.pathname = None
590 if not self.pathname:
593 self.modname = os.path.splitext(os.path.split(self.pathname)[1])[0]
649 self.fp = fp = open(self.pathname, 'w')
650 MacOS.SetCreatorAndType(self.pathname, 'Pyth', 'TEXT')