Show More
parallelmagic.py
20 lines
| 617 B
| text/x-python
|
PythonLexer
|
r2312 | # encoding: utf-8 | ||
|
r4888 | """ | ||
============= | ||||
parallelmagic | ||||
============= | ||||
|
r7473 | Deprecated, parallel magics are no longer an extension. | ||
|
r4888 | """ | ||
|
r2312 | |||
#----------------------------------------------------------------------------- | ||||
|
r6955 | # Copyright (C) 2008 The IPython Development Team | ||
|
r2312 | # | ||
# Distributed under the terms of the BSD License. The full license is in | ||||
# the file COPYING, distributed as part of this software. | ||||
#----------------------------------------------------------------------------- | ||||
|
r7473 | from warnings import warn | ||
|
r2312 | |||
def load_ipython_extension(ip): | ||||
|
r7473 | warn("Parallel Magics are no longer defined in an extension", DeprecationWarning) | ||