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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
3a227c04
Commit
3a227c04
authored
Jul 18, 2015
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid fake enums in test.
Were these ever used, this would have been an error.
parent
f4bc43c4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
tests/run/cpdef_enums.pxd
tests/run/cpdef_enums.pxd
+2
-2
tests/run/cpdef_enums.pyx
tests/run/cpdef_enums.pyx
+2
-2
No files found.
tests/run/cpdef_enums.pxd
View file @
3a227c04
cdef
extern
from
*
:
cdef
extern
from
*
:
cpdef
enum
ExternPxdEnum
:
cpdef
enum
:
# ExternPxd
FOUR
"4"
FOUR
"4"
EIGHT
"8"
EIGHT
"8"
cdef
enum
ExternSecretPxdEnum
:
cdef
enum
:
# ExternSecretPxd
SIXTEEN
"16"
SIXTEEN
"16"
cpdef
enum
PxdEnum
:
cpdef
enum
PxdEnum
:
...
...
tests/run/cpdef_enums.pyx
View file @
3a227c04
...
@@ -26,12 +26,12 @@ NameError: ...name 'RANK_3' is not defined
...
@@ -26,12 +26,12 @@ NameError: ...name 'RANK_3' is not defined
cdef
extern
from
*
:
cdef
extern
from
*
:
cpdef
enum
ExternPyxEnum
:
cpdef
enum
:
# ExternPyx
ONE
"1"
ONE
"1"
TEN
"10"
TEN
"10"
HUNDRED
"100"
HUNDRED
"100"
cdef
enum
ExternSecretPyxEnum
:
cdef
enum
:
# ExternSecretPyx
THOUSAND
"1000"
THOUSAND
"1000"
cpdef
enum
PyxEnum
:
cpdef
enum
PyxEnum
:
...
...
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