Show More
@@ -1,159 +1,161 b'' | |||
|
1 | 1 | # PYTHON_ARGCOMPLETE_OK |
|
2 | 2 | """ |
|
3 | 3 | IPython: tools for interactive and parallel computing in Python. |
|
4 | 4 | |
|
5 | 5 | https://ipython.org |
|
6 | 6 | """ |
|
7 | 7 | #----------------------------------------------------------------------------- |
|
8 | 8 | # Copyright (c) 2008-2011, IPython Development Team. |
|
9 | 9 | # Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu> |
|
10 | 10 | # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> |
|
11 | 11 | # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> |
|
12 | 12 | # |
|
13 | 13 | # Distributed under the terms of the Modified BSD License. |
|
14 | 14 | # |
|
15 | 15 | # The full license is in the file COPYING.txt, distributed with this software. |
|
16 | 16 | #----------------------------------------------------------------------------- |
|
17 | 17 | |
|
18 | 18 | #----------------------------------------------------------------------------- |
|
19 | 19 | # Imports |
|
20 | 20 | #----------------------------------------------------------------------------- |
|
21 | 21 | |
|
22 | 22 | import sys |
|
23 | 23 | |
|
24 | 24 | #----------------------------------------------------------------------------- |
|
25 | 25 | # Setup everything |
|
26 | 26 | #----------------------------------------------------------------------------- |
|
27 | 27 | |
|
28 | 28 | # Don't forget to also update setup.py when this changes! |
|
29 | 29 | if sys.version_info < (3, 8): |
|
30 | 30 | raise ImportError( |
|
31 | 31 | """ |
|
32 | 32 | IPython 8+ supports Python 3.8 and above, following NEP 29. |
|
33 | 33 | When using Python 2.7, please install IPython 5.x LTS Long Term Support version. |
|
34 | 34 | Python 3.3 and 3.4 were supported up to IPython 6.x. |
|
35 | 35 | Python 3.5 was supported with IPython 7.0 to 7.9. |
|
36 | 36 | Python 3.6 was supported with IPython up to 7.16. |
|
37 | 37 | Python 3.7 was still supported with the 7.x branch. |
|
38 | 38 | |
|
39 | 39 | See IPython `README.rst` file for more information: |
|
40 | 40 | |
|
41 | 41 | https://github.com/ipython/ipython/blob/main/README.rst |
|
42 | 42 | |
|
43 | 43 | """ |
|
44 | 44 | ) |
|
45 | 45 | |
|
46 | 46 | #----------------------------------------------------------------------------- |
|
47 | 47 | # Setup the top level names |
|
48 | 48 | #----------------------------------------------------------------------------- |
|
49 | 49 | |
|
50 | 50 | from .core.getipython import get_ipython |
|
51 | 51 | from .core import release |
|
52 | 52 | from .core.application import Application |
|
53 | 53 | from .terminal.embed import embed |
|
54 | 54 | |
|
55 | 55 | from .core.interactiveshell import InteractiveShell |
|
56 | 56 | from .utils.sysinfo import sys_info |
|
57 | 57 | from .utils.frame import extract_module_locals |
|
58 | 58 | |
|
59 | __all__ = ["start_ipython", "embed", "start_kernel", "embed_kernel"] | |
|
60 | ||
|
59 | 61 | # Release data |
|
60 | 62 | __author__ = '%s <%s>' % (release.author, release.author_email) |
|
61 | 63 | __license__ = release.license |
|
62 | 64 | __version__ = release.version |
|
63 | 65 | version_info = release.version_info |
|
64 | 66 | # list of CVEs that should have been patched in this release. |
|
65 | 67 | # this is informational and should not be relied upon. |
|
66 | 68 | __patched_cves__ = {"CVE-2022-21699", "CVE-2023-24816"} |
|
67 | 69 | |
|
68 | 70 | |
|
69 | 71 | def embed_kernel(module=None, local_ns=None, **kwargs): |
|
70 | 72 | """Embed and start an IPython kernel in a given scope. |
|
71 | 73 | |
|
72 | 74 | If you don't want the kernel to initialize the namespace |
|
73 | 75 | from the scope of the surrounding function, |
|
74 | 76 | and/or you want to load full IPython configuration, |
|
75 | 77 | you probably want `IPython.start_kernel()` instead. |
|
76 | 78 | |
|
77 | 79 | Parameters |
|
78 | 80 | ---------- |
|
79 | 81 | module : types.ModuleType, optional |
|
80 | 82 | The module to load into IPython globals (default: caller) |
|
81 | 83 | local_ns : dict, optional |
|
82 | 84 | The namespace to load into IPython user namespace (default: caller) |
|
83 | 85 | **kwargs : various, optional |
|
84 | 86 | Further keyword args are relayed to the IPKernelApp constructor, |
|
85 | 87 | such as `config`, a traitlets :class:`Config` object (see :ref:`configure_start_ipython`), |
|
86 | 88 | allowing configuration of the kernel (see :ref:`kernel_options`). Will only have an effect |
|
87 | 89 | on the first embed_kernel call for a given process. |
|
88 | 90 | """ |
|
89 | 91 | |
|
90 | 92 | (caller_module, caller_locals) = extract_module_locals(1) |
|
91 | 93 | if module is None: |
|
92 | 94 | module = caller_module |
|
93 | 95 | if local_ns is None: |
|
94 | 96 | local_ns = caller_locals |
|
95 | 97 | |
|
96 | 98 | # Only import .zmq when we really need it |
|
97 | 99 | from ipykernel.embed import embed_kernel as real_embed_kernel |
|
98 | 100 | real_embed_kernel(module=module, local_ns=local_ns, **kwargs) |
|
99 | 101 | |
|
100 | 102 | def start_ipython(argv=None, **kwargs): |
|
101 | 103 | """Launch a normal IPython instance (as opposed to embedded) |
|
102 | 104 | |
|
103 | 105 | `IPython.embed()` puts a shell in a particular calling scope, |
|
104 | 106 | such as a function or method for debugging purposes, |
|
105 | 107 | which is often not desirable. |
|
106 | 108 | |
|
107 | 109 | `start_ipython()` does full, regular IPython initialization, |
|
108 | 110 | including loading startup files, configuration, etc. |
|
109 | 111 | much of which is skipped by `embed()`. |
|
110 | 112 | |
|
111 | 113 | This is a public API method, and will survive implementation changes. |
|
112 | 114 | |
|
113 | 115 | Parameters |
|
114 | 116 | ---------- |
|
115 | 117 | argv : list or None, optional |
|
116 | 118 | If unspecified or None, IPython will parse command-line options from sys.argv. |
|
117 | 119 | To prevent any command-line parsing, pass an empty list: `argv=[]`. |
|
118 | 120 | user_ns : dict, optional |
|
119 | 121 | specify this dictionary to initialize the IPython user namespace with particular values. |
|
120 | 122 | **kwargs : various, optional |
|
121 | 123 | Any other kwargs will be passed to the Application constructor, |
|
122 | 124 | such as `config`, a traitlets :class:`Config` object (see :ref:`configure_start_ipython`), |
|
123 | 125 | allowing configuration of the instance (see :ref:`terminal_options`). |
|
124 | 126 | """ |
|
125 | 127 | from IPython.terminal.ipapp import launch_new_instance |
|
126 | 128 | return launch_new_instance(argv=argv, **kwargs) |
|
127 | 129 | |
|
128 | 130 | def start_kernel(argv=None, **kwargs): |
|
129 | 131 | """Launch a normal IPython kernel instance (as opposed to embedded) |
|
130 | 132 | |
|
131 | 133 | `IPython.embed_kernel()` puts a shell in a particular calling scope, |
|
132 | 134 | such as a function or method for debugging purposes, |
|
133 | 135 | which is often not desirable. |
|
134 | 136 | |
|
135 | 137 | `start_kernel()` does full, regular IPython initialization, |
|
136 | 138 | including loading startup files, configuration, etc. |
|
137 | 139 | much of which is skipped by `embed_kernel()`. |
|
138 | 140 | |
|
139 | 141 | Parameters |
|
140 | 142 | ---------- |
|
141 | 143 | argv : list or None, optional |
|
142 | 144 | If unspecified or None, IPython will parse command-line options from sys.argv. |
|
143 | 145 | To prevent any command-line parsing, pass an empty list: `argv=[]`. |
|
144 | 146 | user_ns : dict, optional |
|
145 | 147 | specify this dictionary to initialize the IPython user namespace with particular values. |
|
146 | 148 | **kwargs : various, optional |
|
147 | 149 | Any other kwargs will be passed to the Application constructor, |
|
148 | 150 | such as `config`, a traitlets :class:`Config` object (see :ref:`configure_start_ipython`), |
|
149 | 151 | allowing configuration of the kernel (see :ref:`kernel_options`). |
|
150 | 152 | """ |
|
151 | 153 | import warnings |
|
152 | 154 | |
|
153 | 155 | warnings.warn( |
|
154 | 156 | "start_kernel is deprecated since IPython 8.0, use from `ipykernel.kernelapp.launch_new_instance`", |
|
155 | 157 | DeprecationWarning, |
|
156 | 158 | stacklevel=2, |
|
157 | 159 | ) |
|
158 | 160 | from ipykernel.kernelapp import launch_new_instance |
|
159 | 161 | return launch_new_instance(argv=argv, **kwargs) |
@@ -1,420 +1,420 b'' | |||
|
1 | 1 | # encoding: utf-8 |
|
2 | 2 | """ |
|
3 | 3 | An embedded IPython shell. |
|
4 | 4 | """ |
|
5 | 5 | # Copyright (c) IPython Development Team. |
|
6 | 6 | # Distributed under the terms of the Modified BSD License. |
|
7 | 7 | |
|
8 | 8 | |
|
9 | 9 | import sys |
|
10 | 10 | import warnings |
|
11 | 11 | |
|
12 | 12 | from IPython.core import ultratb, compilerop |
|
13 | 13 | from IPython.core import magic_arguments |
|
14 | 14 | from IPython.core.magic import Magics, magics_class, line_magic |
|
15 | 15 | from IPython.core.interactiveshell import DummyMod, InteractiveShell |
|
16 | 16 | from IPython.terminal.interactiveshell import TerminalInteractiveShell |
|
17 | 17 | from IPython.terminal.ipapp import load_default_config |
|
18 | 18 | |
|
19 | 19 | from traitlets import Bool, CBool, Unicode |
|
20 | 20 | from IPython.utils.io import ask_yes_no |
|
21 | 21 | |
|
22 | 22 | from typing import Set |
|
23 | 23 | |
|
24 | 24 | class KillEmbedded(Exception):pass |
|
25 | 25 | |
|
26 | 26 | # kept for backward compatibility as IPython 6 was released with |
|
27 | 27 | # the typo. See https://github.com/ipython/ipython/pull/10706 |
|
28 | 28 | KillEmbeded = KillEmbedded |
|
29 | 29 | |
|
30 | 30 | # This is an additional magic that is exposed in embedded shells. |
|
31 | 31 | @magics_class |
|
32 | 32 | class EmbeddedMagics(Magics): |
|
33 | 33 | |
|
34 | 34 | @line_magic |
|
35 | 35 | @magic_arguments.magic_arguments() |
|
36 | 36 | @magic_arguments.argument('-i', '--instance', action='store_true', |
|
37 | 37 | help='Kill instance instead of call location') |
|
38 | 38 | @magic_arguments.argument('-x', '--exit', action='store_true', |
|
39 | 39 | help='Also exit the current session') |
|
40 | 40 | @magic_arguments.argument('-y', '--yes', action='store_true', |
|
41 | 41 | help='Do not ask confirmation') |
|
42 | 42 | def kill_embedded(self, parameter_s=''): |
|
43 | 43 | """%kill_embedded : deactivate for good the current embedded IPython |
|
44 | 44 | |
|
45 | 45 | This function (after asking for confirmation) sets an internal flag so |
|
46 | 46 | that an embedded IPython will never activate again for the given call |
|
47 | 47 | location. This is useful to permanently disable a shell that is being |
|
48 | 48 | called inside a loop: once you've figured out what you needed from it, |
|
49 | 49 | you may then kill it and the program will then continue to run without |
|
50 | 50 | the interactive shell interfering again. |
|
51 | 51 | |
|
52 | 52 | Kill Instance Option: |
|
53 | 53 | |
|
54 | 54 | If for some reasons you need to kill the location where the instance |
|
55 | 55 | is created and not called, for example if you create a single |
|
56 | 56 | instance in one place and debug in many locations, you can use the |
|
57 | 57 | ``--instance`` option to kill this specific instance. Like for the |
|
58 | 58 | ``call location`` killing an "instance" should work even if it is |
|
59 | 59 | recreated within a loop. |
|
60 | 60 | |
|
61 | 61 | .. note:: |
|
62 | 62 | |
|
63 | 63 | This was the default behavior before IPython 5.2 |
|
64 | 64 | |
|
65 | 65 | """ |
|
66 | 66 | |
|
67 | 67 | args = magic_arguments.parse_argstring(self.kill_embedded, parameter_s) |
|
68 | 68 | print(args) |
|
69 | 69 | if args.instance: |
|
70 | 70 | # let no ask |
|
71 | 71 | if not args.yes: |
|
72 | 72 | kill = ask_yes_no( |
|
73 | 73 | "Are you sure you want to kill this embedded instance? [y/N] ", 'n') |
|
74 | 74 | else: |
|
75 | 75 | kill = True |
|
76 | 76 | if kill: |
|
77 | 77 | self.shell._disable_init_location() |
|
78 | 78 | print("This embedded IPython instance will not reactivate anymore " |
|
79 | 79 | "once you exit.") |
|
80 | 80 | else: |
|
81 | 81 | if not args.yes: |
|
82 | 82 | kill = ask_yes_no( |
|
83 | 83 | "Are you sure you want to kill this embedded call_location? [y/N] ", 'n') |
|
84 | 84 | else: |
|
85 | 85 | kill = True |
|
86 | 86 | if kill: |
|
87 | 87 | self.shell.embedded_active = False |
|
88 | 88 | print("This embedded IPython call location will not reactivate anymore " |
|
89 | 89 | "once you exit.") |
|
90 | 90 | |
|
91 | 91 | if args.exit: |
|
92 | 92 | # Ask-exit does not really ask, it just set internals flags to exit |
|
93 | 93 | # on next loop. |
|
94 | 94 | self.shell.ask_exit() |
|
95 | 95 | |
|
96 | 96 | |
|
97 | 97 | @line_magic |
|
98 | 98 | def exit_raise(self, parameter_s=''): |
|
99 | 99 | """%exit_raise Make the current embedded kernel exit and raise and exception. |
|
100 | 100 | |
|
101 | 101 | This function sets an internal flag so that an embedded IPython will |
|
102 | 102 | raise a `IPython.terminal.embed.KillEmbedded` Exception on exit, and then exit the current I. This is |
|
103 | 103 | useful to permanently exit a loop that create IPython embed instance. |
|
104 | 104 | """ |
|
105 | 105 | |
|
106 | 106 | self.shell.should_raise = True |
|
107 | 107 | self.shell.ask_exit() |
|
108 | 108 | |
|
109 | 109 | |
|
110 | 110 | class _Sentinel: |
|
111 | 111 | def __init__(self, repr): |
|
112 | 112 | assert isinstance(repr, str) |
|
113 | 113 | self.repr = repr |
|
114 | 114 | |
|
115 | 115 | def __repr__(self): |
|
116 | 116 | return repr |
|
117 | 117 | |
|
118 | 118 | |
|
119 | 119 | class InteractiveShellEmbed(TerminalInteractiveShell): |
|
120 | 120 | |
|
121 | 121 | dummy_mode = Bool(False) |
|
122 | 122 | exit_msg = Unicode('') |
|
123 | 123 | embedded = CBool(True) |
|
124 | 124 | should_raise = CBool(False) |
|
125 | 125 | # Like the base class display_banner is not configurable, but here it |
|
126 | 126 | # is True by default. |
|
127 | 127 | display_banner = CBool(True) |
|
128 | 128 | exit_msg = Unicode() |
|
129 | 129 | |
|
130 | 130 | # When embedding, by default we don't change the terminal title |
|
131 | 131 | term_title = Bool(False, |
|
132 | 132 | help="Automatically set the terminal title" |
|
133 | 133 | ).tag(config=True) |
|
134 | 134 | |
|
135 | 135 | _inactive_locations: Set[str] = set() |
|
136 | 136 | |
|
137 | 137 | def _disable_init_location(self): |
|
138 | 138 | """Disable the current Instance creation location""" |
|
139 | 139 | InteractiveShellEmbed._inactive_locations.add(self._init_location_id) |
|
140 | 140 | |
|
141 | 141 | @property |
|
142 | 142 | def embedded_active(self): |
|
143 | 143 | return (self._call_location_id not in InteractiveShellEmbed._inactive_locations)\ |
|
144 | 144 | and (self._init_location_id not in InteractiveShellEmbed._inactive_locations) |
|
145 | 145 | |
|
146 | 146 | @embedded_active.setter |
|
147 | 147 | def embedded_active(self, value): |
|
148 | 148 | if value: |
|
149 | 149 | InteractiveShellEmbed._inactive_locations.discard( |
|
150 | 150 | self._call_location_id) |
|
151 | 151 | InteractiveShellEmbed._inactive_locations.discard( |
|
152 | 152 | self._init_location_id) |
|
153 | 153 | else: |
|
154 | 154 | InteractiveShellEmbed._inactive_locations.add( |
|
155 | 155 | self._call_location_id) |
|
156 | 156 | |
|
157 | 157 | def __init__(self, **kw): |
|
158 | 158 | assert ( |
|
159 | 159 | "user_global_ns" not in kw |
|
160 | 160 | ), "Key word argument `user_global_ns` has been replaced by `user_module` since IPython 4.0." |
|
161 | 161 | |
|
162 | 162 | clid = kw.pop('_init_location_id', None) |
|
163 | 163 | if not clid: |
|
164 | 164 | frame = sys._getframe(1) |
|
165 | 165 | clid = '%s:%s' % (frame.f_code.co_filename, frame.f_lineno) |
|
166 | 166 | self._init_location_id = clid |
|
167 | 167 | |
|
168 | 168 | super(InteractiveShellEmbed,self).__init__(**kw) |
|
169 | 169 | |
|
170 | 170 | # don't use the ipython crash handler so that user exceptions aren't |
|
171 | 171 | # trapped |
|
172 | 172 | sys.excepthook = ultratb.FormattedTB(color_scheme=self.colors, |
|
173 | 173 | mode=self.xmode, |
|
174 | 174 | call_pdb=self.pdb) |
|
175 | 175 | |
|
176 | 176 | def init_sys_modules(self): |
|
177 | 177 | """ |
|
178 | 178 | Explicitly overwrite :mod:`IPython.core.interactiveshell` to do nothing. |
|
179 | 179 | """ |
|
180 | 180 | pass |
|
181 | 181 | |
|
182 | 182 | def init_magics(self): |
|
183 | 183 | super(InteractiveShellEmbed, self).init_magics() |
|
184 | 184 | self.register_magics(EmbeddedMagics) |
|
185 | 185 | |
|
186 | 186 | def __call__( |
|
187 | 187 | self, |
|
188 | 188 | header="", |
|
189 | 189 | local_ns=None, |
|
190 | 190 | module=None, |
|
191 | 191 | dummy=None, |
|
192 | 192 | stack_depth=1, |
|
193 | 193 | compile_flags=None, |
|
194 | 194 | **kw |
|
195 | 195 | ): |
|
196 | 196 | """Activate the interactive interpreter. |
|
197 | 197 | |
|
198 | 198 | __call__(self,header='',local_ns=None,module=None,dummy=None) -> Start |
|
199 | 199 | the interpreter shell with the given local and global namespaces, and |
|
200 | 200 | optionally print a header string at startup. |
|
201 | 201 | |
|
202 | 202 | The shell can be globally activated/deactivated using the |
|
203 | 203 | dummy_mode attribute. This allows you to turn off a shell used |
|
204 | 204 | for debugging globally. |
|
205 | 205 | |
|
206 | 206 | However, *each* time you call the shell you can override the current |
|
207 | 207 | state of dummy_mode with the optional keyword parameter 'dummy'. For |
|
208 | 208 | example, if you set dummy mode on with IPShell.dummy_mode = True, you |
|
209 | 209 | can still have a specific call work by making it as IPShell(dummy=False). |
|
210 | 210 | """ |
|
211 | 211 | |
|
212 | 212 | # we are called, set the underlying interactiveshell not to exit. |
|
213 | 213 | self.keep_running = True |
|
214 | 214 | |
|
215 | 215 | # If the user has turned it off, go away |
|
216 | 216 | clid = kw.pop('_call_location_id', None) |
|
217 | 217 | if not clid: |
|
218 | 218 | frame = sys._getframe(1) |
|
219 | 219 | clid = '%s:%s' % (frame.f_code.co_filename, frame.f_lineno) |
|
220 | 220 | self._call_location_id = clid |
|
221 | 221 | |
|
222 | 222 | if not self.embedded_active: |
|
223 | 223 | return |
|
224 | 224 | |
|
225 | 225 | # Normal exits from interactive mode set this flag, so the shell can't |
|
226 | 226 | # re-enter (it checks this variable at the start of interactive mode). |
|
227 | 227 | self.exit_now = False |
|
228 | 228 | |
|
229 | 229 | # Allow the dummy parameter to override the global __dummy_mode |
|
230 | 230 | if dummy or (dummy != 0 and self.dummy_mode): |
|
231 | 231 | return |
|
232 | 232 | |
|
233 | 233 | # self.banner is auto computed |
|
234 | 234 | if header: |
|
235 | 235 | self.old_banner2 = self.banner2 |
|
236 | 236 | self.banner2 = self.banner2 + '\n' + header + '\n' |
|
237 | 237 | else: |
|
238 | 238 | self.old_banner2 = '' |
|
239 | 239 | |
|
240 | 240 | if self.display_banner: |
|
241 | 241 | self.show_banner() |
|
242 | 242 | |
|
243 | 243 | # Call the embedding code with a stack depth of 1 so it can skip over |
|
244 | 244 | # our call and get the original caller's namespaces. |
|
245 | 245 | self.mainloop( |
|
246 | 246 | local_ns, module, stack_depth=stack_depth, compile_flags=compile_flags |
|
247 | 247 | ) |
|
248 | 248 | |
|
249 | 249 | self.banner2 = self.old_banner2 |
|
250 | 250 | |
|
251 | 251 | if self.exit_msg is not None: |
|
252 | 252 | print(self.exit_msg) |
|
253 | 253 | |
|
254 | 254 | if self.should_raise: |
|
255 | 255 | raise KillEmbedded('Embedded IPython raising error, as user requested.') |
|
256 | 256 | |
|
257 | 257 | def mainloop( |
|
258 | 258 | self, |
|
259 | 259 | local_ns=None, |
|
260 | 260 | module=None, |
|
261 | 261 | stack_depth=0, |
|
262 | 262 | compile_flags=None, |
|
263 | 263 | ): |
|
264 | 264 | """Embeds IPython into a running python program. |
|
265 | 265 | |
|
266 | 266 | Parameters |
|
267 | 267 | ---------- |
|
268 | 268 | local_ns, module |
|
269 | 269 | Working local namespace (a dict) and module (a module or similar |
|
270 | 270 | object). If given as None, they are automatically taken from the scope |
|
271 | 271 | where the shell was called, so that program variables become visible. |
|
272 | 272 | stack_depth : int |
|
273 | 273 | How many levels in the stack to go to looking for namespaces (when |
|
274 | 274 | local_ns or module is None). This allows an intermediate caller to |
|
275 | 275 | make sure that this function gets the namespace from the intended |
|
276 | 276 | level in the stack. By default (0) it will get its locals and globals |
|
277 | 277 | from the immediate caller. |
|
278 | 278 | compile_flags |
|
279 | 279 | A bit field identifying the __future__ features |
|
280 | 280 | that are enabled, as passed to the builtin :func:`compile` function. |
|
281 | 281 | If given as None, they are automatically taken from the scope where |
|
282 | 282 | the shell was called. |
|
283 | 283 | |
|
284 | 284 | """ |
|
285 | 285 | |
|
286 | 286 | # Get locals and globals from caller |
|
287 | 287 | if ((local_ns is None or module is None or compile_flags is None) |
|
288 | 288 | and self.default_user_namespaces): |
|
289 | 289 | call_frame = sys._getframe(stack_depth).f_back |
|
290 | 290 | |
|
291 | 291 | if local_ns is None: |
|
292 | 292 | local_ns = call_frame.f_locals |
|
293 | 293 | if module is None: |
|
294 | 294 | global_ns = call_frame.f_globals |
|
295 | 295 | try: |
|
296 | 296 | module = sys.modules[global_ns['__name__']] |
|
297 | 297 | except KeyError: |
|
298 | 298 | warnings.warn("Failed to get module %s" % \ |
|
299 | 299 | global_ns.get('__name__', 'unknown module') |
|
300 | 300 | ) |
|
301 | 301 | module = DummyMod() |
|
302 | 302 | module.__dict__ = global_ns |
|
303 | 303 | if compile_flags is None: |
|
304 | 304 | compile_flags = (call_frame.f_code.co_flags & |
|
305 | 305 | compilerop.PyCF_MASK) |
|
306 | 306 | |
|
307 | 307 | # Save original namespace and module so we can restore them after |
|
308 | 308 | # embedding; otherwise the shell doesn't shut down correctly. |
|
309 | 309 | orig_user_module = self.user_module |
|
310 | 310 | orig_user_ns = self.user_ns |
|
311 | 311 | orig_compile_flags = self.compile.flags |
|
312 | 312 | |
|
313 | 313 | # Update namespaces and fire up interpreter |
|
314 | 314 | |
|
315 | 315 | # The global one is easy, we can just throw it in |
|
316 | 316 | if module is not None: |
|
317 | 317 | self.user_module = module |
|
318 | 318 | |
|
319 | 319 | # But the user/local one is tricky: ipython needs it to store internal |
|
320 | 320 | # data, but we also need the locals. We'll throw our hidden variables |
|
321 | 321 | # like _ih and get_ipython() into the local namespace, but delete them |
|
322 | 322 | # later. |
|
323 | 323 | if local_ns is not None: |
|
324 | 324 | reentrant_local_ns = {k: v for (k, v) in local_ns.items() if k not in self.user_ns_hidden.keys()} |
|
325 | 325 | self.user_ns = reentrant_local_ns |
|
326 | 326 | self.init_user_ns() |
|
327 | 327 | |
|
328 | 328 | # Compiler flags |
|
329 | 329 | if compile_flags is not None: |
|
330 | 330 | self.compile.flags = compile_flags |
|
331 | 331 | |
|
332 | 332 | # make sure the tab-completer has the correct frame information, so it |
|
333 | 333 | # actually completes using the frame's locals/globals |
|
334 | 334 | self.set_completer_frame() |
|
335 | 335 | |
|
336 | 336 | with self.builtin_trap, self.display_trap: |
|
337 | 337 | self.interact() |
|
338 | 338 | |
|
339 | 339 | # now, purge out the local namespace of IPython's hidden variables. |
|
340 | 340 | if local_ns is not None: |
|
341 | 341 | local_ns.update({k: v for (k, v) in self.user_ns.items() if k not in self.user_ns_hidden.keys()}) |
|
342 | 342 | |
|
343 | 343 | |
|
344 | 344 | # Restore original namespace so shell can shut down when we exit. |
|
345 | 345 | self.user_module = orig_user_module |
|
346 | 346 | self.user_ns = orig_user_ns |
|
347 | 347 | self.compile.flags = orig_compile_flags |
|
348 | 348 | |
|
349 | 349 | |
|
350 | 350 | def embed(*, header="", compile_flags=None, **kwargs): |
|
351 | 351 | """Call this to embed IPython at the current point in your program. |
|
352 | 352 | |
|
353 |
The first invocation of this will create a |
|
|
353 | The first invocation of this will create a :class:`terminal.embed.InteractiveShellEmbed` | |
|
354 | 354 | instance and then call it. Consecutive calls just call the already |
|
355 | 355 | created instance. |
|
356 | 356 | |
|
357 | 357 | If you don't want the kernel to initialize the namespace |
|
358 | 358 | from the scope of the surrounding function, |
|
359 | 359 | and/or you want to load full IPython configuration, |
|
360 | 360 | you probably want `IPython.start_ipython()` instead. |
|
361 | 361 | |
|
362 | 362 | Here is a simple example:: |
|
363 | 363 | |
|
364 | 364 | from IPython import embed |
|
365 | 365 | a = 10 |
|
366 | 366 | b = 20 |
|
367 | 367 | embed(header='First time') |
|
368 | 368 | c = 30 |
|
369 | 369 | d = 40 |
|
370 | 370 | embed() |
|
371 | 371 | |
|
372 | 372 | Parameters |
|
373 | 373 | ---------- |
|
374 | 374 | |
|
375 | 375 | header : str |
|
376 | 376 | Optional header string to print at startup. |
|
377 | 377 | compile_flags |
|
378 | Passed to the `compile_flags` parameter of :py:meth:`InteractiveShellEmbed.mainloop()`, | |
|
379 | which is called when the :class:`InteractiveShellEmbed` instance is called. | |
|
378 | Passed to the `compile_flags` parameter of :py:meth:`terminal.embed.InteractiveShellEmbed.mainloop()`, | |
|
379 | which is called when the :class:`terminal.embed.InteractiveShellEmbed` instance is called. | |
|
380 | 380 | **kwargs : various, optional |
|
381 | Any other kwargs will be passed to the :class:`InteractiveShellEmbed` constructor. | |
|
381 | Any other kwargs will be passed to the :class:`terminal.embed.InteractiveShellEmbed` constructor. | |
|
382 | 382 | Full customization can be done by passing a traitlets :class:`Config` in as the |
|
383 | 383 | `config` argument (see :ref:`configure_start_ipython` and :ref:`terminal_options`). |
|
384 | 384 | """ |
|
385 | 385 | config = kwargs.get('config') |
|
386 | 386 | if config is None: |
|
387 | 387 | config = load_default_config() |
|
388 | 388 | config.InteractiveShellEmbed = config.TerminalInteractiveShell |
|
389 | 389 | kwargs['config'] = config |
|
390 | 390 | using = kwargs.get('using', 'sync') |
|
391 | 391 | if using : |
|
392 | 392 | kwargs['config'].update({'TerminalInteractiveShell':{'loop_runner':using, 'colors':'NoColor', 'autoawait': using!='sync'}}) |
|
393 | 393 | #save ps1/ps2 if defined |
|
394 | 394 | ps1 = None |
|
395 | 395 | ps2 = None |
|
396 | 396 | try: |
|
397 | 397 | ps1 = sys.ps1 |
|
398 | 398 | ps2 = sys.ps2 |
|
399 | 399 | except AttributeError: |
|
400 | 400 | pass |
|
401 | 401 | #save previous instance |
|
402 | 402 | saved_shell_instance = InteractiveShell._instance |
|
403 | 403 | if saved_shell_instance is not None: |
|
404 | 404 | cls = type(saved_shell_instance) |
|
405 | 405 | cls.clear_instance() |
|
406 | 406 | frame = sys._getframe(1) |
|
407 | 407 | shell = InteractiveShellEmbed.instance(_init_location_id='%s:%s' % ( |
|
408 | 408 | frame.f_code.co_filename, frame.f_lineno), **kwargs) |
|
409 | 409 | shell(header=header, stack_depth=2, compile_flags=compile_flags, |
|
410 | 410 | _call_location_id='%s:%s' % (frame.f_code.co_filename, frame.f_lineno)) |
|
411 | 411 | InteractiveShellEmbed.clear_instance() |
|
412 | 412 | #restore previous instance |
|
413 | 413 | if saved_shell_instance is not None: |
|
414 | 414 | cls = type(saved_shell_instance) |
|
415 | 415 | cls.clear_instance() |
|
416 | 416 | for subclass in cls._walk_mro(): |
|
417 | 417 | subclass._instance = saved_shell_instance |
|
418 | 418 | if ps1 is not None: |
|
419 | 419 | sys.ps1 = ps1 |
|
420 | 420 | sys.ps2 = ps2 |
@@ -1,80 +1,83 b'' | |||
|
1 | 1 | #!/usr/bin/env python |
|
2 | 2 | """Script to auto-generate our API docs. |
|
3 | 3 | """ |
|
4 | 4 | |
|
5 | 5 | import os |
|
6 | 6 | import sys |
|
7 | 7 | |
|
8 | 8 | pjoin = os.path.join |
|
9 | 9 | |
|
10 | 10 | here = os.path.abspath(os.path.dirname(__file__)) |
|
11 | 11 | sys.path.append(pjoin(os.path.abspath(here), 'sphinxext')) |
|
12 | 12 | |
|
13 | 13 | from apigen import ApiDocWriter |
|
14 | 14 | |
|
15 | 15 | source = pjoin(here, 'source') |
|
16 | 16 | |
|
17 | 17 | #***************************************************************************** |
|
18 | 18 | if __name__ == '__main__': |
|
19 | 19 | package = 'IPython' |
|
20 | 20 | outdir = pjoin(source, 'api', 'generated') |
|
21 | 21 | docwriter = ApiDocWriter(package,rst_extension='.rst') |
|
22 | 22 | # You have to escape the . here because . is a special char for regexps. |
|
23 | 23 | # You must do make clean if you change this! |
|
24 | 24 | docwriter.package_skip_patterns += [r'\.external$', |
|
25 | 25 | # Extensions are documented elsewhere. |
|
26 | 26 | r'\.extensions', |
|
27 | 27 | # Magics are documented separately |
|
28 | 28 | r'\.core\.magics', |
|
29 | 29 | # This isn't API |
|
30 | 30 | r'\.sphinxext', |
|
31 | 31 | # Shims |
|
32 | 32 | r'\.kernel', |
|
33 | 33 | r'\.terminal\.pt_inputhooks', |
|
34 | 34 | ] |
|
35 | 35 | |
|
36 | 36 | # The inputhook* modules often cause problems on import, such as trying to |
|
37 | 37 | # load incompatible Qt bindings. It's easiest to leave them all out. The |
|
38 | 38 | docwriter.module_skip_patterns += [ |
|
39 | 39 | r"\.lib\.inputhook.+", |
|
40 | 40 | r"\.ipdoctest", |
|
41 | 41 | r"\.testing\.plugin", |
|
42 | 42 | # Backwards compat import for lib.lexers |
|
43 | 43 | r"\.nbconvert\.utils\.lexers", |
|
44 | 44 | # We document this manually. |
|
45 | 45 | r"\.utils\.py3compat", |
|
46 | 46 | # These are exposed in display |
|
47 | 47 | r"\.core\.display", |
|
48 | 48 | r"\.lib\.display", |
|
49 | 49 | # Shims |
|
50 | 50 | r"\.config", |
|
51 | 51 | r"\.consoleapp", |
|
52 | 52 | r"\.frontend$", |
|
53 | 53 | r"\.html", |
|
54 | 54 | r"\.nbconvert", |
|
55 | 55 | r"\.nbformat", |
|
56 | 56 | r"\.parallel", |
|
57 | 57 | r"\.qt", |
|
58 | 58 | # this is deprecated. |
|
59 | 59 | r"\.utils\.version", |
|
60 | 60 | # Private APIs (there should be a lot more here) |
|
61 | 61 | r"\.terminal\.ptutils", |
|
62 | 62 | ] |
|
63 | 63 | # main API is in the inputhook module, which is documented. |
|
64 | 64 | |
|
65 | 65 | # These modules import functions and classes from other places to expose |
|
66 | 66 | # them as part of the public API. They must have __all__ defined. The |
|
67 | 67 | # non-API modules they import from should be excluded by the skip patterns |
|
68 | 68 | # above. |
|
69 |
docwriter.names_from__all__.update( |
|
|
70 | 'IPython.display', | |
|
71 | }) | |
|
72 | ||
|
69 | docwriter.names_from__all__.update( | |
|
70 | { | |
|
71 | "IPython", | |
|
72 | "IPython.display", | |
|
73 | } | |
|
74 | ) | |
|
75 | ||
|
73 | 76 | # Now, generate the outputs |
|
74 | 77 | docwriter.write_api_docs(outdir) |
|
75 | 78 | # Write index with .txt extension - we can include it, but Sphinx won't try |
|
76 | 79 | # to compile it |
|
77 | 80 | docwriter.write_index(outdir, 'gen.txt', |
|
78 | 81 | relative_to = pjoin(source, 'api') |
|
79 | 82 | ) |
|
80 | 83 | print ('%d files written' % len(docwriter.written_modules)) |
General Comments 0
You need to be logged in to leave comments.
Login now