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
d901b915
Commit
d901b915
authored
Jul 11, 2009
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverted changes for #6459 (doesn't apply on 2.x)
parent
2bd17a60
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 @
d901b915
...
...
@@ -732,10 +732,10 @@ class build_ext(Command):
def
get_export_symbols
(
self
,
ext
):
"""Return the list of symbols that a shared extension has to
export. This either uses 'ext.export_symbols' or, if it's not
provided, "
PyInit_
" + module_name. Only relevant on Windows, where
the .pyd file (DLL) must export the module "
PyInit_
" function.
provided, "
init
" + module_name. Only relevant on Windows, where
the .pyd file (DLL) must export the module "
init
" function.
"""
initfunc_name
=
"
PyInit_
"
+
ext
.
name
.
split
(
'.'
)[
-
1
]
initfunc_name
=
"
init
"
+
ext
.
name
.
split
(
'.'
)[
-
1
]
if
initfunc_name
not
in
ext
.
export_symbols
:
ext
.
export_symbols
.
append
(
initfunc_name
)
return
ext
.
export_symbols
...
...
tests/test_build_ext.py
View file @
d901b915
...
...
@@ -299,7 +299,7 @@ class BuildExtTestCase(support.TempdirManager,
def
test_get_outputs
(
self
):
tmp_dir
=
self
.
mkdtemp
()
c_file
=
os
.
path
.
join
(
tmp_dir
,
'foo.c'
)
self
.
write_file
(
c_file
,
'void
PyI
nit_foo(void) {};
\
n
'
)
self
.
write_file
(
c_file
,
'void
i
nit_foo(void) {};
\
n
'
)
ext
=
Extension
(
'foo'
,
[
c_file
],
optional
=
False
)
dist
=
Distribution
({
'name'
:
'xx'
,
'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