diff --git a/IPython/core/inputtransformer2.py b/IPython/core/inputtransformer2.py index f697399..20237ce 100644 --- a/IPython/core/inputtransformer2.py +++ b/IPython/core/inputtransformer2.py @@ -541,7 +541,6 @@ class TransformerManager: cell += '\n' # Ensure the cell has a trailing newline lines = cell.splitlines(keepends=True) for transform in self.cleanup_transforms + self.line_transforms: - #print(transform, lines) lines = transform(lines) lines = self.do_token_transforms(lines) diff --git a/docs/source/interactive/autoawait.rst b/docs/source/interactive/autoawait.rst index 0164f93..f0c2dab 100644 --- a/docs/source/interactive/autoawait.rst +++ b/docs/source/interactive/autoawait.rst @@ -5,7 +5,7 @@ Asynchronous in REPL: Autoawait .. note:: - This feature is experimental and behavior can change betwen python and + This feature is experimental and behavior can change between python and IPython version without prior deprecation. Starting with IPython 7.0, and when user Python 3.6 and above, IPython offer the diff --git a/docs/source/whatsnew/index.rst b/docs/source/whatsnew/index.rst index a8e7df9..62ae2c1 100644 --- a/docs/source/whatsnew/index.rst +++ b/docs/source/whatsnew/index.rst @@ -13,12 +13,12 @@ What's new in IPython ===================== .. - this will appear in the docs if we are nto releasing a versin (ie is - `_version_extra` in release.py is empty stringA + this will appear in the docs if we are not releasing a versin (ie is + `_version_extra` in release.py is empty string .. only:: ipydev - Developpement version in-progress features: + Development version in-progress features: .. toctree:: diff --git a/docs/source/whatsnew/version0.13.rst b/docs/source/whatsnew/version0.13.rst index b1106eb..6314012 100644 --- a/docs/source/whatsnew/version0.13.rst +++ b/docs/source/whatsnew/version0.13.rst @@ -155,7 +155,7 @@ Other improvements to the Notebook These are some other notable small improvements to the notebook, in addition to many bug fixes and minor changes to add polish and robustness throughout: -* The notebook pager (the area at the bottom) is now resizeable by dragging its +* The notebook pager (the area at the bottom) is now Resizable by dragging its divider handle, a feature that had been requested many times by just about anyone who had used the notebook system. :ghpull:`1705`. diff --git a/docs/source/whatsnew/version3.rst b/docs/source/whatsnew/version3.rst index 56c5d9f..f230943 100644 --- a/docs/source/whatsnew/version3.rst +++ b/docs/source/whatsnew/version3.rst @@ -182,7 +182,7 @@ Other new features * ``NotebookApp.webapp_settings`` is deprecated and replaced with the more informatively named ``NotebookApp.tornado_settings``. -* Using :magic:`timeit` prints warnings if there is atleast a 4x difference in timings +* Using :magic:`timeit` prints warnings if there is at least a 4x difference in timings between the slowest and fastest runs, since this might meant that the multiple runs are not independent of one another. diff --git a/docs/source/whatsnew/version7.rst b/docs/source/whatsnew/version7.rst index f53e341..7f35c4a 100644 --- a/docs/source/whatsnew/version7.rst +++ b/docs/source/whatsnew/version7.rst @@ -148,8 +148,8 @@ documentation, use-case: dalejung, danielballan, ellisonbg, fperez, gnestor, minrk, njsmith, pganssle, tacaswell, takluyver , vidartf ... And many other. -Autoreload Improvment ---------------------- +Autoreload Improvement +---------------------- The magic ``%autoreload 2`` now captures new methods added to classes. Earlier, only methods existing as of the initial import were being tracked and updated.