##// END OF EJS Templates
mention that `ipython notebook --pylab` will be disabled
MinRK -
Show More
@@ -523,7 +523,8 b' class NotebookApp(BaseIPythonApplication):'
523 self.kernel_argv = swallow_argv(self.argv, notebook_aliases, notebook_flags)
523 self.kernel_argv = swallow_argv(self.argv, notebook_aliases, notebook_flags)
524 if any(arg.startswith(u'--pylab') for arg in self.kernel_argv):
524 if any(arg.startswith(u'--pylab') for arg in self.kernel_argv):
525 self.log.warn('\n '.join([
525 self.log.warn('\n '.join([
526 "Starting all kernels in pylab mode is not recommended.",
526 "Starting all kernels in pylab mode is not recommended,",
527 "and will be disabled in a future release.",
527 "Please use the %matplotlib magic to enable matplotlib instead.",
528 "Please use the %matplotlib magic to enable matplotlib instead.",
528 "pylab implies many imports, which can have confusing side effects",
529 "pylab implies many imports, which can have confusing side effects",
529 "and harm the reproducibility of your notebooks.",
530 "and harm the reproducibility of your notebooks.",
General Comments 0
You need to be logged in to leave comments. Login now