##// END OF EJS Templates
Merge pull request #11853 from minho42/Fixed-typos...
Matthias Bussonnier -
r25170:56ea43f4 merge
parent child Browse files
Show More
@@ -1011,7 +1011,7 b' def format_display_data(obj, include=None, exclude=None):'
1011 1011 format data dict. If this is set *only* the format types included
1012 1012 in this list will be computed.
1013 1013 exclude : list or tuple, optional
1014 A list of format type string (MIME types) to exclue in the format
1014 A list of format type string (MIME types) to exclude in the format
1015 1015 data dict. If this is set all format types will be computed,
1016 1016 except for those included in this argument.
1017 1017 """
@@ -3157,7 +3157,7 b' class InteractiveShell(SingletonConfigurable):'
3157 3157
3158 3158 Experimental value: 'async' Will try to run top level interactive
3159 3159 async/await code in default runner, this will not respect the
3160 interactivty setting and will only run the last node if it is an
3160 interactivity setting and will only run the last node if it is an
3161 3161 expression.
3162 3162
3163 3163 compiler : callable
@@ -1171,7 +1171,7 b' python-profiler package from non-free.""")'
1171 1171 if not quiet :
1172 1172 # Check best timing is greater than zero to avoid a
1173 1173 # ZeroDivisionError.
1174 # In cases where the slowest timing is lesser than a micosecond
1174 # In cases where the slowest timing is lesser than a microsecond
1175 1175 # we assume that it does not really matter if the fastest
1176 1176 # timing is 4 times faster than the slowest timing or not.
1177 1177 if worst > 4 * best and best > 0 and worst > 1e-6:
@@ -58,7 +58,7 b' class OSMagics(Magics):'
58 58 @skip_doctest
59 59 def _isexec_POSIX(self, file):
60 60 """
61 Test for executible on a POSIX system
61 Test for executable on a POSIX system
62 62 """
63 63 if os.access(file.path, os.X_OK):
64 64 # will fail on maxOS if access is not X_OK
@@ -70,14 +70,14 b' class OSMagics(Magics):'
70 70 @skip_doctest
71 71 def _isexec_WIN(self, file):
72 72 """
73 Test for executible file on non POSIX system
73 Test for executable file on non POSIX system
74 74 """
75 75 return file.is_file() and self.execre.match(file.name) is not None
76 76
77 77 @skip_doctest
78 78 def isexec(self, file):
79 79 """
80 Test for executible file on non POSIX system
80 Test for executable file on non POSIX system
81 81 """
82 82 if self.is_posix:
83 83 return self._isexec_POSIX(file)
@@ -48,7 +48,7 b' class Test_magic_run_completer(unittest.TestCase):'
48 48 shutil.rmtree(self.BASETESTDIR)
49 49
50 50 def test_1(self):
51 """Test magic_run_completer, should match two alterntives
51 """Test magic_run_completer, should match two alternatives
52 52 """
53 53 event = MockEvent(u"%run a")
54 54 mockself = None
@@ -56,7 +56,7 b' class Test_magic_run_completer(unittest.TestCase):'
56 56 self.assertEqual(match, {u"a.py", u"aao.py", u"adir/"})
57 57
58 58 def test_2(self):
59 """Test magic_run_completer, should match one alterntive
59 """Test magic_run_completer, should match one alternative
60 60 """
61 61 event = MockEvent(u"%run aa")
62 62 mockself = None
@@ -102,7 +102,7 b' class Test_magic_run_completer_nonascii(unittest.TestCase):'
102 102
103 103 @onlyif_unicode_paths
104 104 def test_1(self):
105 """Test magic_run_completer, should match two alterntives
105 """Test magic_run_completer, should match two alternatives
106 106 """
107 107 event = MockEvent(u"%run a")
108 108 mockself = None
@@ -111,7 +111,7 b' class Test_magic_run_completer_nonascii(unittest.TestCase):'
111 111
112 112 @onlyif_unicode_paths
113 113 def test_2(self):
114 """Test magic_run_completer, should match one alterntive
114 """Test magic_run_completer, should match one alternative
115 115 """
116 116 event = MockEvent(u"%run aa")
117 117 mockself = None
@@ -82,7 +82,7 b' def test_interactivehooks_ast_modes():'
82 82 finally:
83 83 ip.ast_node_interactivity = saved_mode
84 84
85 def test_interactivehooks_ast_modes_semi_supress():
85 def test_interactivehooks_ast_modes_semi_suppress():
86 86 """
87 87 Test that ast nodes can be triggered with different modes and suppressed
88 88 by semicolon
@@ -566,7 +566,7 b' class TestSystemRaw(ExitCodeChecks):'
566 566
567 567 def setUp(self):
568 568 super().setUp()
569 self.sytem = ip.system_raw
569 self.system = ip.system_raw
570 570
571 571 @onlyif_unicode_paths
572 572 def test_1(self):
@@ -590,7 +590,7 b' class TestSystemPipedExitCode(ExitCodeChecks):'
590 590
591 591 def setUp(self):
592 592 super().setUp()
593 self.sytem = ip.system_piped
593 self.system = ip.system_piped
594 594
595 595 @skip_win32
596 596 def test_exit_code_ok(self):
@@ -914,7 +914,7 b' class TestSyntaxErrorTransformer(unittest.TestCase):'
914 914 ip.run_cell('3456')
915 915
916 916
917 class TestWarningSupression(unittest.TestCase):
917 class TestWarningSuppression(unittest.TestCase):
918 918 def test_warning_suppression(self):
919 919 ip.run_cell("import warnings")
920 920 try:
@@ -282,7 +282,7 b' def load_qt(api_options):'
282 282 Raises
283 283 ------
284 284 ImportError, if it isn't possible to import any requested
285 bindings (either becaues they aren't installed, or because
285 bindings (either because they aren't installed, or because
286 286 an incompatible library has already been installed)
287 287 """
288 288 loaders = {
@@ -271,7 +271,7 b' modules_reloading = {}'
271 271
272 272 def deep_reload_hook(m):
273 273 """Replacement for reload()."""
274 # Hardcode this one as it would raise a NotImplemeentedError from the
274 # Hardcode this one as it would raise a NotImplementedError from the
275 275 # bowels of Python and screw up the import machinery after.
276 276 # unlike other imports the `exclude` list already in place is not enough.
277 277
@@ -500,7 +500,7 b' class FileLinks(FileLink):'
500 500 substituted for the first and fname will be substituted for the
501 501 second
502 502 fp_format: string to use for formatting filepaths, must contain
503 exactly two "%s" and the dirname will be subsituted for the first
503 exactly two "%s" and the dirname will be substituted for the first
504 504 and fname will be substituted for the second
505 505 """
506 506 def f(dirname, fnames, included_suffixes=None):
@@ -1,6 +1,6 b''
1 1 # encoding: utf-8
2 2 """
3 Enable pygtk to be used interacive by setting PyOS_InputHook.
3 Enable pygtk to be used interactively by setting PyOS_InputHook.
4 4
5 5 Authors: Brian Granger
6 6 """
@@ -1,6 +1,6 b''
1 1 # encoding: utf-8
2 2 """
3 Enable Gtk3 to be used interacive by IPython.
3 Enable Gtk3 to be used interactively by IPython.
4 4
5 5 Authors: Thomi Richards
6 6 """
@@ -1,6 +1,6 b''
1 1 # encoding: utf-8
2 2 """
3 Enable pyglet to be used interacive by setting PyOS_InputHook.
3 Enable pyglet to be used interactively by setting PyOS_InputHook.
4 4
5 5 Authors
6 6 -------
@@ -1,7 +1,7 b''
1 1 # encoding: utf-8
2 2
3 3 """
4 Enable wxPython to be used interacive by setting PyOS_InputHook.
4 Enable wxPython to be used interactively by setting PyOS_InputHook.
5 5
6 6 Authors: Robin Dunn, Brian Granger, Ondrej Certik
7 7 """
@@ -52,8 +52,8 b' def test_instantiation_FileLink():'
52 52 if sys.version_info >= (3, 6):
53 53 fl = display.FileLink(pathlib.PurePath('example.txt'))
54 54
55 def test_warning_on_non_existant_path_FileLink():
56 """FileLink: Calling _repr_html_ on non-existant files returns a warning
55 def test_warning_on_non_existent_path_FileLink():
56 """FileLink: Calling _repr_html_ on non-existent files returns a warning
57 57 """
58 58 fl = display.FileLink('example.txt')
59 59 nt.assert_true(fl._repr_html_().startswith('Path (<tt>example.txt</tt>)'))
@@ -91,8 +91,8 b' def test_instantiation_FileLinks():'
91 91 """
92 92 fls = display.FileLinks('example')
93 93
94 def test_warning_on_non_existant_path_FileLinks():
95 """FileLinks: Calling _repr_html_ on non-existant files returns a warning
94 def test_warning_on_non_existent_path_FileLinks():
95 """FileLinks: Calling _repr_html_ on non-existent files returns a warning
96 96 """
97 97 fls = display.FileLinks('example')
98 98 nt.assert_true(fls._repr_html_().startswith('Path (<tt>example</tt>)'))
@@ -206,10 +206,10 b' from traitlets.config import Config'
206 206 from IPython import InteractiveShell
207 207 from IPython.core.profiledir import ProfileDir
208 208
209 use_matpltolib = False
209 use_matplotlib = False
210 210 try:
211 211 import matplotlib
212 use_matpltolib = True
212 use_matplotlib = True
213 213 except Exception:
214 214 pass
215 215
@@ -934,7 +934,7 b' class IPythonDirective(Directive):'
934 934 # EmbeddedSphinxShell is created, its interactive shell member
935 935 # is the same for each instance.
936 936
937 if mplbackend and 'matplotlib.backends' not in sys.modules and use_matpltolib:
937 if mplbackend and 'matplotlib.backends' not in sys.modules and use_matplotlib:
938 938 import matplotlib
939 939 matplotlib.use(mplbackend)
940 940
@@ -1065,7 +1065,7 b' def setup(app):'
1065 1065 # If the user sets this config value to `None`, then EmbeddedSphinxShell's
1066 1066 # __init__ method will treat it as [].
1067 1067 execlines = ['import numpy as np']
1068 if use_matpltolib:
1068 if use_matplotlib:
1069 1069 execlines.append('import matplotlib.pyplot as plt')
1070 1070 app.add_config_value('ipython_execlines', execlines, 'env')
1071 1071
@@ -1,4 +1,4 b''
1 """Enable wxPython to be used interacively in prompt_toolkit
1 """Enable wxPython to be used interactively in prompt_toolkit
2 2 """
3 3
4 4 import sys
@@ -120,7 +120,7 b' def test_line_at_cursor():'
120 120 nt.assert_equal(line, "pri")
121 121 nt.assert_equal(offset, 4)
122 122
123 def test_muliline_statement():
123 def test_multiline_statement():
124 124 cell = """a = (1,
125 125 3)
126 126
@@ -77,7 +77,7 b' Highlights of this release:'
77 77 in remote tasks, as well as providing better control for remote task IDs.
78 78
79 79 - New IPython Sphinx directive contributed by John Hunter. You can use this
80 directive to mark blocks in reSructuredText documents as containing IPython
80 directive to mark blocks in reStructuredText documents as containing IPython
81 81 syntax (including figures) and the will be executed during the build:
82 82
83 83 .. sourcecode:: ipython
@@ -155,7 +155,7 b' cycle from several institutions:'
155 155 .. __: http://modular.math.washington.edu/grants/compmath09
156 156
157 157 - Microsoft's team working on `Python Tools for Visual Studio`__ developed the
158 integraton of IPython into the Python plugin for Visual Studio 2010.
158 integratron of IPython into the Python plugin for Visual Studio 2010.
159 159
160 160 .. __: http://pytools.codeplex.com
161 161
@@ -33,7 +33,7 b' New features'
33 33
34 34 * A new, still experimental but highly functional, WX shell by Gael Varoquaux.
35 35 This work was sponsored by Enthought, and while it's still very new, it is
36 based on a more cleanly organized arhictecture of the various IPython
36 based on a more cleanly organized architecture of the various IPython
37 37 components. We will continue to develop this over the next few releases as a
38 38 model for GUI components that use IPython.
39 39
@@ -69,7 +69,7 b' New features'
69 69 method that has the same syntax as the built-in `map`. We have also defined
70 70 a `mapper` factory interface that creates objects that implement
71 71 :class:`IPython.kernel.mapper.IMapper` for different controllers. Both the
72 multiengine and task controller now have mapping capabilties.
72 multiengine and task controller now have mapping capabilities.
73 73
74 74 * The parallel function capabilities have been reworks. The major changes are
75 75 that i) there is now an `@parallel` magic that creates parallel functions,
@@ -341,7 +341,7 b' Backwards incompatible changes'
341 341 Python versions are now 2.7 and 3.3.
342 342 * The Transformer classes have been renamed to Preprocessor in nbconvert and
343 343 their ``call`` methods have been renamed to ``preprocess``.
344 * The ``call`` methods of nbconvert post-processsors have been renamed to
344 * The ``call`` methods of nbconvert post-processors have been renamed to
345 345 ``postprocess``.
346 346
347 347 * The module ``IPython.core.fakemodule`` has been removed.
@@ -142,8 +142,8 b' preserves prior behavior of normalizing the audio to the maximum possible range.'
142 142 Setting to `False` disables normalization.
143 143
144 144
145 Miscelanious
146 ------------
145 Miscellaneous
146 -------------
147 147
148 148 - Fix improper acceptation of ``return`` outside of functions. :ghpull:`11641`.
149 149 - Fixed PyQt 5.11 backwards incompatibility causing sip import failure.
@@ -1,3 +1,3 b''
1 # load extended setup modules for distuils
1 # load extended setup modules for distutils
2 2
3 3 from .install_data_ext import install_data_ext
General Comments 0
You need to be logged in to leave comments. Login now