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
304b8226
Commit
304b8226
authored
Jun 28, 2021
by
Golden Rockefeller
Committed by
GitHub
Jun 28, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make cythonize recompile .py files when their override .pxd file has changed (GH-4063)
parent
506cd5aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
218 additions
and
5 deletions
+218
-5
Cython/Build/Dependencies.py
Cython/Build/Dependencies.py
+6
-5
Cython/Build/Tests/TestRecythonize.py
Cython/Build/Tests/TestRecythonize.py
+212
-0
No files found.
Cython/Build/Dependencies.py
View file @
304b8226
...
...
@@ -534,7 +534,7 @@ class DependencyTree(object):
for
include
in
self
.
parse_dependencies
(
filename
)[
1
]:
include_path
=
join_path
(
os
.
path
.
dirname
(
filename
),
include
)
if
not
path_exists
(
include_path
):
include_path
=
self
.
context
.
find_include_file
(
include
,
Non
e
)
include_path
=
self
.
context
.
find_include_file
(
include
,
source_file_path
=
filenam
e
)
if
include_path
:
if
'.'
+
os
.
path
.
sep
in
include_path
:
include_path
=
os
.
path
.
normpath
(
include_path
)
...
...
@@ -588,17 +588,18 @@ class DependencyTree(object):
return
None
# FIXME: error?
module_path
.
pop
(
0
)
relative
=
'.'
.
join
(
package_path
+
module_path
)
pxd
=
self
.
context
.
find_pxd_file
(
relative
,
Non
e
)
pxd
=
self
.
context
.
find_pxd_file
(
relative
,
source_file_path
=
filenam
e
)
if
pxd
:
return
pxd
if
is_relative
:
return
None
# FIXME: error?
return
self
.
context
.
find_pxd_file
(
module
,
Non
e
)
return
self
.
context
.
find_pxd_file
(
module
,
source_file_path
=
filenam
e
)
@
cached_method
def
cimported_files
(
self
,
filename
):
if
filename
[
-
4
:]
==
'.pyx'
and
path_exists
(
filename
[:
-
4
]
+
'.pxd'
):
pxd_list
=
[
filename
[:
-
4
]
+
'.pxd'
]
filename_root
,
filename_ext
=
os
.
path
.
splitext
(
filename
)
if
filename_ext
in
(
'.pyx'
,
'.py'
)
and
path_exists
(
filename_root
+
'.pxd'
):
pxd_list
=
[
filename_root
+
'.pxd'
]
else
:
pxd_list
=
[]
# Cimports generates all possible combinations package.module
...
...
Cython/Build/Tests/TestRecythonize.py
0 → 100644
View file @
304b8226
import
shutil
import
os
import
tempfile
import
time
import
Cython.Build.Dependencies
import
Cython.Utils
from
Cython.TestUtils
import
CythonTest
def
fresh_cythonize
(
*
args
,
**
kwargs
):
Cython
.
Utils
.
clear_function_caches
()
Cython
.
Build
.
Dependencies
.
_dep_tree
=
None
# discard method caches
Cython
.
Build
.
Dependencies
.
cythonize
(
*
args
,
**
kwargs
)
class
TestRecythonize
(
CythonTest
):
def
setUp
(
self
):
CythonTest
.
setUp
(
self
)
self
.
temp_dir
=
(
tempfile
.
mkdtemp
(
prefix
=
'recythonize-test'
,
dir
=
'TEST_TMP'
if
os
.
path
.
isdir
(
'TEST_TMP'
)
else
None
)
)
def
tearDown
(
self
):
CythonTest
.
tearDown
(
self
)
shutil
.
rmtree
(
self
.
temp_dir
)
def
test_recythonize_pyx_on_pxd_change
(
self
):
src_dir
=
tempfile
.
mkdtemp
(
prefix
=
'src'
,
dir
=
self
.
temp_dir
)
a_pxd
=
os
.
path
.
join
(
src_dir
,
'a.pxd'
)
a_pyx
=
os
.
path
.
join
(
src_dir
,
'a.pyx'
)
a_c
=
os
.
path
.
join
(
src_dir
,
'a.c'
)
dep_tree
=
Cython
.
Build
.
Dependencies
.
create_dependency_tree
()
with
open
(
a_pxd
,
'w'
)
as
f
:
f
.
write
(
'cdef int value
\
n
'
)
with
open
(
a_pyx
,
'w'
)
as
f
:
f
.
write
(
'value = 1
\
n
'
)
# The dependencies for "a.pyx" are "a.pxd" and "a.pyx".
self
.
assertEqual
({
a_pxd
,
a_pyx
},
dep_tree
.
all_dependencies
(
a_pyx
))
# Cythonize to create a.c
fresh_cythonize
(
a_pyx
)
# Sleep to address coarse time-stamp precision.
time
.
sleep
(
1
)
with
open
(
a_c
)
as
f
:
a_c_contents1
=
f
.
read
()
with
open
(
a_pxd
,
'w'
)
as
f
:
f
.
write
(
'cdef double value
\
n
'
)
fresh_cythonize
(
a_pyx
)
with
open
(
a_c
)
as
f
:
a_c_contents2
=
f
.
read
()
self
.
assertTrue
(
"__pyx_v_1a_value = 1;"
in
a_c_contents1
)
self
.
assertFalse
(
"__pyx_v_1a_value = 1;"
in
a_c_contents2
)
self
.
assertTrue
(
"__pyx_v_1a_value = 1.0;"
in
a_c_contents2
)
self
.
assertFalse
(
"__pyx_v_1a_value = 1.0;"
in
a_c_contents1
)
def
test_recythonize_py_on_pxd_change
(
self
):
src_dir
=
tempfile
.
mkdtemp
(
prefix
=
'src'
,
dir
=
self
.
temp_dir
)
a_pxd
=
os
.
path
.
join
(
src_dir
,
'a.pxd'
)
a_py
=
os
.
path
.
join
(
src_dir
,
'a.py'
)
a_c
=
os
.
path
.
join
(
src_dir
,
'a.c'
)
dep_tree
=
Cython
.
Build
.
Dependencies
.
create_dependency_tree
()
with
open
(
a_pxd
,
'w'
)
as
f
:
f
.
write
(
'cdef int value
\
n
'
)
with
open
(
a_py
,
'w'
)
as
f
:
f
.
write
(
'value = 1
\
n
'
)
# The dependencies for "a.py" are "a.pxd" and "a.py".
self
.
assertEqual
({
a_pxd
,
a_py
},
dep_tree
.
all_dependencies
(
a_py
))
# Cythonize to create a.c
fresh_cythonize
(
a_py
)
# Sleep to address coarse time-stamp precision.
time
.
sleep
(
1
)
with
open
(
a_c
)
as
f
:
a_c_contents1
=
f
.
read
()
with
open
(
a_pxd
,
'w'
)
as
f
:
f
.
write
(
'cdef double value
\
n
'
)
fresh_cythonize
(
a_py
)
with
open
(
a_c
)
as
f
:
a_c_contents2
=
f
.
read
()
self
.
assertTrue
(
"__pyx_v_1a_value = 1;"
in
a_c_contents1
)
self
.
assertFalse
(
"__pyx_v_1a_value = 1;"
in
a_c_contents2
)
self
.
assertTrue
(
"__pyx_v_1a_value = 1.0;"
in
a_c_contents2
)
self
.
assertFalse
(
"__pyx_v_1a_value = 1.0;"
in
a_c_contents1
)
def
test_recythonize_pyx_on_dep_pxd_change
(
self
):
src_dir
=
tempfile
.
mkdtemp
(
prefix
=
'src'
,
dir
=
self
.
temp_dir
)
a_pxd
=
os
.
path
.
join
(
src_dir
,
'a.pxd'
)
a_pyx
=
os
.
path
.
join
(
src_dir
,
'a.pyx'
)
b_pyx
=
os
.
path
.
join
(
src_dir
,
'b.pyx'
)
b_c
=
os
.
path
.
join
(
src_dir
,
'b.c'
)
dep_tree
=
Cython
.
Build
.
Dependencies
.
create_dependency_tree
()
with
open
(
a_pxd
,
'w'
)
as
f
:
f
.
write
(
'cdef int value
\
n
'
)
with
open
(
a_pyx
,
'w'
)
as
f
:
f
.
write
(
'value = 1
\
n
'
)
with
open
(
b_pyx
,
'w'
)
as
f
:
f
.
write
(
'cimport a
\
n
'
+
'a.value = 2
\
n
'
)
# The dependencies for "b.pyx" are "a.pxd" and "b.pyx".
self
.
assertEqual
({
a_pxd
,
b_pyx
},
dep_tree
.
all_dependencies
(
b_pyx
))
# Cythonize to create b.c
fresh_cythonize
([
a_pyx
,
b_pyx
])
# Sleep to address coarse time-stamp precision.
time
.
sleep
(
1
)
with
open
(
b_c
)
as
f
:
b_c_contents1
=
f
.
read
()
with
open
(
a_pxd
,
'w'
)
as
f
:
f
.
write
(
'cdef double value
\
n
'
)
fresh_cythonize
([
a_pyx
,
b_pyx
])
with
open
(
b_c
)
as
f
:
b_c_contents2
=
f
.
read
()
self
.
assertTrue
(
"__pyx_v_1a_value = 2;"
in
b_c_contents1
)
self
.
assertFalse
(
"__pyx_v_1a_value = 2;"
in
b_c_contents2
)
self
.
assertTrue
(
"__pyx_v_1a_value = 2.0;"
in
b_c_contents2
)
self
.
assertFalse
(
"__pyx_v_1a_value = 2.0;"
in
b_c_contents1
)
def
test_recythonize_py_on_dep_pxd_change
(
self
):
src_dir
=
tempfile
.
mkdtemp
(
prefix
=
'src'
,
dir
=
self
.
temp_dir
)
a_pxd
=
os
.
path
.
join
(
src_dir
,
'a.pxd'
)
a_pyx
=
os
.
path
.
join
(
src_dir
,
'a.pyx'
)
b_pxd
=
os
.
path
.
join
(
src_dir
,
'b.pxd'
)
b_py
=
os
.
path
.
join
(
src_dir
,
'b.py'
)
b_c
=
os
.
path
.
join
(
src_dir
,
'b.c'
)
dep_tree
=
Cython
.
Build
.
Dependencies
.
create_dependency_tree
()
with
open
(
a_pxd
,
'w'
)
as
f
:
f
.
write
(
'cdef int value
\
n
'
)
with
open
(
a_pyx
,
'w'
)
as
f
:
f
.
write
(
'value = 1
\
n
'
)
with
open
(
b_pxd
,
'w'
)
as
f
:
f
.
write
(
'cimport a
\
n
'
)
with
open
(
b_py
,
'w'
)
as
f
:
f
.
write
(
'a.value = 2
\
n
'
)
# The dependencies for b.py are "a.pxd", "b.pxd" and "b.py".
self
.
assertEqual
({
a_pxd
,
b_pxd
,
b_py
},
dep_tree
.
all_dependencies
(
b_py
))
# Cythonize to create b.c
fresh_cythonize
([
a_pyx
,
b_py
])
# Sleep to address coarse time-stamp precision.
time
.
sleep
(
1
)
with
open
(
b_c
)
as
f
:
b_c_contents1
=
f
.
read
()
with
open
(
a_pxd
,
'w'
)
as
f
:
f
.
write
(
'cdef double value
\
n
'
)
fresh_cythonize
([
a_pyx
,
b_py
])
with
open
(
b_c
)
as
f
:
b_c_contents2
=
f
.
read
()
self
.
assertTrue
(
"__pyx_v_1a_value = 2;"
in
b_c_contents1
)
self
.
assertFalse
(
"__pyx_v_1a_value = 2;"
in
b_c_contents2
)
self
.
assertTrue
(
"__pyx_v_1a_value = 2.0;"
in
b_c_contents2
)
self
.
assertFalse
(
"__pyx_v_1a_value = 2.0;"
in
b_c_contents1
)
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