Sun, 29 Nov 2020 14:14:11 +0100
Updated source docu.
--- a/eric6.e4p Sun Nov 29 14:10:50 2020 +0100 +++ b/eric6.e4p Sun Nov 29 14:14:11 2020 +0100 @@ -2817,7 +2817,7 @@ <string>LineComplexity</string> </key> <value> - <int>20</int> + <int>25</int> </value> <key> <string>LineComplexityScore</string>
--- a/eric6/APIs/Python3/eric6.api Sun Nov 29 14:10:50 2020 +0100 +++ b/eric6/APIs/Python3/eric6.api Sun Nov 29 14:14:11 2020 +0100 @@ -9737,6 +9737,7 @@ eric6.VirtualEnv.VirtualenvConfigurationDialog.VirtualenvConfigurationDialog.on_condaRequirementsFilePicker_textChanged?4(txt) eric6.VirtualEnv.VirtualenvConfigurationDialog.VirtualenvConfigurationDialog.on_condaSpecialsGroup_clicked?4() eric6.VirtualEnv.VirtualenvConfigurationDialog.VirtualenvConfigurationDialog.on_condaTargetDirectoryPicker_textChanged?4(txt) +eric6.VirtualEnv.VirtualenvConfigurationDialog.VirtualenvConfigurationDialog.on_nameEdit_textChanged?4(txt) eric6.VirtualEnv.VirtualenvConfigurationDialog.VirtualenvConfigurationDialog.on_pythonExecPicker_textChanged?4(txt) eric6.VirtualEnv.VirtualenvConfigurationDialog.VirtualenvConfigurationDialog.on_pyvenvButton_toggled?4(checked) eric6.VirtualEnv.VirtualenvConfigurationDialog.VirtualenvConfigurationDialog.on_targetDirectoryPicker_textChanged?4(txt)
--- a/eric6/Documentation/Help/source.qhp Sun Nov 29 14:10:50 2020 +0100 +++ b/eric6/Documentation/Help/source.qhp Sun Nov 29 14:14:11 2020 +0100 @@ -10693,6 +10693,7 @@ <keyword name="PipDialog (Constructor)" id="PipDialog (Constructor)" ref="eric6.PipInterface.PipDialog.html#PipDialog.__init__" /> <keyword name="PipDialog (Module)" id="PipDialog (Module)" ref="eric6.PipInterface.PipDialog.html" /> <keyword name="PipDialog.__addOutput" id="PipDialog.__addOutput" ref="eric6.PipInterface.PipDialog.html#PipDialog.__addOutput" /> + <keyword name="PipDialog.__cancel" id="PipDialog.__cancel" ref="eric6.PipInterface.PipDialog.html#PipDialog.__cancel" /> <keyword name="PipDialog.__finish" id="PipDialog.__finish" ref="eric6.PipInterface.PipDialog.html#PipDialog.__finish" /> <keyword name="PipDialog.__procFinished" id="PipDialog.__procFinished" ref="eric6.PipInterface.PipDialog.html#PipDialog.__procFinished" /> <keyword name="PipDialog.__readStderr" id="PipDialog.__readStderr" ref="eric6.PipInterface.PipDialog.html#PipDialog.__readStderr" /> @@ -16064,6 +16065,7 @@ <keyword name="VirtualenvConfigurationDialog.on_condaRequirementsFilePicker_textChanged" id="VirtualenvConfigurationDialog.on_condaRequirementsFilePicker_textChanged" ref="eric6.VirtualEnv.VirtualenvConfigurationDialog.html#VirtualenvConfigurationDialog.on_condaRequirementsFilePicker_textChanged" /> <keyword name="VirtualenvConfigurationDialog.on_condaSpecialsGroup_clicked" id="VirtualenvConfigurationDialog.on_condaSpecialsGroup_clicked" ref="eric6.VirtualEnv.VirtualenvConfigurationDialog.html#VirtualenvConfigurationDialog.on_condaSpecialsGroup_clicked" /> <keyword name="VirtualenvConfigurationDialog.on_condaTargetDirectoryPicker_textChanged" id="VirtualenvConfigurationDialog.on_condaTargetDirectoryPicker_textChanged" ref="eric6.VirtualEnv.VirtualenvConfigurationDialog.html#VirtualenvConfigurationDialog.on_condaTargetDirectoryPicker_textChanged" /> + <keyword name="VirtualenvConfigurationDialog.on_nameEdit_textChanged" id="VirtualenvConfigurationDialog.on_nameEdit_textChanged" ref="eric6.VirtualEnv.VirtualenvConfigurationDialog.html#VirtualenvConfigurationDialog.on_nameEdit_textChanged" /> <keyword name="VirtualenvConfigurationDialog.on_pythonExecPicker_textChanged" id="VirtualenvConfigurationDialog.on_pythonExecPicker_textChanged" ref="eric6.VirtualEnv.VirtualenvConfigurationDialog.html#VirtualenvConfigurationDialog.on_pythonExecPicker_textChanged" /> <keyword name="VirtualenvConfigurationDialog.on_pyvenvButton_toggled" id="VirtualenvConfigurationDialog.on_pyvenvButton_toggled" ref="eric6.VirtualEnv.VirtualenvConfigurationDialog.html#VirtualenvConfigurationDialog.on_pyvenvButton_toggled" /> <keyword name="VirtualenvConfigurationDialog.on_targetDirectoryPicker_textChanged" id="VirtualenvConfigurationDialog.on_targetDirectoryPicker_textChanged" ref="eric6.VirtualEnv.VirtualenvConfigurationDialog.html#VirtualenvConfigurationDialog.on_targetDirectoryPicker_textChanged" />
--- a/eric6/Documentation/Source/eric6.DebugClients.Python.AsyncFile.html Sun Nov 29 14:10:50 2020 +0100 +++ b/eric6/Documentation/Source/eric6.DebugClients.Python.AsyncFile.html Sun Nov 29 14:14:11 2020 +0100 @@ -199,7 +199,7 @@ </p> <p> This method checks, if an operation is permitted according to - the mode of the file. If it is not, an IOError is raised. + the mode of the file. If it is not, an OSError is raised. </p> <dl> @@ -210,7 +210,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate a bad file descriptor </dd> @@ -485,10 +485,10 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> This method is not supported and always raises an - IOError. + OSError. </dd> </dl> <a NAME="AsyncFile.seekable" ID="AsyncFile.seekable"></a> @@ -519,10 +519,10 @@ </p> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> This method is not supported and always raises an - IOError. + OSError. </dd> </dl> <a NAME="AsyncFile.truncate" ID="AsyncFile.truncate"></a> @@ -541,10 +541,10 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> This method is not supported and always raises an - IOError. + OSError. </dd> </dl> <a NAME="AsyncFile.writable" ID="AsyncFile.writable"></a>
--- a/eric6/Documentation/Source/eric6.MicroPython.MicroPythonCommandsInterface.html Sun Nov 29 14:10:50 2020 +0100 +++ b/eric6/Documentation/Source/eric6.MicroPython.MicroPythonCommandsInterface.html Sun Nov 29 14:14:11 2020 +0100 @@ -314,7 +314,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -420,7 +420,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -457,7 +457,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -484,7 +484,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -510,7 +510,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -581,7 +581,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -614,7 +614,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -635,7 +635,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -672,7 +672,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -698,7 +698,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -723,7 +723,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -744,7 +744,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -785,7 +785,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -800,7 +800,7 @@ </p> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd> @@ -827,7 +827,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue with the device </dd>
--- a/eric6/Documentation/Source/eric6.PipInterface.PipDialog.html Sun Nov 29 14:10:50 2020 +0100 +++ b/eric6/Documentation/Source/eric6.PipInterface.PipDialog.html Sun Nov 29 14:14:11 2020 +0100 @@ -78,6 +78,10 @@ <td>Private method to add some text to the output pane.</td> </tr> <tr> +<td><a href="#PipDialog.__cancel">__cancel</a></td> +<td>Private slot to cancel the current action.</td> +</tr> +<tr> <td><a href="#PipDialog.__finish">__finish</a></td> <td>Private slot called when the process finished or the user pressed the button.</td> </tr> @@ -148,6 +152,13 @@ text to be added </dd> </dl> +<a NAME="PipDialog.__cancel" ID="PipDialog.__cancel"></a> +<h4>PipDialog.__cancel</h4> +<b>__cancel</b>(<i></i>) + +<p> + Private slot to cancel the current action. +</p> <a NAME="PipDialog.__finish" ID="PipDialog.__finish"></a> <h4>PipDialog.__finish</h4> <b>__finish</b>(<i></i>)
--- a/eric6/Documentation/Source/eric6.QScintilla.Editor.html Sun Nov 29 14:10:50 2020 +0100 +++ b/eric6/Documentation/Source/eric6.QScintilla.Editor.html Sun Nov 29 14:14:11 2020 +0100 @@ -1753,7 +1753,7 @@ </dl> <dl> -<dt>Raises <b>IOError</b>:</dt> +<dt>Raises <b>OSError</b>:</dt> <dd> raised to indicate an issue accessing the file </dd>
--- a/eric6/Documentation/Source/eric6.VirtualEnv.VirtualenvConfigurationDialog.html Sun Nov 29 14:10:50 2020 +0100 +++ b/eric6/Documentation/Source/eric6.VirtualEnv.VirtualenvConfigurationDialog.html Sun Nov 29 14:14:11 2020 +0100 @@ -143,6 +143,10 @@ <td>Private slot handling a change of the conda target directory.</td> </tr> <tr> +<td><a href="#VirtualenvConfigurationDialog.on_nameEdit_textChanged">on_nameEdit_textChanged</a></td> +<td>Private slot handling a change of the virtual environment name.</td> +</tr> +<tr> <td><a href="#VirtualenvConfigurationDialog.on_pythonExecPicker_textChanged">on_pythonExecPicker_textChanged</a></td> <td>Private slot to react to a change of the Python executable.</td> </tr> @@ -391,6 +395,20 @@ target directory </dd> </dl> +<a NAME="VirtualenvConfigurationDialog.on_nameEdit_textChanged" ID="VirtualenvConfigurationDialog.on_nameEdit_textChanged"></a> +<h4>VirtualenvConfigurationDialog.on_nameEdit_textChanged</h4> +<b>on_nameEdit_textChanged</b>(<i>txt</i>) + +<p> + Private slot handling a change of the virtual environment name. +</p> +<dl> + +<dt><i>txt</i> (str)</dt> +<dd> +name of the virtual environment +</dd> +</dl> <a NAME="VirtualenvConfigurationDialog.on_pythonExecPicker_textChanged" ID="VirtualenvConfigurationDialog.on_pythonExecPicker_textChanged"></a> <h4>VirtualenvConfigurationDialog.on_pythonExecPicker_textChanged</h4> <b>on_pythonExecPicker_textChanged</b>(<i>txt</i>)
--- a/eric6/Documentation/Source/eric6.WebBrowser.WebBrowserWindow.html Sun Nov 29 14:10:50 2020 +0100 +++ b/eric6/Documentation/Source/eric6.WebBrowser.WebBrowserWindow.html Sun Nov 29 14:14:11 2020 +0100 @@ -1703,7 +1703,7 @@ </p> <a NAME="WebBrowserWindow.__createTextEncodingAction" ID="WebBrowserWindow.__createTextEncodingAction"></a> <h4>WebBrowserWindow.__createTextEncodingAction</h4> -<b>__createTextEncodingAction</b>(<i>codec, defaultCodec, parentMenu</i>) +<b>__createTextEncodingAction</b>(<i>codec, defaultCodec, parentMenu, name=None</i>) <p> Private method to create an action for the text encoding menu. @@ -1722,6 +1722,10 @@ <dd> reference to the parent menu </dd> +<dt><i>name</i> (str)</dt> +<dd> +name for the action +</dd> </dl> <a NAME="WebBrowserWindow.__createTextEncodingSubmenu" ID="WebBrowserWindow.__createTextEncodingSubmenu"></a> <h4>WebBrowserWindow.__createTextEncodingSubmenu</h4>