Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
2bd17a60
Commit
2bd17a60
authored
Jul 11, 2009
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed #6459: distutils.command.build_ext.get_export_symbols now uses 'PyInit'
parent
c7cb2d86
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
command/build_ext.py
command/build_ext.py
+3
-3
tests/test_build_ext.py
tests/test_build_ext.py
+1
-1
No files found.
command/build_ext.py
View file @
2bd17a60
...
@@ -732,10 +732,10 @@ class build_ext(Command):
...
@@ -732,10 +732,10 @@ class build_ext(Command):
def
get_export_symbols
(
self
,
ext
):
def
get_export_symbols
(
self
,
ext
):
"""Return the list of symbols that a shared extension has to
"""Return the list of symbols that a shared extension has to
export. This either uses 'ext.export_symbols' or, if it's not
export. This either uses 'ext.export_symbols' or, if it's not
provided, "
init
" + module_name. Only relevant on Windows, where
provided, "
PyInit_
" + module_name. Only relevant on Windows, where
the .pyd file (DLL) must export the module "
init
" function.
the .pyd file (DLL) must export the module "
PyInit_
" function.
"""
"""
initfunc_name
=
"
init
"
+
ext
.
name
.
split
(
'.'
)[
-
1
]
initfunc_name
=
"
PyInit_
"
+
ext
.
name
.
split
(
'.'
)[
-
1
]
if
initfunc_name
not
in
ext
.
export_symbols
:
if
initfunc_name
not
in
ext
.
export_symbols
:
ext
.
export_symbols
.
append
(
initfunc_name
)
ext
.
export_symbols
.
append
(
initfunc_name
)
return
ext
.
export_symbols
return
ext
.
export_symbols
...
...
tests/test_build_ext.py
View file @
2bd17a60
...
@@ -299,7 +299,7 @@ class BuildExtTestCase(support.TempdirManager,
...
@@ -299,7 +299,7 @@ class BuildExtTestCase(support.TempdirManager,
def
test_get_outputs
(
self
):
def
test_get_outputs
(
self
):
tmp_dir
=
self
.
mkdtemp
()
tmp_dir
=
self
.
mkdtemp
()
c_file
=
os
.
path
.
join
(
tmp_dir
,
'foo.c'
)
c_file
=
os
.
path
.
join
(
tmp_dir
,
'foo.c'
)
self
.
write_file
(
c_file
,
'void
init
foo(void) {};
\
n
'
)
self
.
write_file
(
c_file
,
'void
PyInit_
foo(void) {};
\
n
'
)
ext
=
Extension
(
'foo'
,
[
c_file
],
optional
=
False
)
ext
=
Extension
(
'foo'
,
[
c_file
],
optional
=
False
)
dist
=
Distribution
({
'name'
:
'xx'
,
dist
=
Distribution
({
'name'
:
'xx'
,
'ext_modules'
:
[
ext
]})
'ext_modules'
:
[
ext
]})
...
...
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