Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(4) | Call(4) | Derive(0) | Import(0)
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/skeinforge_utilities/settings.py SkeinFox(Download)
def getDisplayedDialogFromPath( path ): "Display the repository dialog." pluginModule = gcodec.getModuleWithPath( path ) if pluginModule == None: return None
def addPluginToMenuBar( self, modulePath, repository, window ): "Add a menu to the menu bar from a tool." pluginModule = gcodec.getModuleWithPath( modulePath ) if pluginModule == None: print( 'this should never happen, pluginModule in addMenuToMenuBar in settings is None.' )
self.gridTable[ self.latentStringVar.getString() ] = gridVertical path = os.path.join( self.directoryPath, self.latentStringVar.getString() ) pluginModule = gcodec.getModuleWithPath( path ) if pluginModule == None: print( 'this should never happen, pluginModule in addToDialog in PluginFrame in settings is None' )
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/import_plugins/py.py SkeinFox(Download)
def importModule( self ): "Import the python script and store the layers." path = os.path.abspath( self.untilDotName ) pluginModule = gcodec.getModuleWithPath( path ) loopLayers = pluginModule.getLoopLayers( self.layerThickness )