Show More
The requested changes are too big and content was truncated. Show full diff
@@ -227,6 +227,14 b' class InteractiveShellEmbed(InteractiveShell):' | |||||
227 | for var in local_varnames: |
|
227 | for var in local_varnames: | |
228 | delvar(var,None) |
|
228 | delvar(var,None) | |
229 |
|
229 | |||
|
230 | def set_completer_frame(self, frame=None): | |||
|
231 | if frame: | |||
|
232 | self.Completer.namespace = frame.f_locals | |||
|
233 | self.Completer.global_namespace = frame.f_globals | |||
|
234 | else: | |||
|
235 | self.Completer.namespace = self.user_ns | |||
|
236 | self.Completer.global_namespace = self.user_global_ns | |||
|
237 | ||||
230 |
|
238 | |||
231 | _embedded_shell = None |
|
239 | _embedded_shell = None | |
232 |
|
240 |
1 | NO CONTENT: modified file |
|
NO CONTENT: modified file | ||
The requested commit or file is too big and content was truncated. Show full diff |
General Comments 0
You need to be logged in to leave comments.
Login now