##// END OF EJS Templates
Merge pull request #11542 from Carreau/local-scope...
Merge pull request #11542 from Carreau/local-scope Apply @needs_local_scope to cell magics.

File last commit:

r24869:a252070e
r24967:f0f6cd8b merge
Show More
__init__.py
10 lines | 284 B | text/x-python | PythonLexer
Thomas Spura
Unbundle of all external modules....
r3408 try:
Laurent Gautier
Naive fix for deprecation warning....
r24867 from numpy.testing import *
Laurent Gautier
Update __init__.py
r24869 from numpy.testing import dec
Paul Ivanov
make know failures report as 'K'...
r3511 from numpy.testing.noseclasses import KnownFailure
Thomas Spura
Unbundle of all external modules....
r3408 except ImportError:
Thomas Kluyver
Use explicit relative imports...
r13347 from ._decorators import *
MinRK
don't unconditionally import nose...
r3692 try:
Thomas Kluyver
Use explicit relative imports...
r13347 from ._numpy_testing_noseclasses import KnownFailure
MinRK
don't unconditionally import nose...
r3692 except ImportError:
pass