Show More
@@ -293,7 +293,7 b' class BaseIPythonApplication(Application):' | |||
|
293 | 293 | printed on screen. For testing, the suppress_errors option is set |
|
294 | 294 | to False, so errors will make tests fail. |
|
295 | 295 | |
|
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 | |
|
297 | 297 | behavior default to the one of `traitlets.Application`. |
|
298 | 298 | |
|
299 | 299 | The default value can be set : |
@@ -252,7 +252,7 b' class DisplayHook(Configurable):' | |||
|
252 | 252 | def __call__(self, result=None): |
|
253 | 253 | """Printing with history cache management. |
|
254 | 254 | |
|
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 | |
|
256 | 256 | activated by setting the variable sys.displayhook to it. |
|
257 | 257 | """ |
|
258 | 258 | self.check_for_underscore() |
@@ -96,7 +96,7 b' def _detect_screen_size(screen_lines_def):' | |||
|
96 | 96 | # There is a bug in curses, where *sometimes* it fails to properly |
|
97 | 97 | # initialize, and then after the endwin() call is made, the |
|
98 | 98 | # 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 | |
|
100 | 100 | # flags each time), we just save the initial terminal state and |
|
101 | 101 | # unconditionally reset it every time. It's cheaper than making |
|
102 | 102 | # the checks. |
@@ -41,7 +41,7 b" Give it a shot--you'll love it or you'll hate it." | |||
|
41 | 41 | .. note:: |
|
42 | 42 | |
|
43 | 43 | 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 | |
|
45 | 45 | password. |
|
46 | 46 | |
|
47 | 47 | Installation instructions for VerboseTB:: |
@@ -14,7 +14,7 b' pretty-printed.' | |||
|
14 | 14 | As of SymPy 0.7.2, maintenance of this extension has moved to SymPy under |
|
15 | 15 | sympy.interactive.ipythonprinting, any modifications to account for changes to |
|
16 | 16 | SymPy should be submitted to SymPy rather than changed here. This module is |
|
17 |
maintained here for backwards compat |
|
|
17 | maintained here for backwards compatibility with old SymPy versions. | |
|
18 | 18 | |
|
19 | 19 | """ |
|
20 | 20 | #----------------------------------------------------------------------------- |
@@ -574,7 +574,7 b' class IPDocTestRunner(doctest.DocTestRunner,object):' | |||
|
574 | 574 | # so that it can propagate user variables loaded by %run into |
|
575 | 575 | # test.globs. We put them here into our modified %run as a function |
|
576 | 576 | # attribute. Our new %run will then only make the namespace update |
|
577 |
# when called (rather than uncon |
|
|
577 | # when called (rather than unconditionally updating test.globs here | |
|
578 | 578 | # for all examples, most of which won't be calling %run anyway). |
|
579 | 579 | #_ip._ipdoctest_test_globs = test.globs |
|
580 | 580 | #_ip._ipdoctest_test_filename = test.filename |
@@ -264,7 +264,7 b' reference docs.' | |||
|
264 | 264 | Refactoring |
|
265 | 265 | ----------- |
|
266 | 266 | |
|
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 | |
|
268 | 268 | refactoring is founded on a number of new abstractions. The main new classes |
|
269 | 269 | that implement these abstractions are: |
|
270 | 270 |
@@ -83,7 +83,7 b" print('\\nBack in caller program, moving along...\\n')" | |||
|
83 | 83 | # messages. The IPython banner (which actually may contain initialization |
|
84 | 84 | # messages) is available as get_ipython().banner in case you want it. |
|
85 | 85 | |
|
86 | # InteractiveShellEmbed instances print the following information everytime they | |
|
86 | # InteractiveShellEmbed instances print the following information every time they | |
|
87 | 87 | # start: |
|
88 | 88 | |
|
89 | 89 | # - A global startup banner. |
General Comments 0
You need to be logged in to leave comments.
Login now