##// END OF EJS Templates
respect `pylab_import_all` when `--pylab` specified at the command-line...
MinRK -
Show More
@@ -217,7 +217,7 b' class InteractiveShellApp(Configurable):'
217 enable = False
217 enable = False
218 shell = self.shell
218 shell = self.shell
219 if self.pylab:
219 if self.pylab:
220 enable = shell.enable_pylab
220 enable = lambda key: shell.enable_pylab(key, import_all=self.pylab_import_all)
221 key = self.pylab
221 key = self.pylab
222 elif self.matplotlib:
222 elif self.matplotlib:
223 enable = shell.enable_matplotlib
223 enable = shell.enable_matplotlib
General Comments 0
You need to be logged in to leave comments. Login now