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
Boxiang Sun
cython
Commits
135c8b3d
Commit
135c8b3d
authored
Sep 12, 2017
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused code.
parent
a8a2ddff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
16 deletions
+0
-16
Cython/Utility/Builtins.c
Cython/Utility/Builtins.c
+0
-16
No files found.
Cython/Utility/Builtins.c
View file @
135c8b3d
...
...
@@ -231,22 +231,6 @@ static PyObject* __Pyx_Intern(PyObject* s) {
return
s
;
}
//////////////////// abs_int.proto ////////////////////
static
CYTHON_INLINE
unsigned
int
__Pyx_abs_int
(
int
x
)
{
if
(
unlikely
(
x
==
-
INT_MAX
-
1
))
return
((
unsigned
int
)
INT_MAX
)
+
1U
;
return
(
unsigned
int
)
abs
(
x
);
}
//////////////////// abs_long.proto ////////////////////
static
CYTHON_INLINE
unsigned
long
__Pyx_abs_long
(
long
x
)
{
if
(
unlikely
(
x
==
-
LONG_MAX
-
1
))
return
((
unsigned
long
)
LONG_MAX
)
+
1U
;
return
(
unsigned
long
)
labs
(
x
);
}
//////////////////// abs_longlong.proto ////////////////////
static
CYTHON_INLINE
PY_LONG_LONG
__Pyx_abs_longlong
(
PY_LONG_LONG
x
)
{
...
...
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