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
c896e861
Commit
c896e861
authored
Aug 17, 2017
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/release'
parents
91f2ad9f
3c970eed
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
3 deletions
+15
-3
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+4
-2
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+3
-0
Cython/Compiler/Tests/TestParseTreeTransforms.py
Cython/Compiler/Tests/TestParseTreeTransforms.py
+0
-1
tests/run/cpp_stl_vector.pyx
tests/run/cpp_stl_vector.pyx
+8
-0
No files found.
Cython/Compiler/PyrexTypes.py
View file @
c896e861
...
...
@@ -3461,7 +3461,8 @@ class CppClassType(CType):
})
from
.UtilityCode
import
CythonUtilityCode
env
.
use_utility_code
(
CythonUtilityCode
.
load
(
cls
.
replace
(
'unordered_'
,
''
)
+
".from_py"
,
"CppConvert.pyx"
,
context
=
context
))
cls
.
replace
(
'unordered_'
,
''
)
+
".from_py"
,
"CppConvert.pyx"
,
context
=
context
,
compiler_directives
=
env
.
directives
))
self
.
from_py_function
=
cname
return
True
...
...
@@ -3505,7 +3506,8 @@ class CppClassType(CType):
})
from
.UtilityCode
import
CythonUtilityCode
env
.
use_utility_code
(
CythonUtilityCode
.
load
(
cls
.
replace
(
'unordered_'
,
''
)
+
".to_py"
,
"CppConvert.pyx"
,
context
=
context
))
cls
.
replace
(
'unordered_'
,
''
)
+
".to_py"
,
"CppConvert.pyx"
,
context
=
context
,
compiler_directives
=
env
.
directives
))
self
.
to_py_function
=
cname
return
True
...
...
Cython/Compiler/Symtab.py
View file @
c896e861
...
...
@@ -445,6 +445,9 @@ class Scope(object):
if
self
.
is_cpp_class_scope
and
type
.
is_cfunction
and
old_type
.
is_cfunction
and
type
!=
old_type
:
# C++ method overrides are ok
pass
elif
self
.
is_cpp_class_scope
and
entries
[
name
].
is_inherited
:
# Likewise ignore inherited classes.
pass
elif
visibility
==
'extern'
:
warning
(
pos
,
"'%s' redeclared "
%
name
,
0
)
elif
visibility
!=
'ignore'
:
...
...
Cython/Compiler/Tests/TestParseTreeTransforms.py
View file @
c896e861
...
...
@@ -223,7 +223,6 @@ class TestDebugTransform(DebuggerTestCase):
# the xpath of the standard ElementTree is primitive, don't use
# anything fancy
L
=
list
(
t
.
find
(
'/Module/Globals'
))
# assertTrue is retarded, use the normal assert statement
assert
L
xml_globals
=
dict
((
e
.
attrib
[
'name'
],
e
.
attrib
[
'type'
])
for
e
in
L
)
self
.
assertEqual
(
len
(
L
),
len
(
xml_globals
))
...
...
tests/run/cpp_stl_vector.pyx
View file @
c896e861
...
...
@@ -210,3 +210,11 @@ def test_insert():
assert
v
.
size
()
==
count
for
element
in
v
:
assert
element
==
value
,
'%s != %s'
%
(
element
,
count
)
# Tests GitHub issue #1788.
cdef
cppclass
MyVector
[
T
](
vector
):
pass
cdef
cppclass
Ints
(
MyVector
[
int
]):
pass
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