##// END OF EJS Templates
typos
Matthias Bussonnier -
Show More
@@ -541,7 +541,6 b' class TransformerManager:'
541 cell += '\n' # Ensure the cell has a trailing newline
541 cell += '\n' # Ensure the cell has a trailing newline
542 lines = cell.splitlines(keepends=True)
542 lines = cell.splitlines(keepends=True)
543 for transform in self.cleanup_transforms + self.line_transforms:
543 for transform in self.cleanup_transforms + self.line_transforms:
544 #print(transform, lines)
545 lines = transform(lines)
544 lines = transform(lines)
546
545
547 lines = self.do_token_transforms(lines)
546 lines = self.do_token_transforms(lines)
@@ -5,7 +5,7 b' Asynchronous in REPL: Autoawait'
5
5
6 .. note::
6 .. note::
7
7
8 This feature is experimental and behavior can change betwen python and
8 This feature is experimental and behavior can change between python and
9 IPython version without prior deprecation.
9 IPython version without prior deprecation.
10
10
11 Starting with IPython 7.0, and when user Python 3.6 and above, IPython offer the
11 Starting with IPython 7.0, and when user Python 3.6 and above, IPython offer the
@@ -13,12 +13,12 b" What's new in IPython"
13 =====================
13 =====================
14
14
15 ..
15 ..
16 this will appear in the docs if we are nto releasing a versin (ie is
16 this will appear in the docs if we are not releasing a versin (ie is
17 `_version_extra` in release.py is empty stringA
17 `_version_extra` in release.py is empty string
18
18
19 .. only:: ipydev
19 .. only:: ipydev
20
20
21 Developpement version in-progress features:
21 Development version in-progress features:
22
22
23 .. toctree::
23 .. toctree::
24
24
@@ -155,7 +155,7 b' Other improvements to the Notebook'
155 These are some other notable small improvements to the notebook, in addition to
155 These are some other notable small improvements to the notebook, in addition to
156 many bug fixes and minor changes to add polish and robustness throughout:
156 many bug fixes and minor changes to add polish and robustness throughout:
157
157
158 * The notebook pager (the area at the bottom) is now resizeable by dragging its
158 * The notebook pager (the area at the bottom) is now Resizable by dragging its
159 divider handle, a feature that had been requested many times by just about
159 divider handle, a feature that had been requested many times by just about
160 anyone who had used the notebook system. :ghpull:`1705`.
160 anyone who had used the notebook system. :ghpull:`1705`.
161
161
@@ -182,7 +182,7 b' Other new features'
182 * ``NotebookApp.webapp_settings`` is deprecated and replaced with
182 * ``NotebookApp.webapp_settings`` is deprecated and replaced with
183 the more informatively named ``NotebookApp.tornado_settings``.
183 the more informatively named ``NotebookApp.tornado_settings``.
184
184
185 * Using :magic:`timeit` prints warnings if there is atleast a 4x difference in timings
185 * Using :magic:`timeit` prints warnings if there is at least a 4x difference in timings
186 between the slowest and fastest runs, since this might meant that the multiple
186 between the slowest and fastest runs, since this might meant that the multiple
187 runs are not independent of one another.
187 runs are not independent of one another.
188
188
@@ -148,8 +148,8 b' documentation, use-case: dalejung, danielballan, ellisonbg, fperez, gnestor,'
148 minrk, njsmith, pganssle, tacaswell, takluyver , vidartf ... And many other.
148 minrk, njsmith, pganssle, tacaswell, takluyver , vidartf ... And many other.
149
149
150
150
151 Autoreload Improvment
151 Autoreload Improvement
152 ---------------------
152 ----------------------
153
153
154 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.
154 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.
155
155
General Comments 0
You need to be logged in to leave comments. Login now