Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
68e8117a
Commit
68e8117a
authored
Mar 14, 2017
by
Robert Bradshaw
Committed by
GitHub
Mar 14, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1625 from syrte/master
Let IPython magic only import things in `"__all__"`
parents
af4737d7
350f462a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
20 deletions
+29
-20
Cython/Build/IpythonMagic.py
Cython/Build/IpythonMagic.py
+29
-20
No files found.
Cython/Build/IpythonMagic.py
View file @
68e8117a
...
...
@@ -87,15 +87,24 @@ from .Dependencies import cythonize
class
CythonMagics
(
Magics
):
def
__init__
(
self
,
shell
):
super
(
CythonMagics
,
self
).
__init__
(
shell
)
super
(
CythonMagics
,
self
).
__init__
(
shell
)
self
.
_reloads
=
{}
self
.
_code_cache
=
{}
self
.
_pyximport_installed
=
False
def
_import_all
(
self
,
module
):
for
k
,
v
in
module
.
__dict__
.
items
():
if
not
k
.
startswith
(
'__'
):
self
.
shell
.
push
({
k
:
v
})
mdict
=
module
.
__dict__
if
'__all__'
in
mdict
:
keys
=
mdict
[
'__all__'
]
else
:
keys
=
[
k
for
k
in
mdict
if
not
k
.
startswith
(
'_'
)]
for
k
in
keys
:
try
:
self
.
shell
.
push
({
k
:
mdict
[
k
]})
except
KeyError
:
msg
=
"'module' object has no attribute '%s'"
%
k
raise
AttributeError
(
msg
)
@
cell_magic
def
cython_inline
(
self
,
line
,
cell
):
...
...
@@ -228,7 +237,7 @@ class CythonMagics(Magics):
...
"""
args
=
magic_arguments
.
parse_argstring
(
self
.
cython
,
line
)
code
=
cell
if
cell
.
endswith
(
'
\
n
'
)
else
cell
+
'
\
n
'
code
=
cell
if
cell
.
endswith
(
'
\
n
'
)
else
cell
+
'
\
n
'
lib_dir
=
os
.
path
.
join
(
get_ipython_cache_dir
(),
'cython'
)
quiet
=
True
key
=
code
,
line
,
sys
.
version_info
,
sys
.
executable
,
cython_version
...
...
@@ -266,14 +275,14 @@ class CythonMagics(Magics):
with
io
.
open
(
pyx_file
,
'w'
,
encoding
=
'utf-8'
)
as
f
:
f
.
write
(
code
)
extension
=
Extension
(
name
=
module_name
,
sources
=
[
pyx_file
]
+
c_src_files
,
include_dirs
=
c_include_dirs
,
library_dirs
=
args
.
library_dirs
,
extra_compile_args
=
args
.
compile_args
,
extra_link_args
=
args
.
link_args
,
libraries
=
args
.
lib
,
language
=
'c++'
if
args
.
cplus
else
'c'
,
name
=
module_name
,
sources
=
[
pyx_file
]
+
c_src_files
,
include_dirs
=
c_include_dirs
,
library_dirs
=
args
.
library_dirs
,
extra_compile_args
=
args
.
compile_args
,
extra_link_args
=
args
.
link_args
,
libraries
=
args
.
lib
,
language
=
'c++'
if
args
.
cplus
else
'c'
,
)
build_extension
=
self
.
_get_build_extension
()
try
:
...
...
@@ -293,7 +302,7 @@ class CythonMagics(Magics):
if
not
have_module
:
build_extension
.
build_temp
=
os
.
path
.
dirname
(
pyx_file
)
build_extension
.
build_lib
=
lib_dir
build_extension
.
build_lib
=
lib_dir
build_extension
.
run
()
self
.
_code_cache
[
key
]
=
module_name
...
...
@@ -361,10 +370,10 @@ class CythonMagics(Magics):
return
html
__doc__
=
__doc__
.
format
(
# rST doesn't see the -+ flag as part of an option list, so we
# hide it from the module-level docstring.
CYTHON_DOC
=
dedent
(
CythonMagics
.
cython
.
__doc__
\
.
replace
(
'-+, --cplus'
,
'--cplus '
)),
CYTHON_INLINE_DOC
=
dedent
(
CythonMagics
.
cython_inline
.
__doc__
),
CYTHON_PYXIMPORT_DOC
=
dedent
(
CythonMagics
.
cython_pyximport
.
__doc__
),
# rST doesn't see the -+ flag as part of an option list, so we
# hide it from the module-level docstring.
CYTHON_DOC
=
dedent
(
CythonMagics
.
cython
.
__doc__
\
.
replace
(
'-+, --cplus'
,
'--cplus '
)),
CYTHON_INLINE_DOC
=
dedent
(
CythonMagics
.
cython_inline
.
__doc__
),
CYTHON_PYXIMPORT_DOC
=
dedent
(
CythonMagics
.
cython_pyximport
.
__doc__
),
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment