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
213f561f
Commit
213f561f
authored
Aug 26, 2008
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
long long indexing failed when sizeof(long long) < sizeof(Py_ssize_t)
parent
ade90e67
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
1 deletion
+23
-1
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+1
-1
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+4
-0
tests/run/longlongindex.pyx
tests/run/longlongindex.pyx
+18
-0
No files found.
Cython/Compiler/ExprNodes.py
View file @
213f561f
...
...
@@ -1423,7 +1423,7 @@ class IndexNode(ExprNode):
elif
not
skip_child_analysis
:
self
.
index
.
analyse_types
(
env
)
if
self
.
base
.
type
.
is_pyobject
:
if
self
.
index
.
type
.
is_int
:
if
self
.
index
.
type
.
is_int
and
not
self
.
index
.
type
.
is_longlong
:
self
.
original_index_type
=
self
.
index
.
type
self
.
index
=
self
.
index
.
coerce_to
(
PyrexTypes
.
c_py_ssize_t_type
,
env
).
coerce_to_simple
(
env
)
if
getting
:
...
...
Cython/Compiler/PyrexTypes.py
View file @
213f561f
...
...
@@ -29,6 +29,7 @@ class PyrexType(BaseType):
# is_extension_type boolean Is a Python extension type
# is_numeric boolean Is a C numeric type
# is_int boolean Is a C integer type
# is_longlong boolean Is a long long or unsigned long long.
# is_float boolean Is a C floating point type
# is_void boolean Is the C void type
# is_array boolean Is a C array type
...
...
@@ -79,6 +80,7 @@ class PyrexType(BaseType):
is_builtin_type
=
0
is_numeric
=
0
is_int
=
0
is_longlong
=
0
is_float
=
0
is_void
=
0
is_array
=
0
...
...
@@ -553,12 +555,14 @@ class CULongType(CUIntType):
class
CLongLongType
(
CUIntType
):
is_longlong
=
1
to_py_function
=
"PyLong_FromLongLong"
from_py_function
=
"__pyx_PyInt_AsLongLong"
class
CULongLongType
(
CUIntType
):
is_longlong
=
1
to_py_function
=
"PyLong_FromUnsignedLongLong"
from_py_function
=
"__pyx_PyInt_AsUnsignedLongLong"
...
...
tests/run/longlongindex.pyx
0 → 100644
View file @
213f561f
__doc__
=
"""
>>> D = set_longlong(2**40, 2**50, 2, "yelp")
>>> D[2**40]
'yelp'
>>> D[2**50]
'yelp'
>>> D[2]
'yelp'
"""
ctypedef
long
long
foo
def
set_longlong
(
long
long
ob
,
foo
x
,
long
y
,
val
):
tank
=
{}
tank
[
ob
]
=
val
tank
[
x
]
=
val
tank
[
y
]
=
val
return
tank
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