Sat, 15 May 2021 19:01:16 +0200
Continued to rename eric6 to eric7.
--- a/docs/README-eric6-doc.rst Sat May 15 18:45:04 2021 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,239 +0,0 @@ -================================================ -README for the eric6-doc documentation generator -================================================ - -eric6-doc is the documentation generator of the eric6 IDE. Python source -code documentation may be included as ordinary Python doc-strings or as -documentation comments. For Quixote Template files (PTL) only documentation -comments are available due to the inner workings of Quixote. Documentation -comments start with the string ###, followed by the contents and ended by -###. Every line of the documentation comments contents must start with a # -(see example below). - -For Ruby files, the documentation string must be started with "=begin edoc" -and must be ended with "=end". The documentation string for classes, modules -and functions/methods must follow their defininition. - -Documentation for packages (i.e. directories) must be in a file called -__init__.py or __init__.rb. If a package directory doesn't contain a file -like these, documentation for files in this directory is suppressed. - -The documentation consist of two parts. The first part is the description of -the module, class, function or method. The second part, separated from the -first by a blank line, consists of one or more tags. These are described below. - -eric6-doc produces HTML files from the documentation found within the source -files scaned. It understands the following commandline parameters next to -others. - --o directory - Generate files in the named directory. - --R, -r - Perform a recursive search for Python files. - --x directory - Specify a directory basename to be excluded. This option may be repeated - multiple times. - --i - Don't generate index files. - -Just type "eric6-doc" to get some usage information. - -1. Description --------------- -The descriptions are HTML fragments and may contain most standard HTML. The -description text is included in the output wrapped in P tags, but unchanged -otherwise. Paragraphs have to be separated by a blank line. In order to -generate a blank line in the output enter a line that contains a single dot -(.). Reserved HTML entities (<, > and &) and the at-sign (@) at the beginning -of a line, if that line doesn't contain a tag (see below), must be properly -escaped. "<" should be written as "<", ">" as ">", "&" as "&" and -"@" should be escaped as "@@". - -The documentation string or documentation comment may contain block tags -and inline tags. Inline tags are denoted by curly braces and can be placed -anywhere in the main description or in the description part of block tags. -Block tags can only be placed in the tag section that follows the main -description. Block tags are indicated by an at-sign (@) at the beginning of -the line. The text before the first tag is the description of a module, class, -method or function. - -Python Docstring:: - - """ - This is sentence one, which gets included as a short description. - All additional sentences are included into the full description. - - @param param1 first parameter - @exception ValueError list entry wasn't found - @return flag indicating success - """ - -Python/Quixote Documentation comment:: - - ### - # This is line one, which gets included as a short description. - # All additional lines are included into the full description. - # - # @param param1 first parameter - # @exception ValueError list entry wasn't found - # @return flag indicating success - ### - -Ruby Docstring:: - - =begin edoc - This is line one, which gets included as a short description. - All additional lines are included into the full description. - - @param param1 first parameter - @exception ValueError list entry wasn't found - @return flag indicating success - =end - -2. Block Tags -------------- -The block tags recogized by eric6-doc are: - -@@ - - This isn't really a tag. This is used to escape an at sign at the beginning - of a line. Everything after the first @ is copied verbatim to the output. - -@author author - - This tag is used to name the author of the code. For example:: - - @author Detlev Offenbach <detlev@die-offenbachs.de> - -@deprecated description - - This tag is used to mark a function or method as deprecated. It is always - followed by one or more lines of descriptive text. - -@event eventname description - - This tag is used to describe the events (PyQt) a class may emit. It is - always followed by the event name and one or more lines of descriptive - text. For example:: - - @event closeEvent Emitted when an editor window is closed. - -@exception exception description - - These tags are used to describe the exceptions a function or method may - raise. It is always followed by the exception name and one or more lines - of descriptive text. For example:: - - @exception ValueError The searched value is not contained in the list. - -@ireturn description - - This tag is an alias for the @return tag. - -@keyparam name description - - This tag is like the @param tag, but should be used for parameters, that - should always be given as keyword parameters. It is always followed by - the argument name and one or more lines of descriptive text. For example:: - - @keyparam extension Optional extension of the source file. - -@param name description - - This tag is used to describe a function or method argument. It is always - followed by the argument name and one or more lines of descriptive text. - For example:: - - @param filename name of the source file - -@ptype name parameter-type - - This tag is used to describe the type of a function or method argument. - It is always followed by the argument name and type. The argument has - to be defined already with @param or @keyparam. For example:: - - @ptype filename str - -@raise exception description - - This tag is an alias for the @exception tag. - -@return description - - This tag is used to describe a function or method return value. It can - include one or more lines of descriptive text. For example:: - - @return list of file names - -@rtype type - - This tag is used to describe a function or method return type. It should - follow an @return tag. For - example:: - - @rtype list of str - -@see reference - - This tag is used to include a reference in the documentation. It comes in - three different forms. - - @see "string" - - Adds a text entry of string. No link is generated. eric6-doc - distinguishes this form from the others by looking for a double-quote - (") as the first character. For example: - - @see "eric6-doc readme file" - - @see <a href="URL#value">label</a> - - Adds a link as defined by URL#value. eric6-doc distinguishes this form - from the others by looking for a less-than symbol (<) as the first - character. For example:: - - @see <a href="eric6.eric6-doc.html>eric6-doc documentation generator</a> - - @see package.module#member label - - Adds a link to "member" in "module" in "package". package can be a - package path, where the package names are separated by a dot character - (.). The "package.module#member" part must not be split over several - lines and must name a valid target within the documentation directory. - For example:: - - @see eric6.eric6-doc#main eric6-doc main() function - @see eric6.DocumentationTools.ModuleDocumentor#ModuleDocument.__genModuleSection ModuleDocument.__genModuleSection - -@signal signalname description - - This tag is used to describe the signals (PyQt) a class may emit. It is - always followed by the signal name and one or more lines of descriptive - text. For example:: - - @signal lastEditorClosed Emitted after the last editor window was closed. - -@throws exception description - - This tag is an alias for the @exception tag. - -@type parameter-type - - This tag is used to give the type of the parameter just described. - It must be preceded by a @param or @keyparam tag. For example:: - - @param filename name of the source file - @type str - -3. Inline Tags --------------- -The inline tags recogized by eric6-doc are: - -{@link package.module#member label} - - Inserts an in-line link with visible text label that points to the documentation - given in the reference. This tag works he same way as the @see block tag of this - form.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/README-eric7-doc.rst Sat May 15 19:01:16 2021 +0200 @@ -0,0 +1,239 @@ +================================================ +README for the eric7-doc documentation generator +================================================ + +eric7-doc is the documentation generator of the eric7 IDE. Python source +code documentation may be included as ordinary Python doc-strings or as +documentation comments. For Quixote Template files (PTL) only documentation +comments are available due to the inner workings of Quixote. Documentation +comments start with the string ###, followed by the contents and ended by +###. Every line of the documentation comments contents must start with a # +(see example below). + +For Ruby files, the documentation string must be started with "=begin edoc" +and must be ended with "=end". The documentation string for classes, modules +and functions/methods must follow their defininition. + +Documentation for packages (i.e. directories) must be in a file called +__init__.py or __init__.rb. If a package directory doesn't contain a file +like these, documentation for files in this directory is suppressed. + +The documentation consist of two parts. The first part is the description of +the module, class, function or method. The second part, separated from the +first by a blank line, consists of one or more tags. These are described below. + +eric7-doc produces HTML files from the documentation found within the source +files scaned. It understands the following commandline parameters next to +others. + +-o directory + Generate files in the named directory. + +-R, -r + Perform a recursive search for Python files. + +-x directory + Specify a directory basename to be excluded. This option may be repeated + multiple times. + +-i + Don't generate index files. + +Just type "eric7-doc" to get some usage information. + +1. Description +-------------- +The descriptions are HTML fragments and may contain most standard HTML. The +description text is included in the output wrapped in P tags, but unchanged +otherwise. Paragraphs have to be separated by a blank line. In order to +generate a blank line in the output enter a line that contains a single dot +(.). Reserved HTML entities (<, > and &) and the at-sign (@) at the beginning +of a line, if that line doesn't contain a tag (see below), must be properly +escaped. "<" should be written as "<", ">" as ">", "&" as "&" and +"@" should be escaped as "@@". + +The documentation string or documentation comment may contain block tags +and inline tags. Inline tags are denoted by curly braces and can be placed +anywhere in the main description or in the description part of block tags. +Block tags can only be placed in the tag section that follows the main +description. Block tags are indicated by an at-sign (@) at the beginning of +the line. The text before the first tag is the description of a module, class, +method or function. + +Python Docstring:: + + """ + This is sentence one, which gets included as a short description. + All additional sentences are included into the full description. + + @param param1 first parameter + @exception ValueError list entry wasn't found + @return flag indicating success + """ + +Python/Quixote Documentation comment:: + + ### + # This is line one, which gets included as a short description. + # All additional lines are included into the full description. + # + # @param param1 first parameter + # @exception ValueError list entry wasn't found + # @return flag indicating success + ### + +Ruby Docstring:: + + =begin edoc + This is line one, which gets included as a short description. + All additional lines are included into the full description. + + @param param1 first parameter + @exception ValueError list entry wasn't found + @return flag indicating success + =end + +2. Block Tags +------------- +The block tags recogized by eric7-doc are: + +@@ + + This isn't really a tag. This is used to escape an at sign at the beginning + of a line. Everything after the first @ is copied verbatim to the output. + +@author author + + This tag is used to name the author of the code. For example:: + + @author Detlev Offenbach <detlev@die-offenbachs.de> + +@deprecated description + + This tag is used to mark a function or method as deprecated. It is always + followed by one or more lines of descriptive text. + +@event eventname description + + This tag is used to describe the events (PyQt) a class may emit. It is + always followed by the event name and one or more lines of descriptive + text. For example:: + + @event closeEvent Emitted when an editor window is closed. + +@exception exception description + + These tags are used to describe the exceptions a function or method may + raise. It is always followed by the exception name and one or more lines + of descriptive text. For example:: + + @exception ValueError The searched value is not contained in the list. + +@ireturn description + + This tag is an alias for the @return tag. + +@keyparam name description + + This tag is like the @param tag, but should be used for parameters, that + should always be given as keyword parameters. It is always followed by + the argument name and one or more lines of descriptive text. For example:: + + @keyparam extension Optional extension of the source file. + +@param name description + + This tag is used to describe a function or method argument. It is always + followed by the argument name and one or more lines of descriptive text. + For example:: + + @param filename name of the source file + +@ptype name parameter-type + + This tag is used to describe the type of a function or method argument. + It is always followed by the argument name and type. The argument has + to be defined already with @param or @keyparam. For example:: + + @ptype filename str + +@raise exception description + + This tag is an alias for the @exception tag. + +@return description + + This tag is used to describe a function or method return value. It can + include one or more lines of descriptive text. For example:: + + @return list of file names + +@rtype type + + This tag is used to describe a function or method return type. It should + follow an @return tag. For + example:: + + @rtype list of str + +@see reference + + This tag is used to include a reference in the documentation. It comes in + three different forms. + + @see "string" + + Adds a text entry of string. No link is generated. eric7-doc + distinguishes this form from the others by looking for a double-quote + (") as the first character. For example: + + @see "eric7-doc readme file" + + @see <a href="URL#value">label</a> + + Adds a link as defined by URL#value. eric7-doc distinguishes this form + from the others by looking for a less-than symbol (<) as the first + character. For example:: + + @see <a href="eric7.eric7-doc.html>eric7-doc documentation generator</a> + + @see package.module#member label + + Adds a link to "member" in "module" in "package". package can be a + package path, where the package names are separated by a dot character + (.). The "package.module#member" part must not be split over several + lines and must name a valid target within the documentation directory. + For example:: + + @see eric7.eric7-doc#main eric7-doc main() function + @see eric7.DocumentationTools.ModuleDocumentor#ModuleDocument.__genModuleSection ModuleDocument.__genModuleSection + +@signal signalname description + + This tag is used to describe the signals (PyQt) a class may emit. It is + always followed by the signal name and one or more lines of descriptive + text. For example:: + + @signal lastEditorClosed Emitted after the last editor window was closed. + +@throws exception description + + This tag is an alias for the @exception tag. + +@type parameter-type + + This tag is used to give the type of the parameter just described. + It must be preceded by a @param or @keyparam tag. For example:: + + @param filename name of the source file + @type str + +3. Inline Tags +-------------- +The inline tags recogized by eric7-doc are: + +{@link package.module#member label} + + Inserts an in-line link with visible text label that points to the documentation + given in the reference. This tag works he same way as the @see block tag of this + form.
--- a/eric7.epj Sat May 15 18:45:04 2021 +0200 +++ b/eric7.epj Sat May 15 19:01:16 2021 +0200 @@ -736,7 +736,6 @@ "MANIFEST.in", "docs/LICENSE.GPL3", "docs/README-MacOSX.rst", - "docs/README-eric6-doc.rst", "docs/README-i18n.rst", "docs/README-passive-debugging.rst", "docs/README.rst", @@ -754,7 +753,6 @@ "eric7/APIs/Python/zope-2.10.7.api", "eric7/APIs/Python/zope-2.11.2.api", "eric7/APIs/Python/zope-3.3.1.api", - "eric7/APIs/Python3/PyQt4.bas", "eric7/APIs/Python3/PyQt5.bas", "eric7/APIs/Python3/PyQtChart.bas", "eric7/APIs/Python3/PyQtWebEngine.bas", @@ -923,7 +921,12 @@ "linux/eric7.desktop", "linux/eric7.desktop.in", "linux/eric7_browser.desktop", - "linux/eric7_browser.desktop.in" + "linux/eric7_browser.desktop.in", + "docs/README-eric7-doc.rst", + "eric7/APIs/Python3/eric7.api", + "eric7/APIs/Python3/eric7.bas", + "docs/eric7-plugin.odt", + "docs/eric7-plugin.pdf" ], "OTHERTOOLSPARMS": { "CodeMetrics": { @@ -2232,7 +2235,6 @@ "eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsCheckerDefaults.py", "eric7/E5Network/E5JsonClient.py", "eric7/E5Network/E5JsonServer.py", - "eric7/DebugClients/Python/eric6dbgstub.py", "eric7/eric7_api.py", "eric7/eric7_browser.py", "eric7/eric7_browser.pyw", @@ -2274,13 +2276,14 @@ "eric7/eric7_uipreviewer.pyw", "eric7/eric7_unittest.py", "eric7/eric7_unittest.pyw", - "eric7/eric7config.py" + "eric7/eric7config.py", + "eric7/DebugClients/Python/eric7dbgstub.py" ], "SPELLEXCLUDES": "Dictionaries/excludes.dic", "SPELLLANGUAGE": "en_US", "SPELLWORDS": "Dictionaries/words.dic", "TRANSLATIONEXCEPTIONS": [], - "TRANSLATIONPATTERN": "eric6/i18n/eric6_%language%.ts", + "TRANSLATIONPATTERN": "eric7/i18n/eric7_%language%.ts", "TRANSLATIONS": [ "eric7/i18n/eric6_cs.qm", "eric7/i18n/eric6_cs.ts",
--- a/eric7/APIs/Python3/PyQt4.bas Sat May 15 18:45:04 2021 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,401 +0,0 @@ -QAbstractAnimation QObject -QAbstractButton QWidget -QAbstractEventDispatcher QObject -QAbstractGraphicsShapeItem QGraphicsItem -QAbstractItemDelegate QObject -QAbstractItemModel QObject -QAbstractItemView QAbstractScrollArea -QAbstractListModel QAbstractItemModel -QAbstractMessageHandler QObject -QAbstractNetworkCache QObject -QAbstractPrintDialog QDialog -QAbstractProxyModel QAbstractItemModel -QAbstractScrollArea QFrame -QAbstractSlider QWidget -QAbstractSocket QIODevice -QAbstractSpinBox QWidget -QAbstractState QObject -QAbstractTableModel QAbstractItemModel -QAbstractTextDocumentLayout QObject -QAbstractTransition QObject -QAbstractUriResolver QObject -QAbstractVideoSurface QObject -QAction QObject -QActionEvent QEvent -QActionGroup QObject -QAnimationGroup QAbstractAnimation -QApplication QGuiApplication -QAudioInput QObject -QAudioOutput QObject -QBitmap QPixmap -QBoxLayout QLayout -QBuffer QIODevice -QButtonGroup QObject -QCalendarWidget QWidget -QCheckBox QAbstractButton -QChildEvent QEvent -QClipboard QObject -QCloseEvent QEvent -QColorDialog QDialog -QColumnView QAbstractItemView -QComboBox QWidget -QCommandLinkButton QPushButton -QCommonStyle QStyle -QCompleter QObject -QConicalGradient QGradient -QContextMenuEvent QInputEvent -QCoreApplication QObject -QDBusAbstractAdaptor QObject -QDBusAbstractInterface QObject -QDBusConnectionInterface QDBusAbstractInterface -QDBusInterface QDBusAbstractInterface -QDBusPendingCallWatcher QObject QDBusPendingCall -QDBusPendingReply QDBusPendingCall -QDBusServiceWatcher QObject -QDataWidgetMapper QObject -QDateEdit QDateTimeEdit -QDateTimeEdit QAbstractSpinBox -QDeclarativeComponent QObject -QDeclarativeContext QObject -QDeclarativeEngine QObject -QDeclarativeExpression QObject -QDeclarativeExtensionPlugin QObject -QDeclarativeItem QGraphicsObject QDeclarativeParserStatus -QDeclarativePropertyMap QObject -QDeclarativeView QGraphicsView -QDesignerActionEditorInterface QWidget -QDesignerFormEditorInterface QObject -QDesignerFormWindowInterface QWidget -QDesignerFormWindowManagerInterface QObject -QDesignerObjectInspectorInterface QWidget -QDesignerPropertyEditorInterface QWidget -QDesignerWidgetBoxInterface QWidget -QDesktopWidget QWidget -QDial QAbstractSlider -QDialog QWidget -QDialogButtonBox QWidget -QDirModel QAbstractItemModel -QDnsLookup QObject -QDockWidget QWidget -QDomAttr QDomNode -QDomCDATASection QDomText -QDomCharacterData QDomNode -QDomComment QDomCharacterData -QDomDocument QDomNode -QDomDocumentFragment QDomNode -QDomDocumentType QDomNode -QDomElement QDomNode -QDomEntity QDomNode -QDomEntityReference QDomNode -QDomNotation QDomNode -QDomProcessingInstruction QDomNode -QDomText QDomCharacterData -QDoubleSpinBox QAbstractSpinBox -QDoubleValidator QValidator -QDrag QObject -QDragEnterEvent QDragMoveEvent -QDragLeaveEvent QEvent -QDragMoveEvent QDropEvent -QDropEvent QEvent -QDynamicPropertyChangeEvent QEvent -QEnterEvent QEvent -QErrorMessage QDialog -QEventLoop QObject -QEventTransition QAbstractTransition -QExposeEvent QEvent -QExtensionFactory QObject QAbstractExtensionFactory -QExtensionManager QObject QAbstractExtensionManager -QFile QFileDevice -QFileDevice QIODevice -QFileDialog QDialog -QFileOpenEvent QEvent -QFileSystemModel QAbstractItemModel -QFileSystemWatcher QObject -QFinalState QAbstractState -QFocusEvent QEvent -QFocusFrame QWidget -QFontComboBox QComboBox -QFontDialog QDialog -QFormBuilder QAbstractFormBuilder -QFormLayout QLayout -QFrame QWidget -QGLFramebufferObject QPaintDevice -QGLPixelBuffer QPaintDevice -QGLShader QObject -QGLShaderProgram QObject -QGLWidget QWidget -QGesture QObject -QGestureEvent QEvent -QGraphicsAnchor QObject -QGraphicsAnchorLayout QGraphicsLayout -QGraphicsBlurEffect QGraphicsEffect -QGraphicsColorizeEffect QGraphicsEffect -QGraphicsDropShadowEffect QGraphicsEffect -QGraphicsEffect QObject -QGraphicsEllipseItem QAbstractGraphicsShapeItem -QGraphicsGridLayout QGraphicsLayout -QGraphicsItemAnimation QObject -QGraphicsItemGroup QGraphicsItem -QGraphicsLayout QGraphicsLayoutItem -QGraphicsLineItem QGraphicsItem -QGraphicsLinearLayout QGraphicsLayout -QGraphicsObject QObject QGraphicsItem -QGraphicsOpacityEffect QGraphicsEffect -QGraphicsPathItem QAbstractGraphicsShapeItem -QGraphicsPixmapItem QGraphicsItem -QGraphicsPolygonItem QAbstractGraphicsShapeItem -QGraphicsProxyWidget QGraphicsWidget -QGraphicsRectItem QAbstractGraphicsShapeItem -QGraphicsRotation QGraphicsTransform -QGraphicsScale QGraphicsTransform -QGraphicsScene QObject -QGraphicsSceneContextMenuEvent QGraphicsSceneEvent -QGraphicsSceneDragDropEvent QGraphicsSceneEvent -QGraphicsSceneEvent QEvent -QGraphicsSceneHelpEvent QGraphicsSceneEvent -QGraphicsSceneHoverEvent QGraphicsSceneEvent -QGraphicsSceneMouseEvent QGraphicsSceneEvent -QGraphicsSceneMoveEvent QGraphicsSceneEvent -QGraphicsSceneResizeEvent QGraphicsSceneEvent -QGraphicsSceneWheelEvent QGraphicsSceneEvent -QGraphicsSimpleTextItem QAbstractGraphicsShapeItem -QGraphicsSvgItem QGraphicsObject -QGraphicsTextItem QGraphicsObject -QGraphicsTransform QObject -QGraphicsView QAbstractScrollArea -QGraphicsWebView QGraphicsWidget -QGraphicsWidget QGraphicsObject QGraphicsLayoutItem -QGridLayout QLayout -QGroupBox QWidget -QGuiApplication QCoreApplication -QHBoxLayout QBoxLayout -QHeaderView QAbstractItemView -QHelpContentModel QAbstractItemModel -QHelpContentWidget QTreeView -QHelpEngine QHelpEngineCore -QHelpEngineCore QObject -QHelpEvent QEvent -QHelpIndexModel QStringListModel -QHelpIndexWidget QListView -QHelpSearchEngine QObject -QHelpSearchQueryWidget QWidget -QHelpSearchResultWidget QWidget -QHideEvent QEvent -QHistoryState QAbstractState -QHoverEvent QInputEvent -QHttpMultiPart QObject -QIODevice QObject -QIconDragEvent QEvent -QIdentityProxyModel QAbstractProxyModel -QImage QPaintDevice -QInputDialog QDialog -QInputEvent QEvent -QInputMethodEvent QEvent -QInputMethodQueryEvent QEvent -QIntValidator QValidator -QItemDelegate QAbstractItemDelegate -QItemSelectionModel QObject -QKeyEvent QInputEvent -QKeyEventTransition QEventTransition -QLCDNumber QFrame -QLabel QFrame -QLayout QObject QLayoutItem -QLibrary QObject -QLineEdit QWidget -QLinearGradient QGradient -QListView QAbstractItemView -QListWidget QListView -QLocalServer QObject -QLocalSocket QIODevice -QMainWindow QWidget -QMdiArea QAbstractScrollArea -QMdiSubWindow QWidget -QMenu QWidget -QMenuBar QWidget -QMessageBox QDialog -QMimeData QObject -QMouseEvent QInputEvent -QMouseEventTransition QEventTransition -QMoveEvent QEvent -QMovie QObject -QNetworkAccessManager QObject -QNetworkConfigurationManager QObject -QNetworkCookieJar QObject -QNetworkDiskCache QAbstractNetworkCache -QNetworkReply QIODevice -QNetworkSession QObject -QObjectCleanupHandler QObject -QPageSetupDialog QDialog -QPagedPaintDevice QPaintDevice -QPaintEvent QEvent -QPanGesture QGesture -QParallelAnimationGroup QAnimationGroup -QPauseAnimation QAbstractAnimation -QPicture QPaintDevice -QPinchGesture QGesture -QPixmap QPaintDevice -QPlainTextDocumentLayout QAbstractTextDocumentLayout -QPlainTextEdit QAbstractScrollArea -QPluginLoader QObject -QPrintDialog QAbstractPrintDialog -QPrintPreviewDialog QDialog -QPrintPreviewWidget QWidget -QPrinter QPagedPaintDevice -QProcess QIODevice -QProgressBar QWidget -QProgressDialog QDialog -QPropertyAnimation QVariantAnimation -QPushButton QAbstractButton -QPyDeclarativePropertyValueSource QObject QDeclarativePropertyValueSource -QPyDesignerContainerExtension QObject QDesignerContainerExtension -QPyDesignerCustomWidgetCollectionPlugin QObject QDesignerCustomWidgetCollectionInterface -QPyDesignerCustomWidgetPlugin QObject QDesignerCustomWidgetInterface -QPyDesignerMemberSheetExtension QObject QDesignerMemberSheetExtension -QPyDesignerPropertySheetExtension QObject QDesignerPropertySheetExtension -QPyDesignerTaskMenuExtension QObject QDesignerTaskMenuExtension -QPyTextObject QObject QTextObjectInterface -QRadialGradient QGradient -QRadioButton QAbstractButton -QRegExpValidator QValidator -QResizeEvent QEvent -QRubberBand QWidget -QScreen QObject -QScriptEngine QObject -QScriptEngineDebugger QObject -QScrollArea QAbstractScrollArea -QScrollBar QAbstractSlider -QScrollEvent QEvent -QScrollPrepareEvent QEvent -QSequentialAnimationGroup QAnimationGroup -QSessionManager QObject -QSettings QObject -QSharedMemory QObject -QShortcut QObject -QShortcutEvent QEvent -QShowEvent QEvent -QSignalMapper QObject -QSignalTransition QAbstractTransition -QSimpleXmlNodeModel QAbstractXmlNodeModel -QSizeGrip QWidget -QSlider QAbstractSlider -QSocketNotifier QObject -QSortFilterProxyModel QAbstractProxyModel -QSpacerItem QLayoutItem -QSpinBox QAbstractSpinBox -QSplashScreen QWidget -QSplitter QFrame -QSplitterHandle QWidget -QSqlDriver QObject -QSqlIndex QSqlRecord -QSqlQueryModel QAbstractTableModel -QSqlRelationalDelegate QItemDelegate -QSqlRelationalTableModel QSqlTableModel -QSqlTableModel QSqlQueryModel -QSslSocket QTcpSocket -QStackedLayout QLayout -QStackedWidget QFrame -QStandardItemModel QAbstractItemModel -QState QAbstractState -QStateMachine QState -QStatusBar QWidget -QStatusTipEvent QEvent -QStringListModel QAbstractListModel -QStyle QObject -QStyleHintReturnMask QStyleHintReturn -QStyleHintReturnVariant QStyleHintReturn -QStyleOptionButton QStyleOption -QStyleOptionComboBox QStyleOptionComplex -QStyleOptionComplex QStyleOption -QStyleOptionDockWidget QStyleOption -QStyleOptionFocusRect QStyleOption -QStyleOptionFrame QStyleOption -QStyleOptionGraphicsItem QStyleOption -QStyleOptionGroupBox QStyleOptionComplex -QStyleOptionHeader QStyleOption -QStyleOptionMenuItem QStyleOption -QStyleOptionProgressBar QStyleOption -QStyleOptionRubberBand QStyleOption -QStyleOptionSizeGrip QStyleOptionComplex -QStyleOptionSlider QStyleOptionComplex -QStyleOptionSpinBox QStyleOptionComplex -QStyleOptionTab QStyleOption -QStyleOptionTabBarBase QStyleOption -QStyleOptionTabWidgetFrame QStyleOption -QStyleOptionTitleBar QStyleOptionComplex -QStyleOptionToolBar QStyleOption -QStyleOptionToolBox QStyleOption -QStyleOptionToolButton QStyleOptionComplex -QStyleOptionViewItem QStyleOption -QStylePainter QPainter -QStyledItemDelegate QAbstractItemDelegate -QSvgGenerator QPaintDevice -QSvgRenderer QObject -QSvgWidget QWidget -QSwipeGesture QGesture -QSyntaxHighlighter QObject -QSystemTrayIcon QObject -QTabBar QWidget -QTabWidget QWidget -QTableView QAbstractItemView -QTableWidget QTableView -QTabletEvent QInputEvent -QTapAndHoldGesture QGesture -QTapGesture QGesture -QTcpServer QObject -QTcpSocket QAbstractSocket -QTemporaryFile QFile -QTextBlockFormat QTextFormat -QTextBlockGroup QTextObject -QTextBrowser QTextEdit -QTextCharFormat QTextFormat -QTextDocument QObject -QTextEdit QAbstractScrollArea -QTextFrame QTextObject -QTextFrameFormat QTextFormat -QTextImageFormat QTextCharFormat -QTextList QTextBlockGroup -QTextListFormat QTextFormat -QTextObject QObject -QTextTable QTextFrame -QTextTableCellFormat QTextCharFormat -QTextTableFormat QTextFrameFormat -QThread QObject -QThreadPool QObject -QTimeEdit QDateTimeEdit -QTimeLine QObject -QTimer QObject -QTimerEvent QEvent -QToolBar QWidget -QToolBox QFrame -QToolButton QAbstractButton -QTouchEvent QInputEvent -QTranslator QObject -QTreeView QAbstractItemView -QTreeWidget QTreeView -QUdpSocket QAbstractSocket -QUndoGroup QObject -QUndoStack QObject -QUndoView QListView -QVBoxLayout QBoxLayout -QValidator QObject -QVariantAnimation QAbstractAnimation -QWebFrame QObject -QWebHistoryInterface QObject -QWebInspector QWidget -QWebPage QObject -QWebPluginFactory QObject -QWebView QWidget -QWhatsThisClickedEvent QEvent -QWheelEvent QInputEvent -QWidget QObject QPaintDevice -QWidgetAction QAction -QWidgetItem QLayoutItem -QWindowStateChangeEvent QEvent -QWizard QDialog -QWizardPage QWidget -QXmlDefaultHandler QXmlContentHandler QXmlErrorHandler QXmlDTDHandler QXmlEntityResolver QXmlLexicalHandler QXmlDeclHandler -QXmlFormatter QXmlSerializer -QXmlSerializer QAbstractXmlReceiver -QXmlSimpleReader QXmlReader -QtMsgType int -pyqtWrapperType wrappertype
--- a/eric7/APIs/Python3/eric6.api Sat May 15 18:45:04 2021 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,12403 +0,0 @@ -cleanupSource.cleanupSource?4(dirName) -cleanupSource.main?4(argv) -compileUiFiles.compileUiFiles?4() -compileUiFiles.main?4(argv) -create_windows_links.createWindowsShortcut?4(linkPath, targetPath, iconPath) -create_windows_links.getWinregEntry?4(name, path) -create_windows_links.main?4(argv) -create_windows_links.windowsDesktopEntries?4() -create_windows_links.windowsDesktopNames?4() -create_windows_links.windowsProgramsEntry?4() -eric6.CondaInterface.Conda.Conda.RootName?7 -eric6.CondaInterface.Conda.Conda.cleanConda?4(cleanAction) -eric6.CondaInterface.Conda.Conda.condaEnvironmentCreated?7 -eric6.CondaInterface.Conda.Conda.condaEnvironmentRemoved?7 -eric6.CondaInterface.Conda.Conda.createCondaEnvironment?4(arguments) -eric6.CondaInterface.Conda.Conda.getCondaEnvironmentsList?4() -eric6.CondaInterface.Conda.Conda.getCondaInformation?4() -eric6.CondaInterface.Conda.Conda.getInstalledPackages?4(name="", prefix="") -eric6.CondaInterface.Conda.Conda.getUpdateablePackages?4(name="", prefix="") -eric6.CondaInterface.Conda.Conda.installPackages?4(packages, name="", prefix="") -eric6.CondaInterface.Conda.Conda.removeCondaEnvironment?4(name="", prefix="") -eric6.CondaInterface.Conda.Conda.runProcess?4(args) -eric6.CondaInterface.Conda.Conda.searchPackages?4(pattern, fullNameOnly=False, packageSpec=False, platform="", name="", prefix="") -eric6.CondaInterface.Conda.Conda.uninstallPackages?4(packages, name="", prefix="") -eric6.CondaInterface.Conda.Conda.updateAllPackages?4(name="", prefix="") -eric6.CondaInterface.Conda.Conda.updateConda?4() -eric6.CondaInterface.Conda.Conda.updatePackages?4(packages, name="", prefix="") -eric6.CondaInterface.Conda.Conda.writeDefaultConfiguration?4() -eric6.CondaInterface.Conda.Conda?1(parent=None) -eric6.CondaInterface.CondaExecDialog.CondaExecDialog.getResult?4() -eric6.CondaInterface.CondaExecDialog.CondaExecDialog.on_buttonBox_clicked?4(button) -eric6.CondaInterface.CondaExecDialog.CondaExecDialog.start?4(arguments) -eric6.CondaInterface.CondaExecDialog.CondaExecDialog?1(command, parent=None) -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.closeEvent?4(e) -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.on_buttonBox_clicked?4(button) -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.on_copyButton_clicked?4() -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.on_insertButton_clicked?4() -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.on_replaceAllButton_clicked?4() -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.on_replaceSelectionButton_clicked?4() -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.on_requirementsEdit_textChanged?4() -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.on_requirementsFilePicker_textChanged?4(txt) -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.on_saveButton_clicked?4() -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.on_saveToButton_clicked?4() -eric6.CondaInterface.CondaExportDialog.CondaExportDialog.start?4() -eric6.CondaInterface.CondaExportDialog.CondaExportDialog?1(conda, envName, envPrefix, parent=None) -eric6.CondaInterface.CondaInfoDialog.CondaInfoDialog?1(infoDict, parent=None) -eric6.CondaInterface.CondaNewEnvironmentDataDialog.CondaNewEnvironmentDataDialog.getData?4() -eric6.CondaInterface.CondaNewEnvironmentDataDialog.CondaNewEnvironmentDataDialog.on_condaNameEdit_textChanged?4(txt) -eric6.CondaInterface.CondaNewEnvironmentDataDialog.CondaNewEnvironmentDataDialog.on_nameEdit_textChanged?4(txt) -eric6.CondaInterface.CondaNewEnvironmentDataDialog.CondaNewEnvironmentDataDialog.on_requirementsFilePicker_textChanged?4(txt) -eric6.CondaInterface.CondaNewEnvironmentDataDialog.CondaNewEnvironmentDataDialog?1(title, showRequirements, parent=None) -eric6.CondaInterface.CondaPackageDetailsWidget.CondaPackageDetailsDialog?1(details, parent=None) -eric6.CondaInterface.CondaPackageDetailsWidget.CondaPackageDetailsWidget?1(details, parent=None) -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.PackageBuildRole?7 -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.PackageDetailedDataRole?7 -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.PackageVersionRole?7 -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_environmentsComboBox_currentIndexChanged?4(index) -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_installButton_clicked?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_packagesList_itemSelectionChanged?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_recheckButton_clicked?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_refreshButton_clicked?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_searchButton_clicked?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_searchEdit_returnPressed?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_searchEdit_textChanged?4(txt) -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_searchResultList_itemDoubleClicked?4(item, column) -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_searchResultList_itemExpanded?4(item) -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_searchResultList_itemSelectionChanged?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_searchToggleButton_toggled?4(checked) -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_showDetailsButton_clicked?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_uninstallButton_clicked?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_upgradeAllButton_clicked?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget.on_upgradeButton_clicked?4() -eric6.CondaInterface.CondaPackagesWidget.CondaPackagesWidget?1(conda, parent=None) -eric6.CondaInterface.condaVersion?4() -eric6.CondaInterface.condaVersionStr?4() -eric6.CondaInterface.isCondaAvailable?4() -eric6.CondaInterface.resetInterface?4() -eric6.CondaInterface.rootPrefix?4() -eric6.CondaInterface.userConfiguration?4() -eric6.Cooperation.ChatWidget.ChatWidget.appendMessage?4(from_, message) -eric6.Cooperation.ChatWidget.ChatWidget.cancelEdit?7 -eric6.Cooperation.ChatWidget.ChatWidget.checkEditorActions?4(editor) -eric6.Cooperation.ChatWidget.ChatWidget.connected?7 -eric6.Cooperation.ChatWidget.ChatWidget.editorCommand?7 -eric6.Cooperation.ChatWidget.ChatWidget.getClient?4() -eric6.Cooperation.ChatWidget.ChatWidget.on_cancelEditButton_clicked?4() -eric6.Cooperation.ChatWidget.ChatWidget.on_chatEdit_copyAvailable?4(yes) -eric6.Cooperation.ChatWidget.ChatWidget.on_chatEdit_customContextMenuRequested?4(pos) -eric6.Cooperation.ChatWidget.ChatWidget.on_clearHostsButton_clicked?4() -eric6.Cooperation.ChatWidget.ChatWidget.on_connectButton_clicked?4() -eric6.Cooperation.ChatWidget.ChatWidget.on_hostEdit_editTextChanged?4(host) -eric6.Cooperation.ChatWidget.ChatWidget.on_sendEditButton_clicked?4() -eric6.Cooperation.ChatWidget.ChatWidget.on_serverButton_clicked?4() -eric6.Cooperation.ChatWidget.ChatWidget.on_shareButton_clicked?4(checked) -eric6.Cooperation.ChatWidget.ChatWidget.on_startEditButton_clicked?4(checked) -eric6.Cooperation.ChatWidget.ChatWidget.on_usersList_customContextMenuRequested?4(pos) -eric6.Cooperation.ChatWidget.ChatWidget.preferencesChanged?4() -eric6.Cooperation.ChatWidget.ChatWidget.sendEdit?7 -eric6.Cooperation.ChatWidget.ChatWidget.shareEditor?7 -eric6.Cooperation.ChatWidget.ChatWidget.shutdown?4() -eric6.Cooperation.ChatWidget.ChatWidget.startEdit?7 -eric6.Cooperation.ChatWidget.ChatWidget?1(ui, port=-1, parent=None) -eric6.Cooperation.Connection.Connection.Editor?7 -eric6.Cooperation.Connection.Connection.GetParticipants?7 -eric6.Cooperation.Connection.Connection.Greeting?7 -eric6.Cooperation.Connection.Connection.Participants?7 -eric6.Cooperation.Connection.Connection.Ping?7 -eric6.Cooperation.Connection.Connection.PlainText?7 -eric6.Cooperation.Connection.Connection.Pong?7 -eric6.Cooperation.Connection.Connection.ProtocolEditor?7 -eric6.Cooperation.Connection.Connection.ProtocolGetParticipants?7 -eric6.Cooperation.Connection.Connection.ProtocolGreeting?7 -eric6.Cooperation.Connection.Connection.ProtocolMessage?7 -eric6.Cooperation.Connection.Connection.ProtocolParticipants?7 -eric6.Cooperation.Connection.Connection.ProtocolPing?7 -eric6.Cooperation.Connection.Connection.ProtocolPong?7 -eric6.Cooperation.Connection.Connection.ReadingGreeting?7 -eric6.Cooperation.Connection.Connection.ReadyForUse?7 -eric6.Cooperation.Connection.Connection.Undefined?7 -eric6.Cooperation.Connection.Connection.WaitingForGreeting?7 -eric6.Cooperation.Connection.Connection.editorCommand?7 -eric6.Cooperation.Connection.Connection.getParticipants?7 -eric6.Cooperation.Connection.Connection.name?4() -eric6.Cooperation.Connection.Connection.newMessage?7 -eric6.Cooperation.Connection.Connection.participants?7 -eric6.Cooperation.Connection.Connection.readyForUse?7 -eric6.Cooperation.Connection.Connection.rejected?7 -eric6.Cooperation.Connection.Connection.sendEditorCommand?4(projectHash, filename, message) -eric6.Cooperation.Connection.Connection.sendGetParticipants?4() -eric6.Cooperation.Connection.Connection.sendMessage?4(message) -eric6.Cooperation.Connection.Connection.sendParticipants?4(participants) -eric6.Cooperation.Connection.Connection.serverPort?4() -eric6.Cooperation.Connection.Connection.setClient?4(client) -eric6.Cooperation.Connection.Connection.setGreetingMessage?4(message, serverPort) -eric6.Cooperation.Connection.Connection.timerEvent?4(evt) -eric6.Cooperation.Connection.Connection?1(parent=None) -eric6.Cooperation.Connection.MaxBufferSize?7 -eric6.Cooperation.Connection.PingInterval?7 -eric6.Cooperation.Connection.PongTimeout?7 -eric6.Cooperation.Connection.SeparatorToken?7 -eric6.Cooperation.Connection.SeparatorToken_b?7 -eric6.Cooperation.Connection.TransferTimeout?7 -eric6.Cooperation.CooperationClient.CooperationClient.banKickUser?4(nick) -eric6.Cooperation.CooperationClient.CooperationClient.banUser?4(nick) -eric6.Cooperation.CooperationClient.CooperationClient.cannotConnect?7 -eric6.Cooperation.CooperationClient.CooperationClient.chatWidget?4() -eric6.Cooperation.CooperationClient.CooperationClient.close?4() -eric6.Cooperation.CooperationClient.CooperationClient.connectToHost?4(host, port) -eric6.Cooperation.CooperationClient.CooperationClient.connectionError?7 -eric6.Cooperation.CooperationClient.CooperationClient.disconnectConnections?4() -eric6.Cooperation.CooperationClient.CooperationClient.editorCommand?7 -eric6.Cooperation.CooperationClient.CooperationClient.errorString?4() -eric6.Cooperation.CooperationClient.CooperationClient.hasConnection?4(senderIp, senderPort=-1) -eric6.Cooperation.CooperationClient.CooperationClient.hasConnections?4() -eric6.Cooperation.CooperationClient.CooperationClient.isListening?4() -eric6.Cooperation.CooperationClient.CooperationClient.kickUser?4(nick) -eric6.Cooperation.CooperationClient.CooperationClient.newMessage?7 -eric6.Cooperation.CooperationClient.CooperationClient.newParticipant?7 -eric6.Cooperation.CooperationClient.CooperationClient.nickName?4() -eric6.Cooperation.CooperationClient.CooperationClient.participantLeft?7 -eric6.Cooperation.CooperationClient.CooperationClient.removeConnection?4(connection) -eric6.Cooperation.CooperationClient.CooperationClient.sendEditorCommand?4(projectHash, filename, message) -eric6.Cooperation.CooperationClient.CooperationClient.sendMessage?4(message) -eric6.Cooperation.CooperationClient.CooperationClient.startListening?4(port=-1) -eric6.Cooperation.CooperationClient.CooperationClient?1(parent=None) -eric6.Cooperation.CooperationServer.CooperationServer.incomingConnection?4(socketDescriptor) -eric6.Cooperation.CooperationServer.CooperationServer.newConnection?7 -eric6.Cooperation.CooperationServer.CooperationServer.startListening?4(port=-1, findFreePort=False) -eric6.Cooperation.CooperationServer.CooperationServer?1(address, parent=None) -eric6.DataViews.CodeMetrics.COMMENT?7 -eric6.DataViews.CodeMetrics.DEDENT?7 -eric6.DataViews.CodeMetrics.EMPTY?7 -eric6.DataViews.CodeMetrics.INDENT?7 -eric6.DataViews.CodeMetrics.KEYWORD?7 -eric6.DataViews.CodeMetrics.NEWLINE?7 -eric6.DataViews.CodeMetrics.Parser.parse?4(text) -eric6.DataViews.CodeMetrics.SourceStat.dedent?4(tok) -eric6.DataViews.CodeMetrics.SourceStat.getCounter?4(counterId, key) -eric6.DataViews.CodeMetrics.SourceStat.inc?4(key, value=1) -eric6.DataViews.CodeMetrics.SourceStat.indent?4(tok) -eric6.DataViews.CodeMetrics.SourceStat.push?4(identifier, row) -eric6.DataViews.CodeMetrics.SourceStat?1() -eric6.DataViews.CodeMetrics.Token?1(**kw) -eric6.DataViews.CodeMetrics.analyze?4(filename, total) -eric6.DataViews.CodeMetrics.spacer?7 -eric6.DataViews.CodeMetrics.summarize?4(total, key, value) -eric6.DataViews.CodeMetricsDialog.CodeMetricsDialog.on_buttonBox_clicked?4(button) -eric6.DataViews.CodeMetricsDialog.CodeMetricsDialog.on_startButton_clicked?4() -eric6.DataViews.CodeMetricsDialog.CodeMetricsDialog.prepare?4(fileList, project) -eric6.DataViews.CodeMetricsDialog.CodeMetricsDialog.start?4(fn) -eric6.DataViews.CodeMetricsDialog.CodeMetricsDialog?1(parent=None) -eric6.DataViews.PyCoverageDialog.PyCoverageDialog.on_buttonBox_clicked?4(button) -eric6.DataViews.PyCoverageDialog.PyCoverageDialog.on_reloadButton_clicked?4() -eric6.DataViews.PyCoverageDialog.PyCoverageDialog.on_resultList_itemActivated?4(item, column) -eric6.DataViews.PyCoverageDialog.PyCoverageDialog.start?4(cfn, fn) -eric6.DataViews.PyCoverageDialog.PyCoverageDialog.stringify?4() -eric6.DataViews.PyCoverageDialog.PyCoverageDialog?1(parent=None) -eric6.DataViews.PyProfileDialog.PyProfileDialog.on_buttonBox_clicked?4(button) -eric6.DataViews.PyProfileDialog.PyProfileDialog.start?4(pfn, fn=None) -eric6.DataViews.PyProfileDialog.PyProfileDialog?1(parent=None) -eric6.DebugClients.Python.AsyncFile.AsyncFile.close?4(closeit=False) -eric6.DebugClients.Python.AsyncFile.AsyncFile.fileno?4() -eric6.DebugClients.Python.AsyncFile.AsyncFile.flush?4() -eric6.DebugClients.Python.AsyncFile.AsyncFile.isatty?4() -eric6.DebugClients.Python.AsyncFile.AsyncFile.maxtries?7 -eric6.DebugClients.Python.AsyncFile.AsyncFile.pendingWrite?4() -eric6.DebugClients.Python.AsyncFile.AsyncFile.read?4(size=-1) -eric6.DebugClients.Python.AsyncFile.AsyncFile.readCommand?4() -eric6.DebugClients.Python.AsyncFile.AsyncFile.read_p?4(size=-1) -eric6.DebugClients.Python.AsyncFile.AsyncFile.readable?4() -eric6.DebugClients.Python.AsyncFile.AsyncFile.readline?4(sizehint=-1) -eric6.DebugClients.Python.AsyncFile.AsyncFile.readline_p?4(size=-1) -eric6.DebugClients.Python.AsyncFile.AsyncFile.readlines?4(sizehint=-1) -eric6.DebugClients.Python.AsyncFile.AsyncFile.seek?4(offset, whence=0) -eric6.DebugClients.Python.AsyncFile.AsyncFile.seekable?4() -eric6.DebugClients.Python.AsyncFile.AsyncFile.tell?4() -eric6.DebugClients.Python.AsyncFile.AsyncFile.truncate?4(size=-1) -eric6.DebugClients.Python.AsyncFile.AsyncFile.writable?4() -eric6.DebugClients.Python.AsyncFile.AsyncFile.write?4(s) -eric6.DebugClients.Python.AsyncFile.AsyncFile.write_p?4(s) -eric6.DebugClients.Python.AsyncFile.AsyncFile.writelines?4(lines) -eric6.DebugClients.Python.AsyncFile.AsyncFile?1(sock, mode, name) -eric6.DebugClients.Python.AsyncFile.AsyncPendingWrite?4(file) -eric6.DebugClients.Python.BreakpointWatch.Breakpoint.breakInFile?7 -eric6.DebugClients.Python.BreakpointWatch.Breakpoint.breakInFrameCache?7 -eric6.DebugClients.Python.BreakpointWatch.Breakpoint.breaks?7 -eric6.DebugClients.Python.BreakpointWatch.Breakpoint.clear_all_breaks?4() -eric6.DebugClients.Python.BreakpointWatch.Breakpoint.clear_break?4(lineno) -eric6.DebugClients.Python.BreakpointWatch.Breakpoint.deleteMe?4() -eric6.DebugClients.Python.BreakpointWatch.Breakpoint.disable?4() -eric6.DebugClients.Python.BreakpointWatch.Breakpoint.effectiveBreak?4(lineno, frame) -eric6.DebugClients.Python.BreakpointWatch.Breakpoint.enable?4() -eric6.DebugClients.Python.BreakpointWatch.Breakpoint.get_break?4(lineno) -eric6.DebugClients.Python.BreakpointWatch.Breakpoint?1(filename, lineno, temporary=False, cond=None) -eric6.DebugClients.Python.BreakpointWatch.Watch.clear_all_watches?4() -eric6.DebugClients.Python.BreakpointWatch.Watch.clear_watch?4() -eric6.DebugClients.Python.BreakpointWatch.Watch.deleteMe?4() -eric6.DebugClients.Python.BreakpointWatch.Watch.disable?4() -eric6.DebugClients.Python.BreakpointWatch.Watch.effectiveWatch?4() -eric6.DebugClients.Python.BreakpointWatch.Watch.enable?4() -eric6.DebugClients.Python.BreakpointWatch.Watch.get_watch?4() -eric6.DebugClients.Python.BreakpointWatch.Watch.watches?7 -eric6.DebugClients.Python.BreakpointWatch.Watch?1(cond, compiledCond, flag, temporary=False) -eric6.DebugClients.Python.DCTestResult.DCTestResult.addError?4(test, err) -eric6.DebugClients.Python.DCTestResult.DCTestResult.addExpectedFailure?4(test, err) -eric6.DebugClients.Python.DCTestResult.DCTestResult.addFailure?4(test, err) -eric6.DebugClients.Python.DCTestResult.DCTestResult.addSkip?4(test, reason) -eric6.DebugClients.Python.DCTestResult.DCTestResult.addUnexpectedSuccess?4(test) -eric6.DebugClients.Python.DCTestResult.DCTestResult.startTest?4(test) -eric6.DebugClients.Python.DCTestResult.DCTestResult.stopTest?4(test) -eric6.DebugClients.Python.DCTestResult.DCTestResult?1(dbgClient, failfast) -eric6.DebugClients.Python.DebugBase.DebugBase._fnCache?8 -eric6.DebugClients.Python.DebugBase.DebugBase._set_stopinfo?5(stopframe, returnframe, stoplineno=0) -eric6.DebugClients.Python.DebugBase.DebugBase.bootstrap?4(target, args, kwargs) -eric6.DebugClients.Python.DebugBase.DebugBase.break_here?4(frame) -eric6.DebugClients.Python.DebugBase.DebugBase.filesToSkip?7 -eric6.DebugClients.Python.DebugBase.DebugBase.fix_frame_filename?4(frame) -eric6.DebugClients.Python.DebugBase.DebugBase.getCurrentFrame?4() -eric6.DebugClients.Python.DebugBase.DebugBase.getFrameLocals?4(frmnr=0) -eric6.DebugClients.Python.DebugBase.DebugBase.getStack?4(frame=None, applyTrace=False) -eric6.DebugClients.Python.DebugBase.DebugBase.go?4(special) -eric6.DebugClients.Python.DebugBase.DebugBase.lib?7 -eric6.DebugClients.Python.DebugBase.DebugBase.move_instruction_pointer?4(lineno) -eric6.DebugClients.Python.DebugBase.DebugBase.pathsToSkip?7 -eric6.DebugClients.Python.DebugBase.DebugBase.pollTimerEnabled?7 -eric6.DebugClients.Python.DebugBase.DebugBase.profile?4(frame, event, arg) -eric6.DebugClients.Python.DebugBase.DebugBase.profileWithRecursion?4(frame, event, arg) -eric6.DebugClients.Python.DebugBase.DebugBase.run?4(cmd, globalsDict=None, localsDict=None, debug=True, closeSession=True) -eric6.DebugClients.Python.DebugBase.DebugBase.setRecursionDepth?4(frame) -eric6.DebugClients.Python.DebugBase.DebugBase.set_continue?4(special) -eric6.DebugClients.Python.DebugBase.DebugBase.set_next?4(frame) -eric6.DebugClients.Python.DebugBase.DebugBase.set_quit?4() -eric6.DebugClients.Python.DebugBase.DebugBase.set_return?4(frame) -eric6.DebugClients.Python.DebugBase.DebugBase.set_step?4() -eric6.DebugClients.Python.DebugBase.DebugBase.set_trace?4(frame=None) -eric6.DebugClients.Python.DebugBase.DebugBase.set_until?4(frame=None, lineno=None) -eric6.DebugClients.Python.DebugBase.DebugBase.step?4(traceMode) -eric6.DebugClients.Python.DebugBase.DebugBase.stepOut?4() -eric6.DebugClients.Python.DebugBase.DebugBase.stop_here?4(frame) -eric6.DebugClients.Python.DebugBase.DebugBase.storeFrameLocals?4(frmnr=0) -eric6.DebugClients.Python.DebugBase.DebugBase.tracePythonLibs?4(enable) -eric6.DebugClients.Python.DebugBase.DebugBase.trace_dispatch?4(frame, event, arg) -eric6.DebugClients.Python.DebugBase.DebugBase.user_exception?4(excinfo, unhandled=False) -eric6.DebugClients.Python.DebugBase.DebugBase.user_line?4(frame) -eric6.DebugClients.Python.DebugBase.DebugBase?1(dbgClient) -eric6.DebugClients.Python.DebugBase.gRecursionLimit?7 -eric6.DebugClients.Python.DebugBase.printerr?4(s) -eric6.DebugClients.Python.DebugBase.setRecursionLimit?4(limit) -eric6.DebugClients.Python.DebugClient.DebugClient?1() -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.Indicators?7 -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.absPath?4(fn) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.arrayTypes?7 -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.clientCapabilities?7 -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.close?4(fd) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.connectDebugger?4(port, remoteAddress=None, redirect=True, name="") -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.eventLoop?4(disablePolling=False) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.eventPoll?4() -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.getCoding?4() -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.getRunning?4() -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.handleJsonCommand?4(jsonStr) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.input?4(prompt, echo=True) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.main?4() -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.progTerminated?4(status, message="", closeSession=True) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.readReady?4(stream) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.run_call?4(scriptname, func, *args) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.sendCallTrace?4(event, fromInfo, toInfo) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.sendClearTemporaryBreakpoint?4(filename, lineno) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.sendClearTemporaryWatch?4(condition) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.sendDebuggerId?4(debuggerId) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.sendException?4(exceptionType, exceptionMessage, stack, threadName) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.sendJsonCommand?4(method, params) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.sendPassiveStartup?4(filename, exceptions) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.sendResponseLine?4(stack, threadName) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.sendSyntaxError?4(message, filename, lineno, charno, threadName) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.sessionClose?4(terminate=True) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.setDisassembly?4(disassembly) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.skipMultiProcessDebugging?4(scriptName) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.startDebugger?4(filename=None, host=None, port=None, enableTrace=True, exceptions=True, tracePython=False, redirect=True, passive=True, multiprocessSupport=False) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.startProgInDebugger?4(progargs, wd='', host=None, port=None, exceptions=True, tracePython=False, redirect=True, passive=True, multiprocessSupport=False, codeStr="", scriptModule="") -eric6.DebugClients.Python.DebugClientBase.DebugClientBase.writeReady?4(stream) -eric6.DebugClients.Python.DebugClientBase.DebugClientBase?1() -eric6.DebugClients.Python.DebugClientBase.DebugClientClose?4(fd) -eric6.DebugClients.Python.DebugClientBase.DebugClientInput?4(prompt="") -eric6.DebugClients.Python.DebugClientBase.DebugClientInstance?7 -eric6.DebugClients.Python.DebugClientBase.DebugClientSetRecursionLimit?4(limit) -eric6.DebugClients.Python.DebugClientCapabilities.HasAll?7 -eric6.DebugClients.Python.DebugClientCapabilities.HasCompleter?7 -eric6.DebugClients.Python.DebugClientCapabilities.HasCoverage?7 -eric6.DebugClients.Python.DebugClientCapabilities.HasDebugger?7 -eric6.DebugClients.Python.DebugClientCapabilities.HasInterpreter?7 -eric6.DebugClients.Python.DebugClientCapabilities.HasProfiler?7 -eric6.DebugClients.Python.DebugClientCapabilities.HasShell?7 -eric6.DebugClients.Python.DebugClientCapabilities.HasUnittest?7 -eric6.DebugClients.Python.DebugConfig.BatchSize?7 -eric6.DebugClients.Python.DebugConfig.ConfigKnownQtTypes?7 -eric6.DebugClients.Python.DebugConfig.ConfigQtNames?7 -eric6.DebugClients.Python.DebugConfig.SpecialAttributes?7 -eric6.DebugClients.Python.DebugUtilities.ArgInfo?7 -eric6.DebugClients.Python.DebugUtilities.PYTHON_NAMES?7 -eric6.DebugClients.Python.DebugUtilities._getfullargs?5(co) -eric6.DebugClients.Python.DebugUtilities.formatargvalues?4(args, varargs, varkw, localsDict, formatarg=str, formatvarargs=lambda name: '*' + name, formatvarkw=lambda name: '**' + name, formatvalue=lambda value: '=' + repr(value)) -eric6.DebugClients.Python.DebugUtilities.getargvalues?4(frame) -eric6.DebugClients.Python.DebugUtilities.isExecutable?4(program) -eric6.DebugClients.Python.DebugUtilities.isPythonProgram?4(program) -eric6.DebugClients.Python.DebugUtilities.isWindowsPlatform?4() -eric6.DebugClients.Python.DebugUtilities.patchArgumentStringWindows?4(debugClient, argStr) -eric6.DebugClients.Python.DebugUtilities.patchArguments?4(debugClient, arguments, noRedirect=False) -eric6.DebugClients.Python.DebugUtilities.prepareJsonCommand?4(method, params) -eric6.DebugClients.Python.DebugUtilities.quoteArgs?4(args) -eric6.DebugClients.Python.DebugUtilities.removeQuotesFromArgs?4(args) -eric6.DebugClients.Python.DebugUtilities.startsWithShebang?4(program) -eric6.DebugClients.Python.DebugUtilities.stringToArgumentsWindows?4(args) -eric6.DebugClients.Python.DebugVariables.ArrayResolver.TypeCodeMap?7 -eric6.DebugClients.Python.DebugVariables.ArrayResolver.getDictionary?4(var) -eric6.DebugClients.Python.DebugVariables.ArrayResolver.resolve?4(var, attribute) -eric6.DebugClients.Python.DebugVariables.BaseResolver.getDictionary?4(var) -eric6.DebugClients.Python.DebugVariables.BaseResolver.resolve?4(var, attribute) -eric6.DebugClients.Python.DebugVariables.DefaultResolver.getDictionary?4(var) -eric6.DebugClients.Python.DebugVariables.DictResolver.getDictionary?4(var) -eric6.DebugClients.Python.DebugVariables.DictResolver.keyToStr?4(key) -eric6.DebugClients.Python.DebugVariables.DictResolver.resolve?4(var, attribute) -eric6.DebugClients.Python.DebugVariables.DictViewResolver.getDictionary?4(var) -eric6.DebugClients.Python.DebugVariables.DictViewResolver.resolve?4(var, attribute) -eric6.DebugClients.Python.DebugVariables.ListResolver.getDictionary?4(var) -eric6.DebugClients.Python.DebugVariables.ListResolver.resolve?4(var, attribute) -eric6.DebugClients.Python.DebugVariables.MultiValueDictResolver.getDictionary?4(var) -eric6.DebugClients.Python.DebugVariables.MultiValueDictResolver.resolve?4(var, attribute) -eric6.DebugClients.Python.DebugVariables.NdArrayResolver.getDictionary?4(var) -eric6.DebugClients.Python.DebugVariables.NdArrayResolver.resolve?4(var, attribute) -eric6.DebugClients.Python.DebugVariables.SetResolver.getDictionary?4(var) -eric6.DebugClients.Python.DebugVariables.SetResolver.resolve?4(var, attribute) -eric6.DebugClients.Python.DebugVariables._TypeMap?8 -eric6.DebugClients.Python.DebugVariables._initTypeMap?5() -eric6.DebugClients.Python.DebugVariables.arrayResolver?7 -eric6.DebugClients.Python.DebugVariables.defaultResolver?7 -eric6.DebugClients.Python.DebugVariables.dictResolver?7 -eric6.DebugClients.Python.DebugVariables.dictViewResolver?7 -eric6.DebugClients.Python.DebugVariables.getType?4(obj) -eric6.DebugClients.Python.DebugVariables.listResolver?7 -eric6.DebugClients.Python.DebugVariables.multiValueDictResolver?7 -eric6.DebugClients.Python.DebugVariables.ndarrayResolver?7 -eric6.DebugClients.Python.DebugVariables.setResolver?7 -eric6.DebugClients.Python.FlexCompleter.Completer._callable_postfix?5(val, word) -eric6.DebugClients.Python.FlexCompleter.Completer.attr_matches?4(text) -eric6.DebugClients.Python.FlexCompleter.Completer.complete?4(text, state) -eric6.DebugClients.Python.FlexCompleter.Completer.global_matches?4(text) -eric6.DebugClients.Python.FlexCompleter.Completer?1(namespace=None) -eric6.DebugClients.Python.FlexCompleter.get_class_members?4(klass) -eric6.DebugClients.Python.ModuleLoader.ModuleLoader.create_module?4(spec) -eric6.DebugClients.Python.ModuleLoader.ModuleLoader.exec_module?4(module) -eric6.DebugClients.Python.ModuleLoader.ModuleLoader.find_spec?4(fullname, path, target=None) -eric6.DebugClients.Python.ModuleLoader.ModuleLoader?1(debugClient) -eric6.DebugClients.Python.MultiProcessDebugExtension._debugClient?8 -eric6.DebugClients.Python.MultiProcessDebugExtension._shallPatch?5() -eric6.DebugClients.Python.MultiProcessDebugExtension.createCreateProcess?4(originalName) -eric6.DebugClients.Python.MultiProcessDebugExtension.createExecl?4(originalName) -eric6.DebugClients.Python.MultiProcessDebugExtension.createExecv?4(originalName) -eric6.DebugClients.Python.MultiProcessDebugExtension.createExecve?4(originalName) -eric6.DebugClients.Python.MultiProcessDebugExtension.createFork?4(originalName) -eric6.DebugClients.Python.MultiProcessDebugExtension.createForkExec?4(originalName) -eric6.DebugClients.Python.MultiProcessDebugExtension.createPosixSpawn?4(originalName) -eric6.DebugClients.Python.MultiProcessDebugExtension.createSpawnl?4(originalName) -eric6.DebugClients.Python.MultiProcessDebugExtension.createSpawnv?4(originalName) -eric6.DebugClients.Python.MultiProcessDebugExtension.createSpawnve?4(originalName) -eric6.DebugClients.Python.MultiProcessDebugExtension.newCreateProcess?4(appName, cmdline, *args) -eric6.DebugClients.Python.MultiProcessDebugExtension.newExecl?4(path, *args) -eric6.DebugClients.Python.MultiProcessDebugExtension.newExecv?4(path, args) -eric6.DebugClients.Python.MultiProcessDebugExtension.newExecve?4(path, args, env) -eric6.DebugClients.Python.MultiProcessDebugExtension.newFork?4() -eric6.DebugClients.Python.MultiProcessDebugExtension.newForkExec?4(args, *other_args) -eric6.DebugClients.Python.MultiProcessDebugExtension.newPosixSpawn?4(path, argv, env, **kwargs) -eric6.DebugClients.Python.MultiProcessDebugExtension.newSpawnl?4(mode, path, *args) -eric6.DebugClients.Python.MultiProcessDebugExtension.newSpawnv?4(mode, path, args) -eric6.DebugClients.Python.MultiProcessDebugExtension.newSpawnve?4(mode, path, args, env) -eric6.DebugClients.Python.MultiProcessDebugExtension.patchModule?4(module, functionName, createFunction) -eric6.DebugClients.Python.MultiProcessDebugExtension.patchNewProcessFunctions?4(multiprocessEnabled, debugClient) -eric6.DebugClients.Python.MultiprocessingExtension.ProcessWrapper._bootstrap?5(*args, **kwargs) -eric6.DebugClients.Python.MultiprocessingExtension._debugClient?8 -eric6.DebugClients.Python.MultiprocessingExtension._originalBootstrap?8 -eric6.DebugClients.Python.MultiprocessingExtension._originalProcess?8 -eric6.DebugClients.Python.MultiprocessingExtension.patchMultiprocessing?4(module, debugClient) -eric6.DebugClients.Python.PyProfile.PyProfile.dispatch?7 -eric6.DebugClients.Python.PyProfile.PyProfile.dump_stats?4(file) -eric6.DebugClients.Python.PyProfile.PyProfile.erase?4() -eric6.DebugClients.Python.PyProfile.PyProfile.fix_frame_filename?4(frame) -eric6.DebugClients.Python.PyProfile.PyProfile.save?4() -eric6.DebugClients.Python.PyProfile.PyProfile.trace_dispatch_call?4(frame, t) -eric6.DebugClients.Python.PyProfile.PyProfile?1(basename, timer=None, bias=None) -eric6.DebugClients.Python.QProcessExtension.QProcessWrapper._origQProcessStartDetached?8 -eric6.DebugClients.Python.QProcessExtension.QProcessWrapper.start?4(*args, **kwargs) -eric6.DebugClients.Python.QProcessExtension.QProcessWrapper.startDetached?4(*args, **kwargs) -eric6.DebugClients.Python.QProcessExtension.QProcessWrapper.startDetachedStatic?4(**kwargs) -eric6.DebugClients.Python.QProcessExtension.QProcessWrapper?1(parent=None) -eric6.DebugClients.Python.QProcessExtension._debugClient?8 -eric6.DebugClients.Python.QProcessExtension.patchQProcess?4(module, debugClient) -eric6.DebugClients.Python.SubprocessExtension.PopenWrapper?1(arguments, *args, **kwargs) -eric6.DebugClients.Python.SubprocessExtension._debugClient?8 -eric6.DebugClients.Python.SubprocessExtension.patchSubprocess?4(module, debugClient) -eric6.DebugClients.Python.ThreadExtension.DummyThreadWrapper?1(*args, **kwargs) -eric6.DebugClients.Python.ThreadExtension.QRunnableWrapper?1(*args, **kwargs) -eric6.DebugClients.Python.ThreadExtension.QThreadWrapper?1(*args, **kwargs) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension._bootstrap?5(run) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension._bootstrapQThread?5(run) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.attachThread?4(target=None, args=None, kwargs=None, mainThread=False) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.dumpThreadList?4() -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.getExecutedFrame?4(frame) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.lockClient?4(blocking=True) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.patchGreenlet?4(module) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.patchPyThread?4(module) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.patchPyThreading?4(module) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.patchQThread?4(module) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.setCurrentThread?4(threadId) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.threadTerminated?4(threadId) -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.unlockClient?4() -eric6.DebugClients.Python.ThreadExtension.ThreadExtension.updateThreadList?4() -eric6.DebugClients.Python.ThreadExtension.ThreadExtension?1() -eric6.DebugClients.Python.ThreadExtension.ThreadWrapper?1(*args, **kwargs) -eric6.DebugClients.Python.ThreadExtension.TimerWrapper?1(interval, function, *args, **kwargs) -eric6.DebugClients.Python.ThreadExtension._qtThreadNumber?8 -eric6.DebugClients.Python.eric6dbgstub.debugger?7 -eric6.DebugClients.Python.eric6dbgstub.ericpath?7 -eric6.DebugClients.Python.eric6dbgstub.initDebugger?4(kind="standard") -eric6.DebugClients.Python.eric6dbgstub.modDir?7 -eric6.DebugClients.Python.eric6dbgstub.runcall?4(func, *args) -eric6.DebugClients.Python.eric6dbgstub.setScriptname?4(name) -eric6.DebugClients.Python.eric6dbgstub.startDebugger?4(enableTrace=True, exceptions=True, tracePython=False, redirect=True) -eric6.DebugClients.Python.getpass.default_getpass?7 -eric6.DebugClients.Python.getpass.fallback_getpass?7 -eric6.DebugClients.Python.getpass.getpass?4(prompt='Password: ') -eric6.DebugClients.Python.getpass.getuser?4() -eric6.DebugClients.Python.getpass.unix_getpass?7 -eric6.DebugClients.Python.getpass.win_getpass?7 -eric6.Debugger.BreakPointModel.BreakPointModel.addBreakPoint?4(fn, line, properties) -eric6.Debugger.BreakPointModel.BreakPointModel.addBreakPoints?4(breakpoints) -eric6.Debugger.BreakPointModel.BreakPointModel.columnCount?4(parent=None) -eric6.Debugger.BreakPointModel.BreakPointModel.data?4(index, role=Qt.ItemDataRole.DisplayRole) -eric6.Debugger.BreakPointModel.BreakPointModel.dataAboutToBeChanged?7 -eric6.Debugger.BreakPointModel.BreakPointModel.deleteAll?4() -eric6.Debugger.BreakPointModel.BreakPointModel.deleteBreakPointByIndex?4(index) -eric6.Debugger.BreakPointModel.BreakPointModel.deleteBreakPoints?4(idxList) -eric6.Debugger.BreakPointModel.BreakPointModel.flags?4(index) -eric6.Debugger.BreakPointModel.BreakPointModel.getAllBreakpoints?4() -eric6.Debugger.BreakPointModel.BreakPointModel.getBreakPointByIndex?4(index) -eric6.Debugger.BreakPointModel.BreakPointModel.getBreakPointIndex?4(fn, lineno) -eric6.Debugger.BreakPointModel.BreakPointModel.hasChildren?4(parent=None) -eric6.Debugger.BreakPointModel.BreakPointModel.headerData?4(section, orientation, role=Qt.ItemDataRole.DisplayRole) -eric6.Debugger.BreakPointModel.BreakPointModel.index?4(row, column, parent=None) -eric6.Debugger.BreakPointModel.BreakPointModel.isBreakPointTemporaryByIndex?4(index) -eric6.Debugger.BreakPointModel.BreakPointModel.parent?4(index) -eric6.Debugger.BreakPointModel.BreakPointModel.rowCount?4(parent=None) -eric6.Debugger.BreakPointModel.BreakPointModel.setBreakPointByIndex?4(index, fn, line, properties) -eric6.Debugger.BreakPointModel.BreakPointModel.setBreakPointEnabledByIndex?4(index, enabled) -eric6.Debugger.BreakPointModel.BreakPointModel.setData?4(index, value, role=Qt.ItemDataRole.EditRole) -eric6.Debugger.BreakPointModel.BreakPointModel?1(project, parent=None) -eric6.Debugger.BreakPointViewer.BreakPointViewer.handleResetUI?4() -eric6.Debugger.BreakPointViewer.BreakPointViewer.highlightBreakpoint?4(fn, lineno) -eric6.Debugger.BreakPointViewer.BreakPointViewer.setModel?4(model) -eric6.Debugger.BreakPointViewer.BreakPointViewer.sourceFile?7 -eric6.Debugger.BreakPointViewer.BreakPointViewer?1(parent=None) -eric6.Debugger.CallStackViewer.CallStackViewer.FilenameRole?7 -eric6.Debugger.CallStackViewer.CallStackViewer.LinenoRole?7 -eric6.Debugger.CallStackViewer.CallStackViewer.clear?4() -eric6.Debugger.CallStackViewer.CallStackViewer.frameSelected?7 -eric6.Debugger.CallStackViewer.CallStackViewer.setDebugger?4(debugUI) -eric6.Debugger.CallStackViewer.CallStackViewer.setProjectMode?4(enabled) -eric6.Debugger.CallStackViewer.CallStackViewer.sourceFile?7 -eric6.Debugger.CallStackViewer.CallStackViewer?1(debugServer, parent=None) -eric6.Debugger.CallTraceViewer.CallTraceViewer.clear?4() -eric6.Debugger.CallTraceViewer.CallTraceViewer.isCallTraceEnabled?4() -eric6.Debugger.CallTraceViewer.CallTraceViewer.on_callTrace_itemDoubleClicked?4(item, column) -eric6.Debugger.CallTraceViewer.CallTraceViewer.on_clearButton_clicked?4() -eric6.Debugger.CallTraceViewer.CallTraceViewer.on_resizeButton_clicked?4() -eric6.Debugger.CallTraceViewer.CallTraceViewer.on_saveButton_clicked?4() -eric6.Debugger.CallTraceViewer.CallTraceViewer.on_startTraceButton_clicked?4() -eric6.Debugger.CallTraceViewer.CallTraceViewer.on_stopCheckBox_clicked?4(checked) -eric6.Debugger.CallTraceViewer.CallTraceViewer.on_stopTraceButton_clicked?4() -eric6.Debugger.CallTraceViewer.CallTraceViewer.setProjectMode?4(enabled) -eric6.Debugger.CallTraceViewer.CallTraceViewer.sourceFile?7 -eric6.Debugger.CallTraceViewer.CallTraceViewer?1(debugServer, debugViewer, parent=None) -eric6.Debugger.Config.ConfigVarTypeDispStrings?7 -eric6.Debugger.DebugClientCapabilities.HasAll?7 -eric6.Debugger.DebugClientCapabilities.HasCompleter?7 -eric6.Debugger.DebugClientCapabilities.HasCoverage?7 -eric6.Debugger.DebugClientCapabilities.HasDebugger?7 -eric6.Debugger.DebugClientCapabilities.HasInterpreter?7 -eric6.Debugger.DebugClientCapabilities.HasProfiler?7 -eric6.Debugger.DebugClientCapabilities.HasShell?7 -eric6.Debugger.DebugClientCapabilities.HasUnittest?7 -eric6.Debugger.DebugServer.DebugServer.appendStdout?7 -eric6.Debugger.DebugServer.DebugServer.callTraceInfo?7 -eric6.Debugger.DebugServer.DebugServer.clientBanner?7 -eric6.Debugger.DebugServer.DebugServer.clientBreakConditionError?7 -eric6.Debugger.DebugServer.DebugServer.clientCapabilities?7 -eric6.Debugger.DebugServer.DebugServer.clientClearBreak?7 -eric6.Debugger.DebugServer.DebugServer.clientClearWatch?7 -eric6.Debugger.DebugServer.DebugServer.clientCompletionList?7 -eric6.Debugger.DebugServer.DebugServer.clientDebuggerId?7 -eric6.Debugger.DebugServer.DebugServer.clientDisassembly?7 -eric6.Debugger.DebugServer.DebugServer.clientDisconnected?7 -eric6.Debugger.DebugServer.DebugServer.clientException?7 -eric6.Debugger.DebugServer.DebugServer.clientExit?7 -eric6.Debugger.DebugServer.DebugServer.clientGone?7 -eric6.Debugger.DebugServer.DebugServer.clientInterpreterChanged?7 -eric6.Debugger.DebugServer.DebugServer.clientLine?7 -eric6.Debugger.DebugServer.DebugServer.clientOutput?7 -eric6.Debugger.DebugServer.DebugServer.clientProcessStderr?7 -eric6.Debugger.DebugServer.DebugServer.clientProcessStdout?7 -eric6.Debugger.DebugServer.DebugServer.clientRawInput?7 -eric6.Debugger.DebugServer.DebugServer.clientRawInputSent?7 -eric6.Debugger.DebugServer.DebugServer.clientSignal?7 -eric6.Debugger.DebugServer.DebugServer.clientStack?7 -eric6.Debugger.DebugServer.DebugServer.clientStatement?7 -eric6.Debugger.DebugServer.DebugServer.clientSyntaxError?7 -eric6.Debugger.DebugServer.DebugServer.clientThreadList?7 -eric6.Debugger.DebugServer.DebugServer.clientThreadSet?7 -eric6.Debugger.DebugServer.DebugServer.clientUtDiscovered?4(testCases, exceptionType, exceptionValue) -eric6.Debugger.DebugServer.DebugServer.clientUtFinished?4(status) -eric6.Debugger.DebugServer.DebugServer.clientUtPrepared?4(result, exceptionType, exceptionValue) -eric6.Debugger.DebugServer.DebugServer.clientUtStartTest?4(testname, doc) -eric6.Debugger.DebugServer.DebugServer.clientUtStopTest?4() -eric6.Debugger.DebugServer.DebugServer.clientUtTestErrored?4(testname, traceback, testId) -eric6.Debugger.DebugServer.DebugServer.clientUtTestFailed?4(testname, traceback, testId) -eric6.Debugger.DebugServer.DebugServer.clientUtTestFailedExpected?4(testname, traceback, testId) -eric6.Debugger.DebugServer.DebugServer.clientUtTestSkipped?4(testname, reason, testId) -eric6.Debugger.DebugServer.DebugServer.clientUtTestSucceededUnexpected?4(testname, testId) -eric6.Debugger.DebugServer.DebugServer.clientVariable?7 -eric6.Debugger.DebugServer.DebugServer.clientVariables?7 -eric6.Debugger.DebugServer.DebugServer.clientWatchConditionError?7 -eric6.Debugger.DebugServer.DebugServer.getBreakPointModel?4() -eric6.Debugger.DebugServer.DebugServer.getClientCapabilities?4(clientType) -eric6.Debugger.DebugServer.DebugServer.getClientInterpreter?4() -eric6.Debugger.DebugServer.DebugServer.getClientType?4() -eric6.Debugger.DebugServer.DebugServer.getDebuggerIds?4() -eric6.Debugger.DebugServer.DebugServer.getExtensions?4(language) -eric6.Debugger.DebugServer.DebugServer.getHostAddress?4(localhost) -eric6.Debugger.DebugServer.DebugServer.getSupportedLanguages?4(shellOnly=False) -eric6.Debugger.DebugServer.DebugServer.getWatchPointModel?4() -eric6.Debugger.DebugServer.DebugServer.initializeClient?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.isClientProcessUp?4() -eric6.Debugger.DebugServer.DebugServer.isConnected?4() -eric6.Debugger.DebugServer.DebugServer.isDebugging?4() -eric6.Debugger.DebugServer.DebugServer.lastClientExited?7 -eric6.Debugger.DebugServer.DebugServer.mainClientExit?7 -eric6.Debugger.DebugServer.DebugServer.masterClientConnected?4() -eric6.Debugger.DebugServer.DebugServer.passiveDebugStarted?7 -eric6.Debugger.DebugServer.DebugServer.passiveStartUp?4(fn, exc, debuggerId) -eric6.Debugger.DebugServer.DebugServer.preferencesChanged?4() -eric6.Debugger.DebugServer.DebugServer.registerDebuggerInterface?4(interfaceName, getRegistryData, reregister=False) -eric6.Debugger.DebugServer.DebugServer.remoteBanner?4() -eric6.Debugger.DebugServer.DebugServer.remoteBreakpoint?4(debuggerId, fn, line, setBreakpoint, cond=None, temp=False) -eric6.Debugger.DebugServer.DebugServer.remoteCapabilities?4() -eric6.Debugger.DebugServer.DebugServer.remoteClientDisassembly?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.remoteClientSetFilter?4(debuggerId, scope, filterStr) -eric6.Debugger.DebugServer.DebugServer.remoteClientStack?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.remoteClientVariable?4(debuggerId, scope, filterList, var, framenr=0, maxSize=0) -eric6.Debugger.DebugServer.DebugServer.remoteClientVariables?4(debuggerId, scope, filterList, framenr=0) -eric6.Debugger.DebugServer.DebugServer.remoteCompletion?4(debuggerId, text) -eric6.Debugger.DebugServer.DebugServer.remoteContinue?4(debuggerId, special=False) -eric6.Debugger.DebugServer.DebugServer.remoteContinueUntil?4(debuggerId, line) -eric6.Debugger.DebugServer.DebugServer.remoteCoverage?4(venvName, fn, argv, wd, env, autoClearShell=True, erase=False, forProject=False, runInConsole=False, clientType="", configOverride=None) -eric6.Debugger.DebugServer.DebugServer.remoteEnvironment?4(env) -eric6.Debugger.DebugServer.DebugServer.remoteLoad?4(venvName, fn, argv, wd, env, autoClearShell=True, tracePython=False, autoContinue=True, forProject=False, runInConsole=False, clientType="", enableCallTrace=False, enableMultiprocess=False, multiprocessNoDebug="", configOverride=None) -eric6.Debugger.DebugServer.DebugServer.remoteMoveIP?4(debuggerId, line) -eric6.Debugger.DebugServer.DebugServer.remoteProfile?4(venvName, fn, argv, wd, env, autoClearShell=True, erase=False, forProject=False, runInConsole=False, clientType="", configOverride=None) -eric6.Debugger.DebugServer.DebugServer.remoteRawInput?4(debuggerId, inputString) -eric6.Debugger.DebugServer.DebugServer.remoteRun?4(venvName, fn, argv, wd, env, autoClearShell=True, forProject=False, runInConsole=False, clientType="", configOverride=None) -eric6.Debugger.DebugServer.DebugServer.remoteSetThread?4(debuggerId, tid) -eric6.Debugger.DebugServer.DebugServer.remoteStatement?4(debuggerId, stmt) -eric6.Debugger.DebugServer.DebugServer.remoteStep?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.remoteStepOut?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.remoteStepOver?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.remoteStepQuit?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.remoteThreadList?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.remoteUTDiscover?4(clientType, forProject, venvName, syspath, workdir, discoveryStart) -eric6.Debugger.DebugServer.DebugServer.remoteUTPrepare?4(fn, tn, tfn, failed, cov, covname, coverase, clientType="", forProject=False, venvName="", syspath=None, workdir="", discover=False, discoveryStart="", testCases=None, debug=False) -eric6.Debugger.DebugServer.DebugServer.remoteUTRun?4(debug=False, failfast=False) -eric6.Debugger.DebugServer.DebugServer.remoteUTStop?4() -eric6.Debugger.DebugServer.DebugServer.setCallTraceEnabled?4(debuggerId, on) -eric6.Debugger.DebugServer.DebugServer.setDebugging?4(on) -eric6.Debugger.DebugServer.DebugServer.shutdownServer?4() -eric6.Debugger.DebugServer.DebugServer.signalClientBanner?4(version, platform, venvName) -eric6.Debugger.DebugServer.DebugServer.signalClientBreakConditionError?4(filename, lineno, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientCallTrace?4(isCall, fromFile, fromLine, fromFunction, toFile, toLine, toFunction, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientCapabilities?4(capabilities, clientType, venvName) -eric6.Debugger.DebugServer.DebugServer.signalClientClearBreak?4(filename, lineno, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientClearWatch?4(condition, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientCompletionList?4(completionList, text, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientDebuggerId?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientDisassembly?4(disassembly, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientDisconnected?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientException?4(exceptionType, exceptionMessage, stackTrace, debuggerId, threadName="") -eric6.Debugger.DebugServer.DebugServer.signalClientExit?4(program, status, message, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientLine?4(filename, lineno, debuggerId, forStack=False, threadName="") -eric6.Debugger.DebugServer.DebugServer.signalClientOutput?4(line, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientRawInput?4(prompt, echo, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientSignal?4(message, filename, lineNo, funcName, funcArgs, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientStack?4(stack, debuggerId, threadName="") -eric6.Debugger.DebugServer.DebugServer.signalClientStatement?4(more, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientSyntaxError?4(message, filename, lineNo, characterNo, debuggerId, threadName="") -eric6.Debugger.DebugServer.DebugServer.signalClientThreadList?4(currentId, threadList, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientThreadSet?4(debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientVariable?4(scope, variables, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientVariables?4(scope, variables, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalClientWatchConditionError?4(condition, debuggerId) -eric6.Debugger.DebugServer.DebugServer.signalLastClientExited?4() -eric6.Debugger.DebugServer.DebugServer.signalMainClientExit?4() -eric6.Debugger.DebugServer.DebugServer.startClient?4(unplanned=True, clType=None, forProject=False, runInConsole=False, venvName="", workingDir=None, configOverride=None) -eric6.Debugger.DebugServer.DebugServer.unregisterDebuggerInterface?4(interfaceName) -eric6.Debugger.DebugServer.DebugServer.utDiscovered?7 -eric6.Debugger.DebugServer.DebugServer.utFinished?7 -eric6.Debugger.DebugServer.DebugServer.utPrepared?7 -eric6.Debugger.DebugServer.DebugServer.utStartTest?7 -eric6.Debugger.DebugServer.DebugServer.utStopTest?7 -eric6.Debugger.DebugServer.DebugServer.utTestErrored?7 -eric6.Debugger.DebugServer.DebugServer.utTestFailed?7 -eric6.Debugger.DebugServer.DebugServer.utTestFailedExpected?7 -eric6.Debugger.DebugServer.DebugServer.utTestSkipped?7 -eric6.Debugger.DebugServer.DebugServer.utTestSucceededUnexpected?7 -eric6.Debugger.DebugServer.DebugServer?1(originalPathString, preventPassiveDebugging=False, project=None, parent=None) -eric6.Debugger.DebugServer.DebuggerInterfaces?7 -eric6.Debugger.DebugUI.DebugUI.appendStdout?7 -eric6.Debugger.DebugUI.DebugUI.clearHistories?4() -eric6.Debugger.DebugUI.DebugUI.clientStack?7 -eric6.Debugger.DebugUI.DebugUI.compileForms?7 -eric6.Debugger.DebugUI.DebugUI.compileResources?7 -eric6.Debugger.DebugUI.DebugUI.debuggingStarted?7 -eric6.Debugger.DebugUI.DebugUI.exceptionInterrupt?7 -eric6.Debugger.DebugUI.DebugUI.executeMake?7 -eric6.Debugger.DebugUI.DebugUI.getActions?4() -eric6.Debugger.DebugUI.DebugUI.getSelectedDebuggerId?4() -eric6.Debugger.DebugUI.DebugUI.initActions?4() -eric6.Debugger.DebugUI.DebugUI.initMenus?4() -eric6.Debugger.DebugUI.DebugUI.initToolbars?4(toolbarManager) -eric6.Debugger.DebugUI.DebugUI.resetUI?7 -eric6.Debugger.DebugUI.DebugUI.setArgvHistory?4(argsStr, clearHistories=False, history=None) -eric6.Debugger.DebugUI.DebugUI.setAutoClearShell?4(autoClearShell) -eric6.Debugger.DebugUI.DebugUI.setAutoContinue?4(autoContinue) -eric6.Debugger.DebugUI.DebugUI.setDebugActionsEnabled?4(enable) -eric6.Debugger.DebugUI.DebugUI.setEnableGlobalConfigOverride?4(overrideData) -eric6.Debugger.DebugUI.DebugUI.setEnableMultiprocess?4(enableMultiprocess) -eric6.Debugger.DebugUI.DebugUI.setEnvHistory?4(envStr, clearHistories=False, history=None) -eric6.Debugger.DebugUI.DebugUI.setExcIgnoreList?4(excIgnoreList) -eric6.Debugger.DebugUI.DebugUI.setExcList?4(excList) -eric6.Debugger.DebugUI.DebugUI.setExceptionReporting?4(exceptions) -eric6.Debugger.DebugUI.DebugUI.setMultiprocessNoDebugHistory?4(noDebugList, clearHistories=False, history=None) -eric6.Debugger.DebugUI.DebugUI.setTracePython?4(tracePython) -eric6.Debugger.DebugUI.DebugUI.setWdHistory?4(wdStr, clearHistories=False, history=None) -eric6.Debugger.DebugUI.DebugUI.showNotification?4(notification, kind=NotificationTypes.INFORMATION, timeout=None) -eric6.Debugger.DebugUI.DebugUI.shutdown?4() -eric6.Debugger.DebugUI.DebugUI.shutdownServer?4() -eric6.Debugger.DebugUI.DebugUI.variablesFilter?4(scope) -eric6.Debugger.DebugUI.DebugUI?1(ui, vm, debugServer, debugViewer, project) -eric6.Debugger.DebugViewer.DebugViewer.DebuggerStateRole?7 -eric6.Debugger.DebugViewer.DebugViewer.StateIcon?7 -eric6.Debugger.DebugViewer.DebugViewer.StateMessage?7 -eric6.Debugger.DebugViewer.DebugViewer.ThreadIdRole?7 -eric6.Debugger.DebugViewer.DebugViewer.clearCallTrace?4() -eric6.Debugger.DebugViewer.DebugViewer.currentWidget?4() -eric6.Debugger.DebugViewer.DebugViewer.getSelectedDebuggerId?4() -eric6.Debugger.DebugViewer.DebugViewer.getSelectedDebuggerState?4() -eric6.Debugger.DebugViewer.DebugViewer.handleClientStack?4(stack, debuggerId) -eric6.Debugger.DebugViewer.DebugViewer.handleDebuggingStarted?4() -eric6.Debugger.DebugViewer.DebugViewer.handlePreferencesChanged?4() -eric6.Debugger.DebugViewer.DebugViewer.handleResetUI?4(fullReset) -eric6.Debugger.DebugViewer.DebugViewer.initCallStackViewer?4(projectMode) -eric6.Debugger.DebugViewer.DebugViewer.isCallTraceEnabled?4() -eric6.Debugger.DebugViewer.DebugViewer.isOnlyDebugger?4() -eric6.Debugger.DebugViewer.DebugViewer.preferencesChanged?7 -eric6.Debugger.DebugViewer.DebugViewer.setCallTraceToProjectMode?4(enabled) -eric6.Debugger.DebugViewer.DebugViewer.setCurrentWidget?4(widget) -eric6.Debugger.DebugViewer.DebugViewer.setDebugger?4(debugUI) -eric6.Debugger.DebugViewer.DebugViewer.setGlobalsFilter?4() -eric6.Debugger.DebugViewer.DebugViewer.setLocalsFilter?4() -eric6.Debugger.DebugViewer.DebugViewer.setVariablesFilter?4(globalsFilter, localsFilter) -eric6.Debugger.DebugViewer.DebugViewer.showVariable?4(vlist, showGlobals) -eric6.Debugger.DebugViewer.DebugViewer.showVariables?4(vlist, showGlobals) -eric6.Debugger.DebugViewer.DebugViewer.showVariablesTab?4(showGlobals) -eric6.Debugger.DebugViewer.DebugViewer.sourceFile?7 -eric6.Debugger.DebugViewer.DebugViewer?1(debugServer, parent=None) -eric6.Debugger.DebuggerInterfaceNone.ClientDefaultCapabilities?7 -eric6.Debugger.DebuggerInterfaceNone.ClientTypeAssociations?7 -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.getClientCapabilities?4() -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.getDebuggerIds?4() -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.isConnected?4() -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.newConnection?4(sock) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteBanner?4() -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteBreakpoint?4(debuggerId, fn, line, setBreakpoint, cond=None, temp=False) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteBreakpointEnable?4(debuggerId, fn, line, enable) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteBreakpointIgnore?4(debuggerId, fn, line, count) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteCapabilities?4(debuggerId) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteClientDisassembly?4(debuggerId) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteClientSetFilter?4(debuggerId, scope, filterStr) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteClientStack?4(debuggerId) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteClientVariable?4(debuggerId, scope, filterList, var, framenr=0, maxSize=0) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteClientVariables?4(debuggerId, scope, filterList, framenr=0, maxSize=0) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteCompletion?4(debuggerId, text) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteContinue?4(debuggerId, special=False) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteContinueUntil?4(debuggerId, line) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteCoverage?4(fn, argv, wd, erase=False) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteEnvironment?4(env) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteLoad?4(fn, argv, wd, traceInterpreter=False, autoContinue=True, enableMultiprocess=False) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteMoveIP?4(debuggerId, line) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteNoDebugList?4(debuggerId, noDebugList) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteProfile?4(fn, argv, wd, erase=False) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteRawInput?4(debuggerId, inputString) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteRun?4(fn, argv, wd) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteSetThread?4(debuggerId, tid) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteStatement?4(debuggerId, stmt) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteStep?4(debuggerId) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteStepOut?4(debuggerId) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteStepOver?4(debuggerId) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteStepQuit?4(debuggerId) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteThreadList?4(debuggerId) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteUTDiscover?4(syspath, workdir, discoveryStart) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteUTPrepare?4(fn, tn, tfn, failed, cov, covname, coverase, syspath, workdir, discover, discoveryStart, testCases, debug) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteUTRun?4(debug, failfast) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteUTStop?4() -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteWatchpoint?4(debuggerId, cond, setWatch, temp=False) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteWatchpointEnable?4(debuggerId, cond, enable) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteWatchpointIgnore?4(debuggerId, cond, count) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.setCallTraceEnabled?4(debuggerId, on) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.shutdown?4() -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.startRemote?4(port, runInConsole, venvName, originalPathString, workingDir=None) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.startRemoteForProject?4(port, runInConsole, venvName, originalPathString, workingDir=None) -eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone?1(debugServer, passive) -eric6.Debugger.DebuggerInterfaceNone.createDebuggerInterfaceNone?4(debugServer, passive) -eric6.Debugger.DebuggerInterfaceNone.getRegistryData?4() -eric6.Debugger.DebuggerInterfacePython.ClientDefaultCapabilities?7 -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.getClientCapabilities?4() -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.getDebuggerIds?4() -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.isConnected?4() -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.newConnection?4(sock) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteBanner?4() -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteBreakpoint?4(debuggerId, fn, line, setBreakpoint, cond=None, temp=False) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteBreakpointEnable?4(debuggerId, fn, line, enable) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteBreakpointIgnore?4(debuggerId, fn, line, count) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteCapabilities?4(debuggerId) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteClientDisassembly?4(debuggerId) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteClientSetFilter?4(debuggerId, scope, filterStr) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteClientStack?4(debuggerId) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteClientVariable?4(debuggerId, scope, filterList, var, framenr=0, maxSize=0) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteClientVariables?4(debuggerId, scope, filterList, framenr=0, maxSize=0) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteCompletion?4(debuggerId, text) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteContinue?4(debuggerId, special=False) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteContinueUntil?4(debuggerId, line) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteCoverage?4(fn, argv, wd, erase=False) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteEnvironment?4(env) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteLoad?4(fn, argv, wd, traceInterpreter=False, autoContinue=True, enableMultiprocess=False) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteMoveIP?4(debuggerId, line) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteNoDebugList?4(debuggerId, noDebugList) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteProfile?4(fn, argv, wd, erase=False) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteRawInput?4(debuggerId, inputString) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteRun?4(fn, argv, wd) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteSetThread?4(debuggerId, tid) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteStatement?4(debuggerId, stmt) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteStep?4(debuggerId) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteStepOut?4(debuggerId) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteStepOver?4(debuggerId) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteStepQuit?4(debuggerId) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteThreadList?4(debuggerId) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteUTDiscover?4(syspath, workdir, discoveryStart) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteUTPrepare?4(fn, tn, tfn, failed, cov, covname, coverase, syspath, workdir, discover, discoveryStart, testCases, debug) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteUTRun?4(debug, failfast) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteUTStop?4() -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteWatchpoint?4(debuggerId, cond, setWatch, temp=False) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteWatchpointEnable?4(debuggerId, cond, enable) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteWatchpointIgnore?4(debuggerId, cond, count) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.setCallTraceEnabled?4(debuggerId, on) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.shutdown?4() -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.startRemote?4(port, runInConsole, venvName, originalPathString, workingDir=None, configOverride=None) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.startRemoteForProject?4(port, runInConsole, venvName, originalPathString, workingDir=None, configOverride=None) -eric6.Debugger.DebuggerInterfacePython.DebuggerInterfacePython?1(debugServer, passive) -eric6.Debugger.DebuggerInterfacePython.createDebuggerInterfacePython3?4(debugServer, passive) -eric6.Debugger.DebuggerInterfacePython.getRegistryData?4() -eric6.Debugger.EditBreakpointDialog.EditBreakpointDialog.getAddData?4() -eric6.Debugger.EditBreakpointDialog.EditBreakpointDialog.getData?4() -eric6.Debugger.EditBreakpointDialog.EditBreakpointDialog.on_filenamePicker_editTextChanged?4(fn) -eric6.Debugger.EditBreakpointDialog.EditBreakpointDialog?1(breakPointId, properties, condHistory, parent=None, name=None, modal=False, addMode=False, filenameHistory=None) -eric6.Debugger.EditWatchpointDialog.EditWatchpointDialog.getData?4() -eric6.Debugger.EditWatchpointDialog.EditWatchpointDialog?1(properties, parent=None, name=None, modal=False) -eric6.Debugger.ExceptionLogger.ExceptionLogger.addException?4(exceptionType, exceptionMessage, stackTrace, debuggerId) -eric6.Debugger.ExceptionLogger.ExceptionLogger.debuggingStarted?4() -eric6.Debugger.ExceptionLogger.ExceptionLogger.sourceFile?7 -eric6.Debugger.ExceptionLogger.ExceptionLogger?1(parent=None) -eric6.Debugger.ExceptionsFilterDialog.ExceptionsFilterDialog.getExceptionsList?4() -eric6.Debugger.ExceptionsFilterDialog.ExceptionsFilterDialog.on_addButton_clicked?4() -eric6.Debugger.ExceptionsFilterDialog.ExceptionsFilterDialog.on_deleteAllButton_clicked?4() -eric6.Debugger.ExceptionsFilterDialog.ExceptionsFilterDialog.on_deleteButton_clicked?4() -eric6.Debugger.ExceptionsFilterDialog.ExceptionsFilterDialog.on_exceptionEdit_textChanged?4(txt) -eric6.Debugger.ExceptionsFilterDialog.ExceptionsFilterDialog.on_exceptionList_itemSelectionChanged?4() -eric6.Debugger.ExceptionsFilterDialog.ExceptionsFilterDialog?1(excList, ignore, parent=None) -eric6.Debugger.StartDialog.StartDialog.clearHistories?4() -eric6.Debugger.StartDialog.StartDialog.getCoverageData?4() -eric6.Debugger.StartDialog.StartDialog.getData?4() -eric6.Debugger.StartDialog.StartDialog.getDebugData?4() -eric6.Debugger.StartDialog.StartDialog.getGlobalOverrideData?4() -eric6.Debugger.StartDialog.StartDialog.getHistories?4() -eric6.Debugger.StartDialog.StartDialog.getProfilingData?4() -eric