Mon, 12 Oct 2020 18:23:44 +0200
Performed some code cleanup.
--- a/eric6/CondaInterface/Conda.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/CondaInterface/Conda.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Package implementing the conda GUI logic. """ - import json import os
--- a/eric6/CondaInterface/CondaExecDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/CondaInterface/CondaExecDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the output of a conda execution. """ - import json from PyQt5.QtCore import pyqtSlot, QProcess, QTimer
--- a/eric6/CondaInterface/CondaExportDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/CondaInterface/CondaExportDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to generate a requirements file for conda. """ - import os from PyQt5.QtCore import pyqtSlot, Qt
--- a/eric6/CondaInterface/CondaInfoDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/CondaInterface/CondaInfoDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the conda information dialog. """ - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QDialog
--- a/eric6/CondaInterface/CondaNewEnvironmentDataDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/CondaInterface/CondaNewEnvironmentDataDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter data for a new conda environment. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/CondaInterface/CondaPackageDetailsWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/CondaInterface/CondaPackageDetailsWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a widget and a dialog to show package details. """ - from PyQt5.QtCore import Qt, QDateTime from PyQt5.QtWidgets import QWidget, QDialog, QVBoxLayout, QDialogButtonBox
--- a/eric6/CondaInterface/CondaPackagesWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/CondaInterface/CondaPackagesWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the conda packages management widget. """ - import os from PyQt5.QtCore import pyqtSlot, Qt
--- a/eric6/CondaInterface/__init__.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/CondaInterface/__init__.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Package implementing the various conda related modules. """ - import json from PyQt5.QtCore import QCoreApplication, QProcess
--- a/eric6/Cooperation/ChatWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Cooperation/ChatWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the chat dialog. """ - from PyQt5.QtCore import Qt, pyqtSlot, pyqtSignal, QDateTime, QPoint, QFileInfo from PyQt5.QtGui import QColor from PyQt5.QtWidgets import QWidget, QListWidgetItem, QMenu, QApplication
--- a/eric6/Cooperation/Connection.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Cooperation/Connection.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class representing a peer connection. """ - from PyQt5.QtCore import pyqtSignal, QTimer, QTime, QByteArray from PyQt5.QtNetwork import QTcpSocket, QHostInfo
--- a/eric6/Cooperation/CooperationClient.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Cooperation/CooperationClient.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the client of the cooperation package. """ - import collections from PyQt5.QtCore import QObject, pyqtSignal, QProcess
--- a/eric6/Cooperation/CooperationServer.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Cooperation/CooperationServer.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the cooperation server. """ - from PyQt5.QtCore import pyqtSignal from PyQt5.QtNetwork import QTcpServer
--- a/eric6/DataViews/CodeMetricsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/DataViews/CodeMetricsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a code metrics dialog. """ - import os import fnmatch
--- a/eric6/DataViews/PyCoverageDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/DataViews/PyCoverageDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a Python code coverage dialog. """ - import os from PyQt5.QtCore import pyqtSlot, Qt
--- a/eric6/DataViews/PyProfileDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/DataViews/PyProfileDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to display profile data. """ - import os import pickle # secok
--- a/eric6/Debugger/BreakPointModel.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/BreakPointModel.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Breakpoint model. """ - from PyQt5.QtCore import pyqtSignal, Qt, QAbstractItemModel, QModelIndex
--- a/eric6/Debugger/BreakPointViewer.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/BreakPointViewer.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Breakpoint viewer widget. """ - from PyQt5.QtCore import ( pyqtSignal, Qt, QItemSelectionModel, QSortFilterProxyModel, QFileInfo )
--- a/eric6/Debugger/CallStackViewer.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/CallStackViewer.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Call Stack viewer widget. """ - from PyQt5.QtCore import pyqtSignal, Qt, QFileInfo from PyQt5.QtWidgets import QTreeWidget, QTreeWidgetItem, QMenu
--- a/eric6/Debugger/Config.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/Config.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module defining the different Python types and their display strings. """ - from PyQt5.QtCore import QT_TRANSLATE_NOOP # Variables type definition
--- a/eric6/Debugger/DebugServer.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/DebugServer.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the debug server. """ - import os from PyQt5.QtCore import pyqtSignal, QModelIndex
--- a/eric6/Debugger/DebugUI.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/DebugUI.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the debugger UI. """ - import os from PyQt5.QtCore import pyqtSignal, QObject, Qt
--- a/eric6/Debugger/DebugViewer.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/DebugViewer.py Mon Oct 12 18:23:44 2020 +0200 @@ -20,7 +20,6 @@ </ul> """ - import os from PyQt5.QtCore import pyqtSignal
--- a/eric6/Debugger/DebuggerInterfaceNone.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/DebuggerInterfaceNone.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dummy debugger interface for the debug server. """ - from PyQt5.QtCore import QObject
--- a/eric6/Debugger/DebuggerInterfacePython.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/DebuggerInterfacePython.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Python3 debugger interface for the debug server. """ - import sys import os import logging
--- a/eric6/Debugger/EditBreakpointDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/EditBreakpointDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to edit breakpoint properties. """ - import os.path from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QComboBox
--- a/eric6/Debugger/EditWatchpointDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/EditWatchpointDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to edit watch expression properties. """ - from PyQt5.QtWidgets import QDialog, QDialogButtonBox from .Ui_EditWatchpointDialog import Ui_EditWatchpointDialog
--- a/eric6/Debugger/ExceptionLogger.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/ExceptionLogger.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Exception Logger widget. """ - from PyQt5.QtCore import pyqtSignal, Qt from PyQt5.QtWidgets import QTreeWidget, QTreeWidgetItem, QMenu
--- a/eric6/Debugger/ExceptionsFilterDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/ExceptionsFilterDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the exceptions filter dialog. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Debugger/StartDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/StartDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Start Program dialog. """ - from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QComboBox, QInputDialog from E5Gui.E5PathPicker import E5PathPickerModes
--- a/eric6/Debugger/StartHistoryEditDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/StartHistoryEditDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to edit a list of history entries. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtWidgets import QDialog, QInputDialog, QLineEdit
--- a/eric6/Debugger/VariableDetailDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/VariableDetailDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the variable detail dialog. """ - from PyQt5.QtWidgets import QDialog from .Ui_VariableDetailDialog import Ui_VariableDetailDialog
--- a/eric6/Debugger/VariablesFilterDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/VariablesFilterDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the variables filter dialog. """ - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QListWidgetItem
--- a/eric6/Debugger/WatchPointModel.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/WatchPointModel.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Watch expression model. """ - from PyQt5.QtCore import pyqtSignal, Qt, QAbstractItemModel, QModelIndex
--- a/eric6/Debugger/WatchPointViewer.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Debugger/WatchPointViewer.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the watch expression viewer widget. """ - from PyQt5.QtCore import ( Qt, QModelIndex, QItemSelectionModel, QSortFilterProxyModel )
--- a/eric6/DocumentationTools/IndexGenerator.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/DocumentationTools/IndexGenerator.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ generator. """ - import sys import os
--- a/eric6/DocumentationTools/ModuleDocumentor.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/DocumentationTools/ModuleDocumentor.py Mon Oct 12 18:23:44 2020 +0200 @@ -11,7 +11,6 @@ this module. """ - import sys import re
--- a/eric6/DocumentationTools/QtHelpGenerator.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/DocumentationTools/QtHelpGenerator.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ generator. """ - import sys import os import shutil
--- a/eric6/DocumentationTools/TemplatesListsStyle.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/DocumentationTools/TemplatesListsStyle.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing templates for the documentation generator (lists style). """ - ################################################# ## Common templates for index and docu files ## #################################################
--- a/eric6/DocumentationTools/TemplatesListsStyleCSS.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/DocumentationTools/TemplatesListsStyleCSS.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing templates for the documentation generator (lists style). """ - ################################################# ## Common templates for index and docu files ## #################################################
--- a/eric6/E5Graphics/E5ArrowItem.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Graphics/E5ArrowItem.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a graphics item subclass for an arrow. """ - import math from PyQt5.QtCore import QPointF, QRectF, QSizeF, QLineF, Qt
--- a/eric6/E5Graphics/E5GraphicsView.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Graphics/E5GraphicsView.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a canvas view class. """ - import sys from PyQt5.QtCore import pyqtSignal, QRectF, QSize, QSizeF, Qt
--- a/eric6/E5Gui/E5Action.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5Action.py Mon Oct 12 18:23:44 2020 +0200 @@ -10,7 +10,6 @@ shortcuts. """ - from PyQt5.QtGui import QIcon, QKeySequence from PyQt5.QtWidgets import QAction, QActionGroup
--- a/eric6/E5Gui/E5AnimatedWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5AnimatedWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -11,7 +11,6 @@ # Code was inspired by qupzilla web browser # - from PyQt5.QtCore import pyqtSlot, QTimeLine, QPoint from PyQt5.QtWidgets import QWidget
--- a/eric6/E5Gui/E5Application.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5Application.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Class implementing a specialized application class. """ - from PyQt5.QtCore import Qt, QCoreApplication from PyQt5.QtGui import QPalette from PyQt5.QtWidgets import QApplication
--- a/eric6/E5Gui/E5ClickableLabel.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ClickableLabel.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a clickable label. """ - from PyQt5.QtCore import pyqtSignal, Qt, QPoint from PyQt5.QtWidgets import QLabel
--- a/eric6/E5Gui/E5ComboBox.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ComboBox.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing combobox classes using the eric6 line edits. """ - from PyQt5.QtWidgets import QComboBox
--- a/eric6/E5Gui/E5Completers.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5Completers.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing various kinds of completers. """ - import os from PyQt5.QtCore import QDir, Qt, QStringListModel
--- a/eric6/E5Gui/E5ErrorMessage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ErrorMessage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a specialized error message dialog. """ - from PyQt5.QtCore import ( qInstallMessageHandler, QtDebugMsg, QtWarningMsg, QtCriticalMsg, QtFatalMsg, QThread, QMetaObject, Qt, Q_ARG, QSettings
--- a/eric6/E5Gui/E5ErrorMessageFilterDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ErrorMessageFilterDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to manage the list of messages to be ignored. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog
--- a/eric6/E5Gui/E5FileDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5FileDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ to cope with distributor's usage of KDE wrapper dialogs for Qt file dialogs. """ - from PyQt5.QtWidgets import QFileDialog import Globals
--- a/eric6/E5Gui/E5FileSaveConfirmDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5FileSaveConfirmDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter a file system path using a file picker. """ - import os from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QVBoxLayout, QLabel
--- a/eric6/E5Gui/E5GenericDiffHighlighter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5GenericDiffHighlighter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a syntax highlighter for diff outputs. """ - import re from PyQt5.QtGui import QSyntaxHighlighter, QTextCharFormat, QFont
--- a/eric6/E5Gui/E5Led.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5Led.py Mon Oct 12 18:23:44 2020 +0200 @@ -9,7 +9,6 @@ It was inspired by KLed. """ - from PyQt5.QtCore import pyqtSignal, Qt, QSize, QPoint from PyQt5.QtGui import QColor, QRadialGradient, QPalette, QPainter, QBrush from PyQt5.QtWidgets import QWidget
--- a/eric6/E5Gui/E5LineEdit.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5LineEdit.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing specialized line edits. """ - from PyQt5.QtCore import pyqtSignal, Qt, QEvent from PyQt5.QtWidgets import ( QLineEdit, QWidget, QHBoxLayout, QBoxLayout, QLayout, QApplication,
--- a/eric6/E5Gui/E5LineEditButton.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5LineEditButton.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a button class to be used with E5LineEdit. """ - from PyQt5.QtCore import Qt, QPoint, QPointF from PyQt5.QtGui import QPainter, QPainterPath from PyQt5.QtWidgets import QAbstractButton
--- a/eric6/E5Gui/E5ListSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ListSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to select from a list of strings. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtWidgets import ( QDialog, QDialogButtonBox, QAbstractItemView, QListWidgetItem
--- a/eric6/E5Gui/E5ListView.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ListView.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing specialized list views. """ - from PyQt5.QtCore import Qt, QItemSelectionModel from PyQt5.QtWidgets import QListView
--- a/eric6/E5Gui/E5MainWindow.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5MainWindow.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a main window class with styling support. """ - from PyQt5.QtCore import QCoreApplication from PyQt5.QtWidgets import QMainWindow, QStyleFactory, QApplication
--- a/eric6/E5Gui/E5MapWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5MapWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a base class for showing a document map. """ - from PyQt5.QtCore import Qt, QSize, QRect, QCoreApplication from PyQt5.QtGui import QColor, QBrush, QPainter from PyQt5.QtWidgets import QWidget, QAbstractScrollArea
--- a/eric6/E5Gui/E5MessageBox.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5MessageBox.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing QMessageBox replacements and more convenience function. """ - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QMessageBox, QApplication
--- a/eric6/E5Gui/E5ModelMenu.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ModelMenu.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a menu populated from a QAbstractItemModel. """ - from PyQt5.QtCore import pyqtSignal, Qt, QModelIndex, QPoint from PyQt5.QtGui import QFontMetrics, QDrag from PyQt5.QtWidgets import QMenu, QAction, QApplication
--- a/eric6/E5Gui/E5ModelToolBar.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ModelToolBar.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a tool bar populated from a QAbstractItemModel. """ - from PyQt5.QtCore import pyqtSignal, Qt, QModelIndex, QPoint, QEvent from PyQt5.QtGui import QDrag, QIcon from PyQt5.QtWidgets import QApplication, QToolBar, QToolButton
--- a/eric6/E5Gui/E5PassivePopup.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5PassivePopup.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ interrupting the user. """ - from PyQt5.QtCore import pyqtSignal, Qt, QTimer, QPoint, QRect from PyQt5.QtWidgets import QFrame, QVBoxLayout, QApplication
--- a/eric6/E5Gui/E5PasswordMeter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5PasswordMeter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a custom widget indicating the strength of a password. """ - from PyQt5.QtWidgets import QProgressBar from Utilities.PasswordChecker import PasswordChecker
--- a/eric6/E5Gui/E5PathPickerDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5PathPickerDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter a file system path using a file picker. """ - from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QVBoxLayout, QLabel from .E5PathPicker import E5PathPicker, E5PathPickerModes
--- a/eric6/E5Gui/E5ProcessDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ProcessDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog starting a process and showing its output. """ - import os import re
--- a/eric6/E5Gui/E5ProgressDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ProgressDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a progress dialog allowing a customized progress bar label. """ - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QProgressBar, QProgressDialog
--- a/eric6/E5Gui/E5SideBar.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5SideBar.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a sidebar class. """ - from PyQt5.QtCore import ( QEvent, QSize, Qt, QByteArray, QDataStream, QIODevice, QTimer )
--- a/eric6/E5Gui/E5SimpleHelpDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5SimpleHelpDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show some help text. """ - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QDialog
--- a/eric6/E5Gui/E5SingleApplication.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5SingleApplication.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the single application server and client. """ - import os from E5Gui.E5Application import e5App
--- a/eric6/E5Gui/E5SqueezeLabels.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5SqueezeLabels.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ label. """ - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QLabel
--- a/eric6/E5Gui/E5StringListEditWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5StringListEditWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to edit a list of strings. """ - from PyQt5.QtCore import ( pyqtSlot, pyqtSignal, Qt, QSortFilterProxyModel, QStringListModel )
--- a/eric6/E5Gui/E5TabWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5TabWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a TabWidget class substituting QTabWidget. """ - from PyQt5.QtCore import pyqtSignal, Qt, QPoint, QMimeData from PyQt5.QtGui import QDrag from PyQt5.QtWidgets import QTabWidget, QTabBar, QApplication, QStyle
--- a/eric6/E5Gui/E5TableView.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5TableView.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing specialized table views. """ - from PyQt5.QtCore import Qt, QItemSelectionModel from PyQt5.QtWidgets import QTableView
--- a/eric6/E5Gui/E5TextEditSearchWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5TextEditSearchWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a horizontal search widget for QTextEdit. """ - from PyQt5.QtCore import pyqtSlot, Qt, QMetaObject, QSize from PyQt5.QtGui import QPalette, QBrush, QColor, QTextDocument, QTextCursor from PyQt5.QtWidgets import (
--- a/eric6/E5Gui/E5TextInputDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5TextInputDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter some text. """ - from PyQt5.QtWidgets import ( QDialog, QDialogButtonBox, QVBoxLayout, QLabel, QLineEdit )
--- a/eric6/E5Gui/E5TextSpinBox.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5TextSpinBox.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a spinbox with textual entries. """ - from PyQt5.QtWidgets import QSpinBox
--- a/eric6/E5Gui/E5ToolBarDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ToolBarDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a toolbar configuration dialog. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtGui import QColor from PyQt5.QtWidgets import (
--- a/eric6/E5Gui/E5ToolBarManager.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ToolBarManager.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a toolbar manager class. """ - from PyQt5.QtCore import QObject, QByteArray, QDataStream, QIODevice from PyQt5.QtWidgets import QToolBar
--- a/eric6/E5Gui/E5ToolBox.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ToolBox.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a horizontal and a vertical toolbox class. """ - from PyQt5.QtWidgets import QToolBox, QTabWidget from .E5TabWidget import E5TabWidget
--- a/eric6/E5Gui/E5ToolButton.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ToolButton.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a specialized tool button subclass. """ - from PyQt5.QtCore import pyqtSlot, pyqtSignal, Qt, QTimer, QSize from PyQt5.QtWidgets import ( QToolButton, QStyle, QStyleOptionToolButton, QStyleOption, QApplication,
--- a/eric6/E5Gui/E5TreeSortFilterProxyModel.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5TreeSortFilterProxyModel.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a modified QSortFilterProxyModel. """ - from PyQt5.QtCore import Qt, QModelIndex, QSortFilterProxyModel
--- a/eric6/E5Gui/E5TreeView.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5TreeView.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing specialized tree views. """ - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QTreeView
--- a/eric6/E5Gui/E5TreeWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5TreeWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing specialized tree views. """ - from PyQt5.QtCore import pyqtSignal, Qt from PyQt5.QtWidgets import QTreeWidget, QTreeWidgetItem, QAbstractItemView
--- a/eric6/E5Gui/E5ZoomWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Gui/E5ZoomWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a zoom widget for the status bar. """ - from PyQt5.QtCore import pyqtSlot, pyqtSignal from PyQt5.QtWidgets import QWidget
--- a/eric6/E5Network/E5Ftp.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5Ftp.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ proxies. """ - import ftplib # secok from socket import _GLOBAL_DEFAULT_TIMEOUT
--- a/eric6/E5Network/E5GoogleMail.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5GoogleMail.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to send bug reports. """ - import os import base64 import json
--- a/eric6/E5Network/E5GoogleMailHelpers.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5GoogleMailHelpers.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing some helpers for Google mail. """ - import os import Globals
--- a/eric6/E5Network/E5NetworkHeaderDetailsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5NetworkHeaderDetailsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the data of a response or reply header. """ - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QDialog
--- a/eric6/E5Network/E5NetworkIcon.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5NetworkIcon.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a statusbar icon tracking the network status. """ - from PyQt5.QtCore import pyqtSlot, pyqtSignal from PyQt5.QtNetwork import QNetworkConfigurationManager from PyQt5.QtWidgets import QLabel
--- a/eric6/E5Network/E5RFC6266.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5RFC6266.py Mon Oct 12 18:23:44 2020 +0200 @@ -13,7 +13,6 @@ # <mail@qutebrowser.org> # - import urllib.parse as parse import collections import string
--- a/eric6/E5Network/E5SslCertificateSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5SslCertificateSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to select a SSL certificate. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QTreeWidgetItem try:
--- a/eric6/E5Network/E5SslCertificatesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5SslCertificatesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show and edit all certificates. """ - from PyQt5.QtCore import ( pyqtSlot, Qt, QByteArray, QFile, QFileInfo, QIODevice )
--- a/eric6/E5Network/E5SslCertificatesInfoDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5SslCertificatesInfoDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show SSL certificate infos. """ - from PyQt5.QtWidgets import QDialog from .Ui_E5SslCertificatesInfoDialog import Ui_E5SslCertificatesInfoDialog
--- a/eric6/E5Network/E5SslCertificatesInfoWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5SslCertificatesInfoWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a widget to show SSL certificate infos. """ - from PyQt5.QtCore import pyqtSlot, QCryptographicHash, QDateTime from PyQt5.QtWidgets import QWidget try:
--- a/eric6/E5Network/E5SslErrorHandler.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5SslErrorHandler.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a SSL error handler. """ - import platform from PyQt5.QtCore import QObject, QByteArray
--- a/eric6/E5Network/E5SslInfoWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5SslInfoWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a widget to show SSL information. """ - from PyQt5.QtCore import Qt, QUrl, QPoint from PyQt5.QtWidgets import QMenu, QGridLayout, QLabel, QSizePolicy from PyQt5.QtNetwork import QSsl, QSslConfiguration, QSslCertificate
--- a/eric6/E5Network/E5UrlInfo.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5UrlInfo.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class replacing QUrlInfo. """ - from PyQt5.QtCore import QDateTime
--- a/eric6/E5Network/E5XmlRpcClient.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/E5XmlRpcClient.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a xmlrpc client for Qt. """ - import xmlrpc.client as xmlrpc from PyQt5.QtCore import Qt, QObject, QUrl, QByteArray, QEventLoop
--- a/eric6/E5Network/__init__.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Network/__init__.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Package implementing some special network related objects and functions. """ - from PyQt5.QtNetwork import QAbstractSocket, QHostAddress
--- a/eric6/E5Utilities/E5Cache.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5Utilities/E5Cache.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing classes used for caching objects. """ - from PyQt5.QtCore import QDateTime, QTimer
--- a/eric6/E5XML/DebuggerPropertiesReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/DebuggerPropertiesReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ file. """ - from .Config import debuggerPropertiesFileFormatVersion from .XMLStreamReaderBase import XMLStreamReaderBase
--- a/eric6/E5XML/DebuggerPropertiesWriter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/DebuggerPropertiesWriter.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ properties file. """ - import time from E5Gui.E5Application import e5App
--- a/eric6/E5XML/HighlightingStylesReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/HighlightingStylesReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ Module implementing a class for reading a highlighting styles XML file. """ - from PyQt5.QtGui import QColor, QFont from .Config import highlightingStylesFileFormatVersion
--- a/eric6/E5XML/HighlightingStylesWriter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/HighlightingStylesWriter.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ file. """ - import time from .XMLStreamWriterBase import XMLStreamWriterBase
--- a/eric6/E5XML/MultiProjectReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/MultiProjectReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class for reading an XML multi project file. """ - import os from .Config import multiProjectFileFormatVersion
--- a/eric6/E5XML/MultiProjectWriter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/MultiProjectWriter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the writer class for writing an XML multi project file. """ - import os import time
--- a/eric6/E5XML/PluginRepositoryReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/PluginRepositoryReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module to read the plug-in repository contents file. """ - from .Config import pluginRepositoryFileFormatVersion from .XMLStreamReaderBase import XMLStreamReaderBase
--- a/eric6/E5XML/ProjectReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/ProjectReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class for reading an XML project file. """ - from .Config import projectFileFormatVersion from .XMLStreamReaderBase import XMLStreamReaderBase
--- a/eric6/E5XML/ProjectWriter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/ProjectWriter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the writer class for writing an XML project file. """ - import time from E5Gui.E5Application import e5App
--- a/eric6/E5XML/SessionReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/SessionReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class for reading an XML session file. """ - from E5Gui.E5Application import e5App from .Config import sessionFileFormatVersion
--- a/eric6/E5XML/SessionWriter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/SessionWriter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the writer class for writing an XML session file. """ - import time from E5Gui.E5Application import e5App
--- a/eric6/E5XML/ShortcutsReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/ShortcutsReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class for reading an XML shortcuts file. """ - from .Config import shortcutsFileFormatVersion from .XMLStreamReaderBase import XMLStreamReaderBase
--- a/eric6/E5XML/ShortcutsWriter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/ShortcutsWriter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the writer class for writing an XML shortcuts file. """ - import time from E5Gui.E5Application import e5App
--- a/eric6/E5XML/SpellCheckDictionariesReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/SpellCheckDictionariesReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module to read the web browser spell check dictionaries list file. """ - from .Config import dictionariesListFileFormatVersion from .XMLStreamReaderBase import XMLStreamReaderBase
--- a/eric6/E5XML/TasksReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/TasksReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class for reading an XML tasks file. """ - import time from E5Gui.E5Application import e5App
--- a/eric6/E5XML/TasksWriter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/TasksWriter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the writer class for writing an XML tasks file. """ - import time from E5Gui.E5Application import e5App
--- a/eric6/E5XML/TemplatesReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/TemplatesReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class for reading an XML templates file. """ - from .Config import templatesFileFormatVersion from .XMLStreamReaderBase import XMLStreamReaderBase
--- a/eric6/E5XML/TemplatesWriter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/TemplatesWriter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the writer class for writing an XML templates file. """ - import time from .XMLStreamWriterBase import XMLStreamWriterBase
--- a/eric6/E5XML/UserProjectReader.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/UserProjectReader.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class for reading an XML user project properties file. """ - from .Config import userProjectFileFormatVersion from .XMLStreamReaderBase import XMLStreamReaderBase
--- a/eric6/E5XML/UserProjectWriter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/UserProjectWriter.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ properties file. """ - import time from E5Gui.E5Application import e5App
--- a/eric6/E5XML/XMLStreamReaderBase.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/XMLStreamReaderBase.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a base class for all of eric6s XML stream writers. """ - import pickle # secok import base64
--- a/eric6/E5XML/XMLStreamWriterBase.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/E5XML/XMLStreamWriterBase.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a base class for all of eric6s XML stream writers. """ - import pickle # secok import base64
--- a/eric6/Globals/AppInfo.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Globals/AppInfo.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a function to generate an application info. """ - from UI.Info import Version
--- a/eric6/Globals/__init__.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Globals/__init__.py Mon Oct 12 18:23:44 2020 +0200 @@ -11,7 +11,6 @@ # Note: Do not import any eric stuff in here!!!!!!! # - import sys import os import re
--- a/eric6/Graphics/ApplicationDiagramBuilder.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/ApplicationDiagramBuilder.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog showing an imports diagram of the application. """ - import os import glob
--- a/eric6/Graphics/AssociationItem.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/AssociationItem.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a graphics item for an association between two items. """ - from PyQt5.QtCore import QPointF, QRectF, QLineF from PyQt5.QtWidgets import QGraphicsItem
--- a/eric6/Graphics/ClassItem.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/ClassItem.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing an UML like class item. """ - from PyQt5.QtGui import QFont from PyQt5.QtWidgets import QGraphicsSimpleTextItem, QStyle
--- a/eric6/Graphics/ImportsDiagramBuilder.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/ImportsDiagramBuilder.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog showing an imports diagram of a package. """ - import glob import os
--- a/eric6/Graphics/ModuleItem.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/ModuleItem.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a module item. """ - from PyQt5.QtGui import QFont from PyQt5.QtWidgets import QGraphicsSimpleTextItem, QStyle
--- a/eric6/Graphics/PackageDiagramBuilder.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/PackageDiagramBuilder.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog showing a UML like class diagram of a package. """ - import glob import os.path from itertools import zip_longest
--- a/eric6/Graphics/PackageItem.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/PackageItem.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a package item. """ - from PyQt5.QtGui import QFont from PyQt5.QtWidgets import QGraphicsSimpleTextItem, QStyle
--- a/eric6/Graphics/PixmapDiagram.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/PixmapDiagram.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog showing a pixmap. """ - from PyQt5.QtCore import Qt, QSize, QEvent from PyQt5.QtGui import QPalette, QImage, QPixmap, QPainter, QFont, QColor from PyQt5.QtWidgets import (
--- a/eric6/Graphics/SvgDiagram.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/SvgDiagram.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog showing a SVG graphic. """ - from PyQt5.QtCore import Qt, QSize, QEvent from PyQt5.QtGui import QPalette, QPainter, QFont, QColor from PyQt5.QtWidgets import QSizePolicy, QScrollArea, QAction, QMenu, QToolBar
--- a/eric6/Graphics/UMLClassDiagramBuilder.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/UMLClassDiagramBuilder.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog showing a UML like class diagram. """ - from itertools import zip_longest from PyQt5.QtWidgets import QGraphicsTextItem
--- a/eric6/Graphics/UMLDiagramBuilder.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/UMLDiagramBuilder.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the UML diagram builder base class. """ - from PyQt5.QtCore import QObject
--- a/eric6/Graphics/UMLDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/UMLDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog showing UML like diagrams. """ - from PyQt5.QtCore import pyqtSlot, Qt, QFileInfo from PyQt5.QtWidgets import QAction, QToolBar, QGraphicsScene
--- a/eric6/Graphics/UMLGraphicsView.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/UMLGraphicsView.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a subclass of E5GraphicsView for our diagrams. """ - from PyQt5.QtCore import ( pyqtSignal, Qt, QSignalMapper, QFileInfo, QEvent, QRectF )
--- a/eric6/Graphics/UMLItem.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/UMLItem.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the UMLItem base class. """ - from PyQt5.QtCore import Qt, QSizeF from PyQt5.QtGui import QColor, QPen from PyQt5.QtWidgets import QGraphicsItem, QGraphicsRectItem, QStyle
--- a/eric6/Graphics/UMLSceneSizeDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Graphics/UMLSceneSizeDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to set the scene sizes. """ - from PyQt5.QtWidgets import QDialog from .Ui_UMLSceneSizeDialog import Ui_UMLSceneSizeDialog
--- a/eric6/HexEdit/HexEditChunks.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/HexEdit/HexEditChunks.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the storage backend for the hex editor. """ - import sys from PyQt5.QtCore import QBuffer, QIODevice, QByteArray
--- a/eric6/HexEdit/HexEditGotoWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/HexEdit/HexEditGotoWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a movement (goto) widget for the hex editor. """ - from PyQt5.QtCore import pyqtSlot, Qt, QRegularExpression from PyQt5.QtGui import QRegularExpressionValidator from PyQt5.QtWidgets import QWidget
--- a/eric6/HexEdit/HexEditMainWindow.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/HexEdit/HexEditMainWindow.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the hex editor main window. """ - import os from PyQt5.QtCore import (
--- a/eric6/IconEditor/IconEditorPalette.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/IconEditor/IconEditorPalette.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a palette widget for the icon editor. """ - from PyQt5.QtCore import pyqtSignal, Qt from PyQt5.QtGui import QColor, QPainter, QPixmap from PyQt5.QtWidgets import (
--- a/eric6/IconEditor/IconEditorWindow.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/IconEditor/IconEditorWindow.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the icon editor main window. """ - import os from PyQt5.QtCore import (
--- a/eric6/IconEditor/IconSizeDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/IconEditor/IconSizeDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the icon size. """ - from PyQt5.QtWidgets import QDialog from .Ui_IconSizeDialog import Ui_IconSizeDialog
--- a/eric6/MicroPython/CircuitPythonDevices.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/CircuitPythonDevices.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the device interface class for CircuitPython boards. """ - import shutil import os
--- a/eric6/MicroPython/CircuitPythonFirmwareSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/CircuitPythonFirmwareSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the firmware flashing data. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/MicroPython/EspDevices.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/EspDevices.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ class. """ - import sys from PyQt5.QtCore import pyqtSlot, QProcess
--- a/eric6/MicroPython/EspFirmwareSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/EspFirmwareSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ be flashed. """ - import os from PyQt5.QtCore import pyqtSlot, QRegularExpression
--- a/eric6/MicroPython/MicroPythonCommandsInterface.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/MicroPythonCommandsInterface.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing some file system commands for MicroPython. """ - import ast import time import os
--- a/eric6/MicroPython/MicroPythonDevices.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/MicroPythonDevices.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ class. """ - import logging import os
--- a/eric6/MicroPython/MicroPythonFileManager.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/MicroPythonFileManager.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing some file system commands for MicroPython. """ - import os import stat import shutil
--- a/eric6/MicroPython/MicroPythonFileManagerWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/MicroPythonFileManagerWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a file manager for MicroPython devices. """ - import os import shutil
--- a/eric6/MicroPython/MicroPythonFileSystemUtilities.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/MicroPythonFileSystemUtilities.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing some file system utility functions. """ - import time import stat import os
--- a/eric6/MicroPython/MicroPythonGraphWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/MicroPythonGraphWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the MicroPython graph widget. """ - from collections import deque import bisect import os
--- a/eric6/MicroPython/MicroPythonProgressInfoDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/MicroPythonProgressInfoDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show progress messages. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtGui import QTextCursor from PyQt5.QtWidgets import QDialog
--- a/eric6/MicroPython/MicroPythonSerialPort.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/MicroPythonSerialPort.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ MicroPython devices. """ - from PyQt5.QtCore import QIODevice, QTime, QCoreApplication, QEventLoop from PyQt5.QtSerialPort import QSerialPort
--- a/eric6/MicroPython/MicroPythonWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/MicroPythonWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the MicroPython REPL widget. """ - import re import time import os
--- a/eric6/MicroPython/MicrobitDevices.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MicroPython/MicrobitDevices.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ Calliope mini boards. """ - import os import shutil
--- a/eric6/MultiProject/AddProjectDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MultiProject/AddProjectDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the add project dialog. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/MultiProject/MultiProject.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MultiProject/MultiProject.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the multi project management functionality. """ - import os import shutil
--- a/eric6/MultiProject/MultiProjectBrowser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MultiProject/MultiProjectBrowser.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the multi project browser. """ - import os import glob
--- a/eric6/MultiProject/PropertiesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/MultiProject/PropertiesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the multi project properties dialog. """ - from PyQt5.QtWidgets import QDialog from .Ui_PropertiesDialog import Ui_PropertiesDialog
--- a/eric6/Network/IRC/IrcChannelEditDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcChannelEditDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to edit channel data. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Network/IRC/IrcChannelWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcChannelWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the IRC channel widget. """ - from itertools import zip_longest import re
--- a/eric6/Network/IRC/IrcIdentitiesEditDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcIdentitiesEditDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the identities management dialog. """ - import copy from PyQt5.QtCore import pyqtSlot, Qt, QEvent, QItemSelectionModel
--- a/eric6/Network/IRC/IrcMessageEdit.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcMessageEdit.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a specialized line edit for entering IRC messages. """ - from PyQt5.QtCore import Qt from E5Gui.E5LineEdit import E5LineEdit, E5ClearableLineEdit
--- a/eric6/Network/IRC/IrcNetworkEditDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcNetworkEditDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog for editing IRC network definitions. """ - import copy from PyQt5.QtCore import pyqtSlot
--- a/eric6/Network/IRC/IrcNetworkListDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcNetworkListDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to list the configured IRC networks. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QTreeWidgetItem
--- a/eric6/Network/IRC/IrcNetworkManager.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcNetworkManager.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the IRC data structures and their manager. """ - import copy from PyQt5.QtCore import pyqtSignal, QObject, QCoreApplication
--- a/eric6/Network/IRC/IrcNetworkWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcNetworkWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the network part of the IRC widget. """ - from PyQt5.QtCore import pyqtSlot, pyqtSignal, QPoint, QFileInfo, QUrl, QThread from PyQt5.QtGui import QDesktopServices from PyQt5.QtWidgets import QWidget, QApplication, QMenu
--- a/eric6/Network/IRC/IrcServerEditDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcServerEditDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog for editing the IRC server configuration. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Network/IRC/IrcUtilities.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcUtilities.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing functions used by several IRC objects. """ - import re from PyQt5.QtCore import QTime, QCoreApplication
--- a/eric6/Network/IRC/IrcWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Network/IRC/IrcWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the IRC window. """ - import re import logging
--- a/eric6/PipInterface/Pip.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PipInterface/Pip.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Package implementing the pip GUI logic. """ - import os import sys import json
--- a/eric6/PipInterface/PipDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PipInterface/PipDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog showing the output of a pip command. """ - from PyQt5.QtCore import ( pyqtSlot, Qt, QCoreApplication, QTimer, QProcess )
--- a/eric6/PipInterface/PipFileSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PipInterface/PipFileSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ Module implementing a dialog to enter a file to be processed. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/PipInterface/PipFreezeDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PipInterface/PipFreezeDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to generate a requirements file. """ - import os from PyQt5.QtCore import pyqtSlot, Qt
--- a/eric6/PipInterface/PipPackageDetailsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PipInterface/PipPackageDetailsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show details about a package. """ - from PyQt5.QtCore import Qt, QLocale from PyQt5.QtWidgets import ( QDialog, QDialogButtonBox, QTreeWidgetItem, QLabel, QHeaderView
--- a/eric6/PipInterface/PipPackagesInputDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PipInterface/PipPackagesInputDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter package specifications. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/PluginManager/PluginDetailsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PluginManager/PluginDetailsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -3,12 +3,10 @@ # Copyright (c) 2007 - 2020 Detlev Offenbach <detlev@die-offenbachs.de> # - """ Module implementing the Plugin Details Dialog. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtWidgets import QDialog
--- a/eric6/PluginManager/PluginExceptions.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PluginManager/PluginExceptions.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the exceptions raised by the plugin system. """ - from PyQt5.QtCore import QCoreApplication
--- a/eric6/PluginManager/PluginInfoDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PluginManager/PluginInfoDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -3,12 +3,10 @@ # Copyright (c) 2007 - 2020 Detlev Offenbach <detlev@die-offenbachs.de> # - """ Module implementing the Plugin Info Dialog. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtGui import QBrush from PyQt5.QtWidgets import QDialog, QTreeWidgetItem, QHeaderView, QMenu
--- a/eric6/PluginManager/PluginInstallDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PluginManager/PluginInstallDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Plugin installation dialog. """ - import os import sys import shutil
--- a/eric6/PluginManager/PluginRepositoryDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PluginManager/PluginRepositoryDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -3,12 +3,10 @@ # Copyright (c) 2007 - 2020 Detlev Offenbach <detlev@die-offenbachs.de> # - """ Module implementing a dialog showing the available plugins. """ - import sys import os import zipfile
--- a/eric6/PluginManager/PluginUninstallDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/PluginManager/PluginUninstallDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog for plugin deinstallation. """ - import sys import os import importlib
--- a/eric6/Plugins/AboutPlugin/AboutDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/AboutPlugin/AboutDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing an 'About Eric' dialog. """ - from PyQt5.QtCore import Qt, QCoreApplication from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleAddBuiltinIgnoreDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleAddBuiltinIgnoreDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ be ignored. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the results of the code style check. """ - import os import fnmatch
--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/translations.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/translations.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing message translations for the code style plugin messages. """ - from PyQt5.QtCore import QCoreApplication from .Security.translations import (
--- a/eric6/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a simple Python syntax checker. """ - import os import fnmatch
--- a/eric6/Plugins/DocumentationPlugins/Ericapi/EricapiConfigDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/DocumentationPlugins/Ericapi/EricapiConfigDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the parameters for eric6_api. """ - import sys import os import copy
--- a/eric6/Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the output of the ericapi process. """ - import os.path from PyQt5.QtCore import QProcess, QTimer
--- a/eric6/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the parameters for eric6_doc. """ - import sys import os import copy
--- a/eric6/Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the output of the ericdoc process. """ - import os.path from PyQt5.QtCore import QProcess, QTimer
--- a/eric6/Plugins/PluginAbout.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginAbout.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the About plugin. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QAction
--- a/eric6/Plugins/PluginEricapi.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginEricapi.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Ericapi plugin. """ - import os from PyQt5.QtCore import QObject, QCoreApplication
--- a/eric6/Plugins/PluginEricdoc.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginEricdoc.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Ericdoc plugin. """ - import os from PyQt5.QtCore import QObject, QCoreApplication
--- a/eric6/Plugins/PluginSyntaxChecker.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginSyntaxChecker.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Syntax Checker plugin. """ - import os from PyQt5.QtCore import QObject
--- a/eric6/Plugins/PluginTranslator.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginTranslator.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Translator plugin. """ - import os from PyQt5.QtCore import pyqtSignal, QObject, QCoreApplication, QDateTime, Qt
--- a/eric6/Plugins/PluginVcsGit.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginVcsGit.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Git version control plugin. """ - import os from PyQt5.QtCore import QObject, QCoreApplication, QTranslator, QByteArray
--- a/eric6/Plugins/PluginVcsMercurial.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginVcsMercurial.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Mercurial version control plugin. """ - import os from PyQt5.QtCore import QObject, QCoreApplication, QByteArray
--- a/eric6/Plugins/PluginVcsPySvn.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginVcsPySvn.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the PySvn version control plugin. """ - import os from PyQt5.QtCore import QObject, QCoreApplication
--- a/eric6/Plugins/PluginVcsSubversion.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginVcsSubversion.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Subversion version control plugin. """ - import os from PyQt5.QtCore import QObject, QCoreApplication
--- a/eric6/Plugins/PluginVmListspace.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginVmListspace.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Tabview view manager plugin. """ - import os from PyQt5.QtCore import QT_TRANSLATE_NOOP, QObject
--- a/eric6/Plugins/PluginVmTabview.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginVmTabview.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Tabview view manager plugin. """ - import os from PyQt5.QtCore import QT_TRANSLATE_NOOP, QObject
--- a/eric6/Plugins/PluginWizardDotDesktop.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardDotDesktop.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the .desktop wizard plug-in. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/PluginWizardE5MessageBox.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardE5MessageBox.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the E5MessageBox wizard plugin. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/PluginWizardEricPlugin.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardEricPlugin.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the eric plug-in wizard plug-in. """ - import os from PyQt5.QtCore import QObject
--- a/eric6/Plugins/PluginWizardPyRegExp.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardPyRegExp.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Python re wizard plugin. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/PluginWizardQColorDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardQColorDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the QColorDialog wizard plugin. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/PluginWizardQFileDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardQFileDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the QFileDialog wizard plugin. """ - import re from PyQt5.QtCore import QObject
--- a/eric6/Plugins/PluginWizardQFontDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardQFontDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the QFontDialog wizard plugin. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/PluginWizardQInputDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardQInputDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the QInputDialog wizard plugin. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/PluginWizardQMessageBox.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardQMessageBox.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the QMessageBox wizard plugin. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/PluginWizardQRegularExpression.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardQRegularExpression.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the QRegularExpression wizard plugin. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/PluginWizardSetup.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/PluginWizardSetup.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the setup.py wizard plug-in. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/UiExtensionPlugins/Translator/ConfigurationPage/TranslatorPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/ConfigurationPage/TranslatorPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Time Tracker configuration page. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtWidgets import QListWidgetItem
--- a/eric6/Plugins/UiExtensionPlugins/Translator/Translator.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/Translator.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the translator object. """ - import os from PyQt5.QtCore import Qt, QObject
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the DeepL translation engine. """ - import json from PyQt5.QtCore import QUrl, QByteArray, QTimer
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Glosbe translation engine. """ - import json from PyQt5.QtCore import QUrl, QTimer
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Google V1 translation engine. """ - import json import re
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Google V2 translation engine. """ - import json from PyQt5.QtCore import QUrl, QTimer
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the IBM Watson translation engine. """ - import json from PyQt5.QtCore import QUrl, QByteArray, QTimer
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Microsoft translation engine. """ - from PyQt5.QtCore import QUrl, QDateTime, QByteArray, QTimer from .TranslationEngine import TranslationEngine
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the MyMemory translation engine. """ - import json from PyQt5.QtCore import QUrl, QTimer
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Promt translation engine. """ - import json from PyQt5.QtCore import QUrl, QByteArray, QTimer
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/TranslationEngine.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/TranslationEngine.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the translation engine base class. """ - from PyQt5.QtCore import pyqtSignal, QObject
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Yandex translation engine. """ - import json from PyQt5.QtCore import QUrl, QByteArray, QTimer
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/__init__.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/__init__.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Package containing the various translation engines. """ - import os from PyQt5.QtCore import QCoreApplication
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorLanguagesDb.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorLanguagesDb.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the translation languages database. """ - import os from PyQt5.QtCore import QObject
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorRequest.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorRequest.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ requests. """ - from PyQt5.QtCore import QObject, QEventLoop, QByteArray from PyQt5.QtNetwork import ( QNetworkAccessManager, QNetworkRequest, QNetworkReply
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorWidget.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorWidget.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the translator widget. """ - from PyQt5.QtCore import pyqtSlot, QTemporaryFile from PyQt5.QtWidgets import QWidget try:
--- a/eric6/Plugins/VcsPlugins/vcsGit/Config.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/Config.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module defining configuration variables for the Git package. """ - # Available protocols for the repository URL ConfigGitSchemes = [ 'file',
--- a/eric6/Plugins/VcsPlugins/vcsGit/ConfigurationPage/GitPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/ConfigurationPage/GitPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ Module implementing the Git configuration page. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitAddRemoteDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitAddRemoteDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data of a remote repository. """ - from PyQt5.QtCore import pyqtSlot, QUrl from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitApplyBundleDataDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitApplyBundleDataDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for applying a bundle. """ - from PyQt5.QtWidgets import QDialog from .Ui_GitApplyBundleDataDialog import Ui_GitApplyBundleDataDialog
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for the creation of an archive. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to browse the bisect log history. """ - import os from PyQt5.QtCore import pyqtSlot, Qt, QPoint, QProcess, QTimer
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitBisectStartDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitBisectStartDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for an extended bisect start. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitBlameDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitBlameDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the output of git blame. """ - import os import re
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitBranchDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitBranchDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a branching operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to select the data for pushing a branch. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitBundleDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitBundleDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a bundle operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitChangeRemoteUrlDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitChangeRemoteUrlDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to change the URL of a remote git repository. """ - from PyQt5.QtCore import pyqtSlot, Qt, QUrl from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitCherryPickDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitCherryPickDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter cherry-pick data. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitCommandDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitCommandDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Git command dialog. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitCommitDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitCommitDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the commit message. """ - from PyQt5.QtCore import pyqtSlot, pyqtSignal, Qt from PyQt5.QtWidgets import QWidget, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitCopyDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitCopyDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a copy or rename operation. """ - import os.path from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the results of the git describe action. """ - import os from PyQt5.QtCore import pyqtSlot, QProcess, Qt, QTimer, QCoreApplication
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog starting a process and showing its output. """ - import os from PyQt5.QtCore import (
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitDiffHighlighter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitDiffHighlighter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a syntax highlighter for diff outputs. """ - from PyQt5.QtGui import QColor from E5Gui.E5GenericDiffHighlighter import TERMINAL, E5GenericDiffHighlighter
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitDiffParser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitDiffParser.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class to store and parse diff output. """ - import re import os
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitFetchDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitFetchDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter data for a Fetch operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitListDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitListDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to select from a list. """ - from PyQt5.QtWidgets import QDialog from .Ui_GitListDialog import Ui_GitListDialog
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitMergeDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitMergeDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the merge data. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ repository. """ - from PyQt5.QtCore import pyqtSlot, QUrl from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ the VCS. """ - from PyQt5.QtWidgets import QDialog from .Ui_GitOptionsDialog import Ui_GitOptionsDialog
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to select a list of patch files. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show some patch file statistics. """ - import os from PyQt5.QtCore import Qt, QProcess
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitPullDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitPullDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter data for a Pull operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitPushDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitPushDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter data for a Push operation. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtWidgets import QDialog, QTreeWidgetItem, QComboBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to browse the reflog history. """ - import os from PyQt5.QtCore import pyqtSlot, Qt, QProcess, QTimer, QPoint
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitRemoteCredentialsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitRemoteCredentialsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data of a remote repository. """ - from PyQt5.QtCore import pyqtSlot, Qt, QUrl from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show available remote repositories. """ - import os from PyQt5.QtCore import pyqtSlot, Qt, QProcess, QTimer
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitRevisionSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitRevisionSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to select a revision. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitRevisionsSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitRevisionsSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the revisions for the git diff command. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the stashes. """ - import os from PyQt5.QtCore import pyqtSlot, Qt, QPoint, QProcess, QTimer
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitStashDataDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitStashDataDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a stash operation. """ - from PyQt5.QtWidgets import QDialog from .Ui_GitStashDataDialog import Ui_GitStashDataDialog
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitStatusMonitorThread.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitStatusMonitorThread.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS status monitor thread class for Git. """ - from PyQt5.QtCore import QProcess from VCS.StatusMonitorThread import VcsStatusMonitorThread
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data to add a submodule. """ - from PyQt5.QtCore import pyqtSlot, QUrl from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesDeinitDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesDeinitDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to get the data for a submodule deinit operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesListDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesListDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to list the defined submodules. """ - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QDialog, QTreeWidgetItem, QHeaderView
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesStatusDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesStatusDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ project. """ - import os from PyQt5.QtCore import pyqtSlot, Qt, QProcess
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesSummaryOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesSummaryOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter submodule summary options. """ - from PyQt5.QtWidgets import QDialog from .Ui_GitSubmodulesSummaryOptionsDialog import (
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesSyncDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesSyncDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter submodule synchronization options. """ - from PyQt5.QtWidgets import QDialog from .Ui_GitSubmodulesSyncDialog import Ui_GitSubmodulesSyncDialog
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesUpdateOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesUpdateOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter options for a submodule update command. """ - from PyQt5.QtWidgets import QDialog from .Ui_GitSubmodulesUpdateOptionsDialog import (
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show a list of tags or branches. """ - import os from PyQt5.QtCore import pyqtSlot, QProcess, Qt, QTimer, QCoreApplication
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitTagDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitTagDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a tagging operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitUserConfigDataDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitUserConfigDataDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter some user data. """ - from PyQt5.QtWidgets import QDialog from .Ui_GitUserConfigDataDialog import Ui_GitUserConfigDataDialog
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitUtilities.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitUtilities.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing some common utility functions for the Git package. """ - import os from PyQt5.QtCore import QProcessEnvironment
--- a/eric6/Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS project browser helper for Git. """ - import os from PyQt5.QtWidgets import QMenu, QDialog
--- a/eric6/Plugins/VcsPlugins/vcsGit/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS project helper for Git. """ - import os from PyQt5.QtCore import QFileInfo
--- a/eric6/Plugins/VcsPlugins/vcsGit/git.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/git.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the version control systems interface to Git. """ - import os import shutil import re
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the closehead extension project helper. """ - from PyQt5.QtWidgets import QMenu from E5Gui.E5Action import E5Action
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the closehead extension interface. """ - import os from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/Config.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/Config.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module defining configuration variables for the Mercurial package. """ - # Available protocols fpr the repository URL ConfigHgSchemes = ( 'file',
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/ConfigurationPage/MercurialPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/ConfigurationPage/MercurialPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Mercurial configuration page. """ - from PyQt5.QtCore import pyqtSlot from Preferences.ConfigurationPages.ConfigurationPageBase import (
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter data for signing a revision. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the gpg extension project helper. """ - from PyQt5.QtWidgets import QMenu from E5Gui.E5Action import E5Action
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the gpg extension interface. """ - import os from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to add a sub-repository. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgArchiveDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgArchiveDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the archive data. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a backout operation. """ - from PyQt5.QtCore import pyqtSlot, QDateTime from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the bookmark dialog. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarkRenameDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarkRenameDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to get the data to rename a bookmark. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgBranchInputDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgBranchInputDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a branch operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgBundleDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgBundleDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a bundle operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgClientPromptDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgClientPromptDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a prompt dialog for the Mercurial command server. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtGui import QTextCursor from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QLineEdit
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgCommandDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgCommandDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Mercurial command dialog. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgCommitDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgCommitDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the commit message. """ - from PyQt5.QtCore import pyqtSlot, pyqtSignal, Qt, QDateTime from PyQt5.QtWidgets import QWidget, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgCopyDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgCopyDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a copy or rename operation. """ - import os.path from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgDiffHighlighter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgDiffHighlighter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a syntax highlighter for unified and context diff outputs. """ - from E5Gui.E5GenericDiffHighlighter import TERMINAL, E5GenericDiffHighlighter
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgExportDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgExportDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter data for the Mercurial export command. """ - import os from PyQt5.QtCore import pyqtSlot, QDir
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgExtension.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgExtension.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the base class for Mercurial extension interfaces. """ - from PyQt5.QtCore import QObject
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgExtensionProjectBrowserHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgExtensionProjectBrowserHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ interfaces. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QMenu
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgExtensionProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgExtensionProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the project helper base for Mercurial extension interfaces. """ - from PyQt5.QtCore import QObject from PyQt5.QtWidgets import QMenu
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgGraftDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgGraftDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a graft session. """ - from PyQt5.QtCore import pyqtSlot, QDateTime from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgImportDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgImportDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter data for the Mercurial import command. """ - from PyQt5.QtCore import pyqtSlot, QDateTime from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgMergeDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgMergeDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a merge operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgNewProjectOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgNewProjectOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ repository. """ - from PyQt5.QtCore import pyqtSlot, QUrl from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QComboBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ the VCS. """ - from PyQt5.QtWidgets import QDialog from .Ui_HgOptionsDialog import Ui_HgOptionsDialog
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgPhaseDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgPhaseDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter data for the Mercurial Phase operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgRemoveSubrepositoriesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgRemoveSubrepositoriesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to remove sub-repositories. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgRepoConfigDataDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgRepoConfigDataDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ of a repository configuration file (hgrc). """ - from PyQt5.QtCore import pyqtSlot, QUrl from PyQt5.QtWidgets import QDialog, QLineEdit
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgRevisionSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgRevisionSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to select a revision. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgRevisionsSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgRevisionsSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the revisions for the hg diff command. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog for the Mercurial server. """ - import os from PyQt5.QtCore import QProcess, Qt, QSize
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgTagDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgTagDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a tagging operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter some user data. """ - import os from configparser import ConfigParser
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgUserConfigHostFingerprintDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgUserConfigHostFingerprintDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to edit a host fingerprint. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgUserConfigHostMinimumProtocolDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgUserConfigHostMinimumProtocolDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the minimum protocol for a host. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgUtilities.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgUtilities.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing some common utility functions for the Mercurial package. """ - import os import re
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditCommitEditor.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditCommitEditor.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to edit the commit message of a revision. """ - from PyQt5.QtCore import pyqtSlot, QCoreApplication from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditConfigDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditConfigDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the histedit parameters. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QButtonGroup
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditEditor.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditEditor.py Mon Oct 12 18:23:44 2020 +0200 @@ -11,7 +11,6 @@ of two possible dialogs will be shown. """ - import sys import os
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditPlanEditor.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditPlanEditor.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to edit the history modification plan. """ - from PyQt5.QtCore import pyqtSlot, QCoreApplication from PyQt5.QtWidgets import QDialog, QTreeWidgetItem, QComboBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the histedit extension project helper. """ - from PyQt5.QtWidgets import QMenu from E5Gui.E5Action import E5Action
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the histedit extension interface. """ - import os import sys
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfConvertDataDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfConvertDataDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for the repo conversion. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfRevisionsInputDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfRevisionsInputDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter a series of revisions. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/ProjectBrowserHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/ProjectBrowserHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the largefiles extension project browser helper. """ - from PyQt5.QtWidgets import QMenu from ..HgExtensionProjectBrowserHelper import HgExtensionProjectBrowserHelper
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the shelve extension project helper. """ - from PyQt5.QtWidgets import QMenu from E5Gui.E5Action import E5Action
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the largefiles extension interface. """ - import os from PyQt5.QtCore import QTimer
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS project browser helper for Mercurial. """ - import os from PyQt5.QtWidgets import QMenu, QDialog
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS project helper for Mercurial. """ - import os from PyQt5.QtWidgets import QMenu, QToolBar
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/PurgeExtension/HgPurgeListDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/PurgeExtension/HgPurgeListDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to list all files not tracked by Mercurial. """ - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the purge extension project helper. """ - from PyQt5.QtWidgets import QMenu from E5Gui.E5Action import E5Action
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesFoldDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesFoldDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter data to fold patches. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QTreeWidgetItem
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to select a list of guards. """ - from PyQt5.QtWidgets import ( QDialog, QDialogButtonBox, QListWidgetItem, QAbstractItemView )
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the commit message of the current patch. """ - import os from PyQt5.QtCore import Qt, QCoreApplication
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show a list of applied and unapplied patches. """ - import os from PyQt5.QtCore import Qt, QCoreApplication
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesNewPatchDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesNewPatchDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to get the data for a new patch. """ - from PyQt5.QtCore import pyqtSlot, QDateTime from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data to rename a patch. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the queues extension project helper. """ - from PyQt5.QtWidgets import QMenu from E5Gui.E5Action import E5Action
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/HgRebaseDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/HgRebaseDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a rebase session. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QButtonGroup
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the rebase extension project helper. """ - from PyQt5.QtWidgets import QMenu from E5Gui.E5Action import E5Action
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the rebase extension interface. """ - import os from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveDataDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveDataDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a shelve operation. """ - from PyQt5.QtCore import QDateTime from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelvesSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelvesSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to select multiple shelve names. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgUnshelveDataDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgUnshelveDataDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for an unshelve operation. """ - from PyQt5.QtWidgets import QDialog from .Ui_HgUnshelveDataDialog import Ui_HgUnshelveDataDialog
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/ProjectBrowserHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/ProjectBrowserHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the shelve extension project browser helper. """ - from PyQt5.QtWidgets import QMenu from E5Gui import E5MessageBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the shelve extension project helper. """ - from PyQt5.QtWidgets import QMenu from E5Gui.E5Action import E5Action
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/StripExtension/HgStripDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/StripExtension/HgStripDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data to strip changesets. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/StripExtension/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/StripExtension/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the strip extension project helper. """ - from PyQt5.QtWidgets import QMenu from E5Gui.E5Action import E5Action
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the strip extension interface. """ - import os from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/Config.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/Config.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module defining configuration variables for the subversion package. """ - # Available protocols for the repository URL ConfigSvnProtocols = [ 'file://',
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/ConfigurationPage/SubversionPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/ConfigurationPage/SubversionPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Subversion configuration page. """ - from PyQt5.QtCore import pyqtSlot from Preferences.ConfigurationPages.ConfigurationPageBase import (
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS project browser helper for subversion. """ - import os import pysvn
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS project helper for Subversion. """ - import os from PyQt5.QtWidgets import QToolBar
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the output of the svn blame command. """ - import os import pysvn
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnCommandDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnCommandDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Subversion command dialog. """ - from PyQt5.QtWidgets import QDialog, QDialogButtonBox from E5Gui.E5PathPicker import E5PathPickerModes
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnCommitDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnCommitDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the commit message. """ - import pysvn from PyQt5.QtCore import pyqtSignal, Qt, pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnConst.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnConst.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing some constants for the pysvn package. """ - from PyQt5.QtCore import QT_TRANSLATE_NOOP import pysvn
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnCopyDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnCopyDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a copy operation. """ - import os.path from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the output of a pysvn action. """ - import pysvn from PyQt5.QtCore import Qt
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ process. """ - import os import pysvn
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnDiffHighlighter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnDiffHighlighter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a syntax highlighter for unified and context diff outputs. """ - from E5Gui.E5GenericDiffHighlighter import TERMINAL, E5GenericDiffHighlighter
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ file/directory. """ - import os import pysvn
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnLoginDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnLoginDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the login dialog for pysvn. """ - from PyQt5.QtWidgets import QDialog from .Ui_SvnLoginDialog import Ui_SvnLoginDialog
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ repository. """ - import os from PyQt5.QtCore import QDir, pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ VCS. """ - import os from PyQt5.QtCore import QDir, pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnPropDelDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnPropDelDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a new property. """ - from PyQt5.QtWidgets import QDialog, QDialogButtonBox from .Ui_SvnPropDelDialog import Ui_SvnPropDelDialog
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ process. """ - import os import pysvn
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnPropSetDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnPropSetDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a new property. """ - from PyQt5.QtWidgets import QDialog from .Ui_SvnPropSetDialog import Ui_SvnPropSetDialog
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnRelocateDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnRelocateDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data to relocate the workspace. """ - from PyQt5.QtWidgets import QDialog from .Ui_SvnRelocateDialog import Ui_SvnRelocateDialog
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the subversion repository browser dialog. """ - import pysvn from PyQt5.QtCore import Qt, pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnRevisionSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnRevisionSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the revisions for the svn diff command. """ - from PyQt5.QtCore import QDate, QDateTime, Qt from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ process. """ - import os import pysvn
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS status monitor thread class for Subversion. """ - import os import pysvn
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnSwitchDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnSwitchDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a switch operation. """ - from PyQt5.QtWidgets import QDialog from .Ui_SvnSwitchDialog import Ui_SvnSwitchDialog
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a tagging operation. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnUtilities.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnUtilities.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing some common utility functions for the pysvn package. """ - import os from PyQt5.QtCore import QDateTime, Qt
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/Config.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/Config.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module defining configuration variables for the subversion package. """ - # Available protocols for the repository URL ConfigSvnProtocols = [ 'file://',
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/ConfigurationPage/SubversionPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/ConfigurationPage/SubversionPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Subversion configuration page. """ - from PyQt5.QtCore import pyqtSlot from Preferences.ConfigurationPages.ConfigurationPageBase import (
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS project browser helper for subversion. """ - import os from PyQt5.QtWidgets import QMenu
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/ProjectHelper.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/ProjectHelper.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS project helper for Subversion. """ - import os from PyQt5.QtWidgets import QToolBar
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the output of the svn blame command. """ - import os from PyQt5.QtCore import QTimer, QProcess, Qt, pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnCommandDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnCommandDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Subversion command dialog. """ - from PyQt5.QtWidgets import QDialog, QDialogButtonBox from E5Gui.E5PathPicker import E5PathPickerModes
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnCommitDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnCommitDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the commit message. """ - from PyQt5.QtCore import pyqtSignal, Qt, pyqtSlot from PyQt5.QtWidgets import QWidget, QDialogButtonBox
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a copy operation. """ - import os.path from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog starting a process and showing its output. """ - import os from PyQt5.QtCore import QTimer, QProcess, pyqtSlot, Qt, QProcessEnvironment
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ process. """ - import os from PyQt5.QtCore import QTimer, QFileInfo, QProcess, pyqtSlot, Qt
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnDiffHighlighter.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnDiffHighlighter.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a syntax highlighter for unified and context diff outputs. """ - from E5Gui.E5GenericDiffHighlighter import TERMINAL, E5GenericDiffHighlighter
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ repository. """ - import os from PyQt5.QtCore import QDir, pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ the VCS. """ - import os from PyQt5.QtCore import QDir, pyqtSlot
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnPropSetDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnPropSetDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a new property. """ - from PyQt5.QtWidgets import QDialog from E5Gui.E5PathPicker import E5PathPickerModes
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnRelocateDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnRelocateDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data to relocate the workspace. """ - from PyQt5.QtWidgets import QDialog from .Ui_SvnRelocateDialog import Ui_SvnRelocateDialog
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnRevisionSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnRevisionSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the revisions for the svn diff command. """ - from PyQt5.QtCore import QDate, QDateTime, Qt from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnSwitchDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnSwitchDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a switch operation. """ - from PyQt5.QtWidgets import QDialog from .Ui_SvnSwitchDialog import Ui_SvnSwitchDialog
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnTagDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnTagDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a tagging operation. """ - from PyQt5.QtWidgets import QDialog, QDialogButtonBox from .Ui_SvnTagDialog import Ui_SvnTagDialog
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnUtilities.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnUtilities.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing some common utility functions for the subversion package. """ - import os import Utilities
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/subversion.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/subversion.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the version control systems interface to Subversion. """ - import os import re import shutil
--- a/eric6/Plugins/ViewManagerPlugins/Listspace/Listspace.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/ViewManagerPlugins/Listspace/Listspace.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the listspace viewmanager class. """ - import os from PyQt5.QtCore import pyqtSignal, pyqtSlot, QFileInfo, QEvent, Qt
--- a/eric6/Plugins/ViewManagerPlugins/Tabview/Tabview.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/ViewManagerPlugins/Tabview/Tabview.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a tabbed viewmanager class. """ - import os from PyQt5.QtCore import (
--- a/eric6/Plugins/WizardPlugins/ColorDialogWizard/ColorDialogWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/ColorDialogWizard/ColorDialogWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the color dialog wizard dialog. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopListSelectionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopListSelectionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to select multiple entries from a list. """ - from PyQt5.QtWidgets import QDialog, QListWidgetItem, QAbstractItemView from .Ui_DotDesktopListSelectionDialog import Ui_DotDesktopListSelectionDialog
--- a/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the .desktop wizard dialog. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the eric6 message box wizard dialog. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the eric plug-in wizard dialog. """ - from PyQt5.QtCore import pyqtSlot, QDate from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Plugins/WizardPlugins/EricPluginWizard/Templates.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/EricPluginWizard/Templates.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the various plug-in templates. """ - mainTemplate = '''# -*- coding: utf-8 -*- # Copyright (c) {year} {author} <{email}>
--- a/eric6/Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the file dialog wizard dialog. """ - import os from PyQt5.QtCore import pyqtSlot, QUrl
--- a/eric6/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the font dialog wizard dialog. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/WizardPlugins/InputDialogWizard/InputDialogWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/InputDialogWizard/InputDialogWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the input dialog wizard dialog. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the message box wizard dialog. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Python re wizard dialog. """ - import os import re
--- a/eric6/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardRepeatDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardRepeatDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog for entering repeat counts. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the QRegularExpression wizard dialog. """ - import os import re import sys
--- a/eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardRepeatDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardRepeatDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog for entering repeat counts. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog
--- a/eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardServer.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardServer.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the PyQt5 server part of the QRegularExpression wizzard. """ - import json import sys
--- a/eric6/Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the setup.py wizard dialog. """ - import os import datetime
--- a/eric6/Preferences/ConfigurationDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog for the configuration of eric6. """ - import os import types
--- a/eric6/Preferences/ConfigurationPages/ApplicationPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/ApplicationPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Application configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_ApplicationPage import Ui_ApplicationPage
--- a/eric6/Preferences/ConfigurationPages/CondaPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/CondaPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the conda configuration page. """ - from E5Gui.E5PathPicker import E5PathPickerModes from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/ConfigurationPageBase.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/ConfigurationPageBase.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the base class for all configuration pages. """ - from PyQt5.QtCore import pyqtSlot, pyqtSignal from PyQt5.QtGui import QIcon, QPixmap, QColor from PyQt5.QtWidgets import QWidget, QColorDialog, QFontDialog
--- a/eric6/Preferences/ConfigurationPages/CooperationPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/CooperationPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Cooperation configuration page. """ - from PyQt5.QtCore import pyqtSlot, QRegularExpression from PyQt5.QtGui import QRegularExpressionValidator, QValidator
--- a/eric6/Preferences/ConfigurationPages/CorbaPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/CorbaPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Corba configuration page. """ - from E5Gui.E5PathPicker import E5PathPickerModes from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/DebuggerPython3Page.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/DebuggerPython3Page.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Debugger Python3 configuration page. """ - from PyQt5.QtCore import pyqtSlot from E5Gui.E5Application import e5App
--- a/eric6/Preferences/ConfigurationPages/DiffColoursPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/DiffColoursPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Diff colours configuration page. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtGui import QPalette from PyQt5.QtWidgets import QColorDialog
--- a/eric6/Preferences/ConfigurationPages/EditorAPIsPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorAPIsPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor APIs configuration page. """ - from PyQt5.QtCore import QDir, pyqtSlot, QFileInfo from PyQt5.QtWidgets import QInputDialog
--- a/eric6/Preferences/ConfigurationPages/EditorAutocompletionPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorAutocompletionPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Autocompletion configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_EditorAutocompletionPage import Ui_EditorAutocompletionPage
--- a/eric6/Preferences/ConfigurationPages/EditorAutocompletionQScintillaPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorAutocompletionQScintillaPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the QScintilla Autocompletion configuration page. """ - from PyQt5.Qsci import QsciScintilla from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/EditorCalltipsPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorCalltipsPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Calltips configuration page. """ - from PyQt5.Qsci import QsciScintilla from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the QScintilla Calltips configuration page. """ - from PyQt5.Qsci import QsciScintilla from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/EditorDocViewerPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorDocViewerPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Documentation Viewer configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_EditorDocViewerPage import Ui_EditorDocViewerPage
--- a/eric6/Preferences/ConfigurationPages/EditorExportersPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorExportersPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Exporters configuration page. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QFontDialog
--- a/eric6/Preferences/ConfigurationPages/EditorHighlightersPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorHighlightersPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Highlighter Associations configuration page. """ - import os from pygments.lexers import get_all_lexers
--- a/eric6/Preferences/ConfigurationPages/EditorHighlightingStylesPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorHighlightingStylesPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Highlighting Styles configuration page. """ - from PyQt5.QtCore import pyqtSlot, Qt, QFileInfo, QFile, QIODevice from PyQt5.QtGui import QPalette, QFont from PyQt5.QtWidgets import (
--- a/eric6/Preferences/ConfigurationPages/EditorKeywordsPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorKeywordsPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the editor highlighter keywords configuration page. """ - from PyQt5.QtCore import pyqtSlot from E5Gui import E5MessageBox
--- a/eric6/Preferences/ConfigurationPages/EditorMouseClickHandlerPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorMouseClickHandlerPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Mouse Click Handlers configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_EditorMouseClickHandlerPage import Ui_EditorMouseClickHandlerPage
--- a/eric6/Preferences/ConfigurationPages/EditorPropertiesPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorPropertiesPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Properties configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_EditorPropertiesPage import Ui_EditorPropertiesPage
--- a/eric6/Preferences/ConfigurationPages/EditorSearchPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorSearchPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Search configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_EditorSearchPage import Ui_EditorSearchPage
--- a/eric6/Preferences/ConfigurationPages/EditorSpellCheckingPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorSpellCheckingPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Spellchecking configuration page. """ - from E5Gui.E5PathPicker import E5PathPickerModes from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/EditorStylesPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorStylesPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Styles configuration page. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtGui import QColor, QPalette from PyQt5.QtWidgets import QColorDialog, QFontDialog
--- a/eric6/Preferences/ConfigurationPages/EditorSyntaxPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorSyntaxPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Syntax Checker configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_EditorSyntaxPage import Ui_EditorSyntaxPage
--- a/eric6/Preferences/ConfigurationPages/EditorTypingPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EditorTypingPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Editor Typing configuration page. """ - from PyQt5.QtCore import pyqtSlot from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/EmailPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/EmailPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Email configuration page. """ - import smtplib import socket import sys
--- a/eric6/Preferences/ConfigurationPages/GraphicsPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/GraphicsPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Printer configuration page. """ - from PyQt5.QtCore import pyqtSlot from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/HelpDocumentationPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/HelpDocumentationPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Help Documentation configuration page. """ - from E5Gui.E5PathPicker import E5PathPickerModes from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/HelpViewersPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/HelpViewersPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Help Viewers configuration page. """ - from PyQt5.QtWidgets import QButtonGroup from Globals import getWebBrowserSupport
--- a/eric6/Preferences/ConfigurationPages/HexEditorPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/HexEditorPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ Module implementing the Hex Editor configuration page. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QFontDialog
--- a/eric6/Preferences/ConfigurationPages/IconsPreviewDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/IconsPreviewDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to preview the contents of an icon directory. """ - import os.path from PyQt5.QtCore import pyqtSlot, QDir
--- a/eric6/Preferences/ConfigurationPages/InterfacePage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/InterfacePage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Interface configuration page. """ - import glob import os
--- a/eric6/Preferences/ConfigurationPages/IrcPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/IrcPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the IRC configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_IrcPage import Ui_IrcPage
--- a/eric6/Preferences/ConfigurationPages/LogViewerPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/LogViewerPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Log Viewer configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_LogViewerPage import Ui_LogViewerPage
--- a/eric6/Preferences/ConfigurationPages/MasterPasswordEntryDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/MasterPasswordEntryDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter or change the master password. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Preferences/ConfigurationPages/MicroPythonPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/MicroPythonPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the MicroPython configuration page. """ - from E5Gui.E5PathPicker import E5PathPickerModes from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/MimeTypesPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/MimeTypesPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Text Mime Types configuration page. """ - from PyQt5.QtCore import pyqtSlot from E5Gui import E5MessageBox
--- a/eric6/Preferences/ConfigurationPages/MultiProjectPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/MultiProjectPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Multi Project configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_MultiProjectPage import Ui_MultiProjectPage
--- a/eric6/Preferences/ConfigurationPages/NetworkPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/NetworkPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Network configuration page. """ - from PyQt5.QtCore import pyqtSlot from E5Gui.E5PathPicker import E5PathPickerModes
--- a/eric6/Preferences/ConfigurationPages/NotificationsPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/NotificationsPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Notifications configuration page. """ - from PyQt5.QtCore import pyqtSlot, QPoint from PyQt5.QtWidgets import QApplication
--- a/eric6/Preferences/ConfigurationPages/PipPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/PipPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Package implementing the pip configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_PipPage import Ui_PipPage
--- a/eric6/Preferences/ConfigurationPages/PluginManagerPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/PluginManagerPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Plugin Manager configuration page. """ - from PyQt5.QtCore import pyqtSlot from E5Gui.E5PathPicker import E5PathPickerModes
--- a/eric6/Preferences/ConfigurationPages/PrinterPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/PrinterPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Printer configuration page. """ - from PyQt5.QtCore import pyqtSlot from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/ProjectBrowserPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/ProjectBrowserPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Project Browser configuration page. """ - from PyQt5.QtCore import pyqtSlot from E5Gui.E5Application import e5App
--- a/eric6/Preferences/ConfigurationPages/ProjectPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/ProjectPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Project configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_ProjectPage import Ui_ProjectPage
--- a/eric6/Preferences/ConfigurationPages/ProtobufPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/ProtobufPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the protobuf configuration page. """ - from E5Gui.E5PathPicker import E5PathPickerModes from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/PythonPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/PythonPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Python configuration page. """ - from PyQt5.QtCore import pyqtSlot from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/QtPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/QtPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Qt configuration page. """ - from PyQt5.QtCore import pyqtSlot from E5Gui.E5PathPicker import E5PathPickerModes
--- a/eric6/Preferences/ConfigurationPages/SecurityPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/SecurityPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Security configuration page. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog
--- a/eric6/Preferences/ConfigurationPages/ShellPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/ShellPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Shell configuration page. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QFontDialog
--- a/eric6/Preferences/ConfigurationPages/TasksPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/TasksPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Tasks configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_TasksPage import Ui_TasksPage
--- a/eric6/Preferences/ConfigurationPages/TemplatesPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/TemplatesPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Templates configuration page. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QFontDialog
--- a/eric6/Preferences/ConfigurationPages/VcsPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/VcsPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the VCS configuration page. """ - from .ConfigurationPageBase import ConfigurationPageBase from .Ui_VcsPage import Ui_VcsPage
--- a/eric6/Preferences/ConfigurationPages/ViewmanagerPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/ViewmanagerPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Viewmanager configuration page. """ - from PyQt5.QtCore import pyqtSlot from E5Gui.E5Application import e5App
--- a/eric6/Preferences/ConfigurationPages/WebBrowserAppearancePage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/WebBrowserAppearancePage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Web Browser Appearance configuration page. """ - from PyQt5.QtGui import QFont from PyQt5.QtWidgets import QFontDialog
--- a/eric6/Preferences/ConfigurationPages/WebBrowserFlashCookieManagerPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/WebBrowserFlashCookieManagerPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Flash Cookies Manager configuration page. """ - from E5Gui.E5PathPicker import E5PathPickerModes from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/WebBrowserPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/WebBrowserPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Web Browser configuration page. """ - from PyQt5.QtCore import pyqtSlot, QLocale from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/ConfigurationPages/WebBrowserSpellCheckingPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/WebBrowserSpellCheckingPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Web Browser Spell Checking configuration page. """ - import os from PyQt5.QtCore import (
--- a/eric6/Preferences/ConfigurationPages/WebBrowserVirusTotalPage.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/WebBrowserVirusTotalPage.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing VirusTotal configuration page (web browser variant). """ - from PyQt5.QtCore import pyqtSlot from .ConfigurationPageBase import ConfigurationPageBase
--- a/eric6/Preferences/MouseClickDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/MouseClickDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog for the configuration of a mouse click sequence. """ - from PyQt5.QtCore import pyqtSlot, Qt, QEvent from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Preferences/PreferencesLexer.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/PreferencesLexer.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a special QScintilla lexer to handle the preferences. """ - from PyQt5.QtCore import QCoreApplication, QObject from PyQt5.Qsci import QsciScintillaBase
--- a/eric6/Preferences/ProgramsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ProgramsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Programs page. """ - import os import re import sys
--- a/eric6/Preferences/ShortcutDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ShortcutDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog for the configuration of a keyboard shortcut. """ - from PyQt5.QtCore import pyqtSignal, QEvent, Qt from PyQt5.QtGui import QKeySequence from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Preferences/Shortcuts.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/Shortcuts.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing functions dealing with keyboard shortcuts. """ - from PyQt5.QtCore import QFile, QIODevice, QCoreApplication from PyQt5.QtGui import QKeySequence
--- a/eric6/Preferences/SubstyleDefinitionDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/SubstyleDefinitionDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the sub-style definition dialog. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Preferences/ToolConfigurationDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ToolConfigurationDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a configuration dialog for the tools menu. """ - import copy from PyQt5.QtCore import Qt, pyqtSlot
--- a/eric6/Preferences/ToolGroupConfigurationDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ToolGroupConfigurationDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a configuration dialog for the tools menu. """ - import copy from PyQt5.QtCore import Qt, pyqtSlot
--- a/eric6/Preferences/ViewProfileDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/ViewProfileDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to configure the various view profiles. """ - from PyQt5.QtWidgets import QDialog from .Ui_ViewProfileToolboxesDialog import Ui_ViewProfileToolboxesDialog
--- a/eric6/Preferences/__init__.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Preferences/__init__.py Mon Oct 12 18:23:44 2020 +0200 @@ -16,7 +16,6 @@ 'from Preferences import *' to import it. """ - import ast import os import fnmatch
--- a/eric6/Project/AddDirectoryDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/AddDirectoryDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to add files of a directory to the project. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog
--- a/eric6/Project/AddFileDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/AddFileDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to add a file to the project. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Project/AddFoundFilesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/AddFoundFilesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to show the found files to the user. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Project/AddLanguageDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/AddLanguageDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to add a new language to the project. """ - from PyQt5.QtWidgets import QDialog from .Ui_AddLanguageDialog import Ui_AddLanguageDialog
--- a/eric6/Project/DebuggerPropertiesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/DebuggerPropertiesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog for entering project specific debugger settings. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Project/FiletypeAssociationDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/FiletypeAssociationDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter filetype associations for the project. """ - from PyQt5.QtCore import Qt, pyqtSlot from PyQt5.QtWidgets import QHeaderView, QDialog, QTreeWidgetItem
--- a/eric6/Project/IdlCompilerDefineNameDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/IdlCompilerDefineNameDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ for the IDL compiler. """ - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Project/IdlCompilerOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/IdlCompilerOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter some IDL compiler options. """ - from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtWidgets import QDialog, QTreeWidgetItem, QInputDialog
--- a/eric6/Project/LexerAssociationDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/LexerAssociationDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter lexer associations for the project. """ - import os from PyQt5.QtCore import Qt, pyqtSlot
--- a/eric6/Project/MakePropertiesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/MakePropertiesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the properties for 'make'. """ - from PyQt5.QtWidgets import QDialog, QDialogButtonBox from E5Gui.E5PathPicker import E5PathPickerModes
--- a/eric6/Project/NewDialogClassDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/NewDialogClassDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter the data for a new dialog class file. """ - import os from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/eric6/Project/NewPythonPackageDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/NewPythonPackageDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to add a new Python package. """ - from PyQt5.QtWidgets import QDialog, QDialogButtonBox from PyQt5.QtCore import pyqtSlot
--- a/eric6/Project/Project.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/Project.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the project management functionality. """ - import os import time import shutil
--- a/eric6/Project/ProjectBaseBrowser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectBaseBrowser.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the baseclass for the various project browsers. """ - import os from PyQt5.QtCore import (
--- a/eric6/Project/ProjectBrowser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectBrowser.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the project browser part of the eric6 UI. """ - from PyQt5.QtCore import Qt from PyQt5.QtGui import QColor from PyQt5.QtWidgets import QApplication
--- a/eric6/Project/ProjectBrowserModel.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectBrowserModel.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the browser model. """ - import os import re
--- a/eric6/Project/ProjectBrowserSortFilterProxyModel.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectBrowserSortFilterProxyModel.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the browser sort filter proxy model. """ - from UI.BrowserSortFilterProxyModel import BrowserSortFilterProxyModel from .ProjectBrowserModel import ProjectBrowserSourceType
--- a/eric6/Project/ProjectFormsBrowser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectFormsBrowser.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class used to display the forms part of the project. """ - import os import sys import shutil
--- a/eric6/Project/ProjectInterfacesBrowser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectInterfacesBrowser.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ of the project. """ - import os import glob
--- a/eric6/Project/ProjectOthersBrowser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectOthersBrowser.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ don't fit the other categories. """ - from PyQt5.QtCore import QModelIndex, pyqtSignal, QUrl from PyQt5.QtGui import QDesktopServices from PyQt5.QtWidgets import QDialog, QMenu
--- a/eric6/Project/ProjectProtocolsBrowser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectProtocolsBrowser.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ of the project. """ - import os import glob import sys
--- a/eric6/Project/ProjectResourcesBrowser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectResourcesBrowser.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class used to display the resources part of the project. """ - import os from PyQt5.QtCore import QThread, QFileInfo, pyqtSignal, QProcess
--- a/eric6/Project/ProjectSourcesBrowser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectSourcesBrowser.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a class used to display the Sources part of the project. """ - import os from PyQt5.QtCore import pyqtSignal
--- a/eric6/Project/ProjectTranslationsBrowser.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/ProjectTranslationsBrowser.py Mon Oct 12 18:23:44 2020 +0200 @@ -8,7 +8,6 @@ project. """ - import os import shutil import fnmatch
--- a/eric6/Project/PropertiesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/PropertiesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the project properties dialog. """ - import os from PyQt5.QtCore import QDir, pyqtSlot
--- a/eric6/Project/QuickFindFileDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/QuickFindFileDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -10,7 +10,6 @@ interactions. """ - import os from PyQt5.QtCore import pyqtSignal, pyqtSlot, Qt, QEvent
--- a/eric6/Project/RccCompilerOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/RccCompilerOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter some non-common rcc compiler options. """ - from PyQt5.QtWidgets import QDialog from .Ui_RccCompilerOptionsDialog import Ui_RccCompilerOptionsDialog
--- a/eric6/Project/SpellingPropertiesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/SpellingPropertiesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Spelling Properties dialog. """ - from PyQt5.QtWidgets import QDialog from E5Gui.E5PathPicker import E5PathPickerModes
--- a/eric6/Project/TranslationPropertiesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/TranslationPropertiesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the Translations Properties dialog. """ - import os from PyQt5.QtCore import pyqtSlot
--- a/eric6/Project/UicCompilerOptionsDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/UicCompilerOptionsDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing a dialog to enter some non-common uic compiler options. """ - from PyQt5.QtWidgets import QDialog from .Ui_UicCompilerOptionsDialog import Ui_UicCompilerOptionsDialog
--- a/eric6/Project/UserPropertiesDialog.py Mon Oct 12 17:39:45 2020 +0200 +++ b/eric6/Project/UserPropertiesDialog.py Mon Oct 12 18:23:44 2020 +0200 @@ -7,7 +7,6 @@ Module implementing the user specific project properties dialog. """ - from PyQt5.QtWidgets import QDialog from E5Gui.E5Application import e5App