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
257e73ca
Commit
257e73ca
authored
Apr 02, 2012
by
Bradley M. Froehle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix unused variable warning in Python >= 2.6.
parent
7c15adb7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Cython/Utility/Buffer.c
Cython/Utility/Buffer.c
+2
-2
No files found.
Cython/Utility/Buffer.c
View file @
257e73ca
...
@@ -107,7 +107,7 @@ typedef struct {
...
@@ -107,7 +107,7 @@ typedef struct {
/////////////// GetAndReleaseBuffer ///////////////
/////////////// GetAndReleaseBuffer ///////////////
#if PY_MAJOR_VERSION < 3
#if PY_MAJOR_VERSION < 3
static
int
__Pyx_GetBuffer
(
PyObject
*
obj
,
Py_buffer
*
view
,
int
flags
)
{
static
int
__Pyx_GetBuffer
(
PyObject
*
obj
,
Py_buffer
*
view
,
int
flags
)
{
PyObject
*
getbuffer_cobj
;
CYTHON_UNUSED
PyObject
*
getbuffer_cobj
;
#if PY_VERSION_HEX >= 0x02060000
#if PY_VERSION_HEX >= 0x02060000
if
(
PyObject_CheckBuffer
(
obj
))
return
PyObject_GetBuffer
(
obj
,
view
,
flags
);
if
(
PyObject_CheckBuffer
(
obj
))
return
PyObject_GetBuffer
(
obj
,
view
,
flags
);
...
@@ -151,7 +151,7 @@ fail:
...
@@ -151,7 +151,7 @@ fail:
static
void
__Pyx_ReleaseBuffer
(
Py_buffer
*
view
)
{
static
void
__Pyx_ReleaseBuffer
(
Py_buffer
*
view
)
{
PyObject
*
obj
=
view
->
obj
;
PyObject
*
obj
=
view
->
obj
;
PyObject
*
releasebuffer_cobj
;
CYTHON_UNUSED
PyObject
*
releasebuffer_cobj
;
if
(
!
obj
)
return
;
if
(
!
obj
)
return
;
...
...
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