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
018d6c5f
Commit
018d6c5f
authored
Dec 07, 2012
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove obsolete, unused C++ test.
parent
d7db2112
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
40 deletions
+0
-40
tests/compile/cpp_operators.pyx
tests/compile/cpp_operators.pyx
+0
-40
No files found.
tests/compile/cpp_operators.pyx
deleted
100644 → 0
View file @
d7db2112
# tag: cpp
# mode: compile
cdef
extern
from
"operators.h"
:
cdef
cppclass
Operators
:
Operators
(
int
)
Operators
operator
+
(
Operators
)
Operators
__add__
(
Operators
,
Operators
)
Operators
__sub__
(
Operators
,
Operators
)
Operators
__mul__
(
Operators
,
Operators
)
Operators
__div__
(
Operators
,
Operators
)
bool
__lt__
(
Operators
,
Operators
)
bool
__le__
(
Operators
,
Operators
)
bool
__eq__
(
Operators
,
Operators
)
bool
__ne__
(
Operators
,
Operators
)
bool
__gt__
(
Operators
,
Operators
)
bool
__ge__
(
Operators
,
Operators
)
Operators
__rshift__
(
Operators
,
int
)
Operators
__lshift__
(
Operators
,
int
)
Operators
__mod__
(
Operators
,
int
)
cdef
int
v
=
10
cdef
Operators
a
cdef
Operators
b
cdef
Operators
c
c
=
a
+
b
c
=
a
-
b
c
=
a
*
b
c
=
a
/
b
c
=
a
<<
2
c
=
a
>>
1
c
=
b
%
2
a
<
b
a
<=
b
a
==
b
a
!=
b
a
>
b
a
>=
b
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