Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e2c2c36

Browse files
committed
Fix typos
1 parent 2069edc commit e2c2c36

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

IPython/core/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def load_config_file(self, suppress_errors=IPYTHON_SUPPRESS_CONFIG_ERRORS):
293293
printed on screen. For testing, the suppress_errors option is set
294294
to False, so errors will make tests fail.
295295
296-
`supress_errors` default value is to be `None` in which case the
296+
`suppress_errors` default value is to be `None` in which case the
297297
behavior default to the one of `traitlets.Application`.
298298
299299
The default value can be set :

IPython/core/displayhook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def finish_displayhook(self):
252252
def __call__(self, result=None):
253253
"""Printing with history cache management.
254254
255-
This is invoked everytime the interpreter needs to print, and is
255+
This is invoked every time the interpreter needs to print, and is
256256
activated by setting the variable sys.displayhook to it.
257257
"""
258258
self.check_for_underscore()

IPython/core/page.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _detect_screen_size(screen_lines_def):
9696
# There is a bug in curses, where *sometimes* it fails to properly
9797
# initialize, and then after the endwin() call is made, the
9898
# terminal is left in an unusable state. Rather than trying to
99-
# check everytime for this (by requesting and comparing termios
99+
# check every time for this (by requesting and comparing termios
100100
# flags each time), we just save the initial terminal state and
101101
# unconditionally reset it every time. It's cheaper than making
102102
# the checks.

IPython/core/ultratb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
.. note::
4242
4343
The verbose mode print all variables in the stack, which means it can
44-
potentially leak sensitive information like access keys, or unencryted
44+
potentially leak sensitive information like access keys, or unencrypted
4545
password.
4646
4747
Installation instructions for VerboseTB::

IPython/extensions/sympyprinting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
As of SymPy 0.7.2, maintenance of this extension has moved to SymPy under
1515
sympy.interactive.ipythonprinting, any modifications to account for changes to
1616
SymPy should be submitted to SymPy rather than changed here. This module is
17-
maintained here for backwards compatablitiy with old SymPy versions.
17+
maintained here for backwards compatibility with old SymPy versions.
1818
1919
"""
2020
#-----------------------------------------------------------------------------

IPython/testing/plugin/ipdoctest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ def run(self, test, compileflags=None, out=None, clear_globs=True):
574574
# so that it can propagate user variables loaded by %run into
575575
# test.globs. We put them here into our modified %run as a function
576576
# attribute. Our new %run will then only make the namespace update
577-
# when called (rather than unconconditionally updating test.globs here
577+
# when called (rather than unconditionally updating test.globs here
578578
# for all examples, most of which won't be calling %run anyway).
579579
#_ip._ipdoctest_test_globs = test.globs
580580
#_ip._ipdoctest_test_filename = test.filename

docs/source/whatsnew/version0.11.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ reference docs.
264264
Refactoring
265265
-----------
266266

267-
As of this release, a signifiant portion of IPython has been refactored. This
267+
As of this release, a significant portion of IPython has been refactored. This
268268
refactoring is founded on a number of new abstractions. The main new classes
269269
that implement these abstractions are:
270270

examples/Embedding/embed_class_long.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def out_prompt_tokens(self):
8383
# messages. The IPython banner (which actually may contain initialization
8484
# messages) is available as get_ipython().banner in case you want it.
8585

86-
# InteractiveShellEmbed instances print the following information everytime they
86+
# InteractiveShellEmbed instances print the following information every time they
8787
# start:
8888

8989
# - A global startup banner.

0 commit comments

Comments
 (0)