Sun, 06 Oct 2013 19:52:33 +0200
Continued to shorten the code lines to max. 79 characters.
--- a/DebugClients/Python3/DebugClientBase.py Sun Oct 06 19:45:29 2013 +0200 +++ b/DebugClients/Python3/DebugClientBase.py Sun Oct 06 19:52:33 2013 +0200 @@ -1536,7 +1536,8 @@ if len(dict) == 0 and len(udict) > 0: if access: loc = {"udict": udict} - exec('qvar = udict{0!s}'.format(access), globals(), loc) + exec('qvar = udict{0!s}'.format(access), + globals(), loc) qvar = loc["qvar"] # this has to be in line with VariablesViewer.indicators elif rvar and rvar[0][-2:] in ["[]", "()", "{}"]:
--- a/Debugger/DebugUI.py Sun Oct 06 19:45:29 2013 +0200 +++ b/Debugger/DebugUI.py Sun Oct 06 19:52:33 2013 +0200 @@ -15,8 +15,8 @@ from UI.Info import Program -from .DebugClientCapabilities import HasDebugger, HasInterpreter, HasProfiler, \ - HasCoverage +from .DebugClientCapabilities import HasDebugger, HasInterpreter, \ + HasProfiler, HasCoverage import Preferences import Utilities import UI.PixmapCache
--- a/Debugger/DebuggerInterfacePython.py Sun Oct 06 19:45:29 2013 +0200 +++ b/Debugger/DebuggerInterfacePython.py Sun Oct 06 19:52:33 2013 +0200 @@ -435,8 +435,8 @@ self.__sendCommand('{0}{1}\n'.format( DebugProtocol.RequestEnv, str(env))) - def remoteLoad(self, fn, argv, wd, traceInterpreter=False, autoContinue=True, - autoFork=False, forkChild=False): + def remoteLoad(self, fn, argv, wd, traceInterpreter=False, + autoContinue=True, autoFork=False, forkChild=False): """ Public method to load a new program to debug.
--- a/DocumentationTools/ModuleDocumentor.py Sun Oct 06 19:45:29 2013 +0200 +++ b/DocumentationTools/ModuleDocumentor.py Sun Oct 06 19:52:33 2013 +0200 @@ -465,8 +465,9 @@ dict['__init__'].description) and \ self.listEntryDeprecatedTemplate or "", })) - self.keywords.append(("{0} (Constructor)".format(className), - "#{0}.{1}".format(className, '__init__'))) + self.keywords.append( + ("{0} (Constructor)".format(className), + "#{0}.{1}".format(className, '__init__'))) except KeyError: pass
--- a/Globals/AppInfo.py Sun Oct 06 19:45:29 2013 +0200 +++ b/Globals/AppInfo.py Sun Oct 06 19:52:33 2013 +0200 @@ -19,9 +19,9 @@ @param arg commandline arguments (string) @param description text describing the application (string) @param options list of additional commandline options - (list of tuples of two strings (commandline option, option description)). - The options --version, --help and -h are always present and must not - be repeated in this list. + (list of tuples of two strings (commandline option, + option description)). The options --version, --help and -h are + always present and must not be repeated in this list. @return dictionary describing the application """ return {
--- a/Graphics/GraphicsUtilities.py Sun Oct 06 19:45:29 2013 +0200 +++ b/Graphics/GraphicsUtilities.py Sun Oct 06 19:52:33 2013 +0200 @@ -50,7 +50,8 @@ previousStageChildren = [] nodelen = len(nodes) - # second stage are those nodes, which are direct children of the first stage + # second stage are those nodes, which are direct children of the + # first stage for node in stage: for child in children.get(node, []): if child not in previousStageChildren and child not in taken:
--- a/Helpviewer/AdBlock/AdBlockExceptionsDialog.py Sun Oct 06 19:45:29 2013 +0200 +++ b/Helpviewer/AdBlock/AdBlockExceptionsDialog.py Sun Oct 06 19:52:33 2013 +0200 @@ -28,7 +28,8 @@ super().__init__(parent) self.setupUi(self) - self.iconLabel.setPixmap(UI.PixmapCache.getPixmap("adBlockPlusGreen48.png")) + self.iconLabel.setPixmap( + UI.PixmapCache.getPixmap("adBlockPlusGreen48.png")) self.hostEdit.setInactiveText(self.trUtf8("Enter host to be added..."))
--- a/Helpviewer/AdBlock/AdBlockNetwork.py Sun Oct 06 19:45:29 2013 +0200 +++ b/Helpviewer/AdBlock/AdBlockNetwork.py Sun Oct 06 19:52:33 2013 +0200 @@ -76,7 +76,8 @@ if manager.isHostExcepted(url.host()): return False for subscription in manager.subscriptions(): - if subscription.isEnabled() and subscription.adBlockDisabledForUrl(url): + if subscription.isEnabled() and \ + subscription.adBlockDisabledForUrl(url): return False return True
--- a/Helpviewer/Bookmarks/AddBookmarkDialog.py Sun Oct 06 19:45:29 2013 +0200 +++ b/Helpviewer/Bookmarks/AddBookmarkDialog.py Sun Oct 06 19:52:33 2013 +0200 @@ -87,7 +87,8 @@ if self.__bookmarksManager is None: import Helpviewer.HelpWindow - self.__bookmarksManager = Helpviewer.HelpWindow.HelpWindow.bookmarksManager() + self.__bookmarksManager = \ + Helpviewer.HelpWindow.HelpWindow.bookmarksManager() self.__proxyModel = AddBookmarkProxyModel(self) model = self.__bookmarksManager.bookmarksModel()