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
ab17365a
Commit
ab17365a
authored
May 12, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
merged in latest cython-devel
parents
5c962c3b
f30c3a6b
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
281 additions
and
40 deletions
+281
-40
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+1
-1
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+107
-39
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+3
-0
tests/run/specialfloat.pyx
tests/run/specialfloat.pyx
+9
-0
tests/run/strliterals.pyx
tests/run/strliterals.pyx
+5
-0
tests/run/unicode_indexing.pyx
tests/run/unicode_indexing.pyx
+156
-0
No files found.
Cython/Compiler/Code.py
View file @
ab17365a
...
...
@@ -289,7 +289,7 @@ class PyObjectConst(object):
possible_unicode_identifier
=
re
.
compile
(
ur"(?![0-9])\
w+$
", re.U).match
possible_bytes_identifier = re.compile(r"
(
?!
[
0
-
9
])
\
w
+
$
".encode('ASCII')).match
nice_identifier = re.compile(
'^[a-zA-Z0-9_]+$
').match
nice_identifier = re.compile(
r'
\
A[
a
-zA-Z0-9_]+
\
Z
'
).match
find_alphanums = re.compile('([a-zA-Z0-9]+)').findall
class StringConst(object):
...
...
Cython/Compiler/ExprNodes.py
View file @
ab17365a
...
...
@@ -851,12 +851,14 @@ class FloatNode(ConstNode):
return
float
(
self
.
value
)
def
calculate_result_code
(
self
):
strval
=
repr
(
float
(
self
.
value
))
if
strval
==
'nan'
:
strval
=
self
.
value
assert
isinstance
(
strval
,
(
str
,
unicode
))
cmpval
=
repr
(
float
(
strval
))
if
cmpval
==
'nan'
:
return
"(Py_HUGE_VAL * 0)"
elif
str
val
==
'inf'
:
elif
cmp
val
==
'inf'
:
return
"Py_HUGE_VAL"
elif
str
val
==
'-inf'
:
elif
cmp
val
==
'-inf'
:
return
"(-Py_HUGE_VAL)"
else
:
return
strval
...
...
@@ -1903,11 +1905,15 @@ class IndexNode(ExprNode):
return
self
.
base
.
type_dependencies
(
env
)
def
infer_type
(
self
,
env
):
if
isinstance
(
self
.
base
,
(
StringNode
,
UnicodeNode
)
):
# FIXME: BytesNode?
if
isinstance
(
self
.
base
,
StringNode
):
# FIXME: BytesNode?
return
py_object_type
base_type
=
self
.
base
.
infer_type
(
env
)
if
base_type
.
is_ptr
or
base_type
.
is_array
:
return
base_type
.
base_type
elif
base_type
is
Builtin
.
unicode_type
:
# Py_UNICODE will automatically coerce to a unicode string
# if required, so this is safe
return
PyrexTypes
.
c_py_unicode_type
else
:
# TODO: Handle buffers (hopefully without too much redundancy).
return
py_object_type
...
...
@@ -1976,15 +1982,16 @@ class IndexNode(ExprNode):
else
:
self
.
base
.
entry
.
buffer_aux
.
writable_needed
=
True
else
:
base_type
=
self
.
base
.
type
if
isinstance
(
self
.
index
,
TupleNode
):
self
.
index
.
analyse_types
(
env
,
skip_children
=
skip_child_analysis
)
elif
not
skip_child_analysis
:
self
.
index
.
analyse_types
(
env
)
self
.
original_index_type
=
self
.
index
.
type
if
self
.
base
.
type
.
is_pyobject
:
if
base_
type
.
is_pyobject
:
if
self
.
index
.
type
.
is_int
:
if
(
not
setting
and
(
self
.
base
.
type
is
list_type
or
self
.
base
.
type
is
tuple_type
)
and
(
base_type
in
(
list_type
,
tuple_type
,
unicode_type
)
)
and
(
not
self
.
index
.
type
.
signed
or
isinstance
(
self
.
index
,
IntNode
)
and
int
(
self
.
index
.
value
)
>=
0
)
and
not
env
.
directives
[
'boundscheck'
]):
self
.
is_temp
=
0
...
...
@@ -1994,10 +2001,15 @@ class IndexNode(ExprNode):
else
:
self
.
index
=
self
.
index
.
coerce_to_pyobject
(
env
)
self
.
is_temp
=
1
if
base_type
is
unicode_type
:
# Py_UNICODE will automatically coerce to a unicode string
# if required, so this is safe
self
.
type
=
PyrexTypes
.
c_py_unicode_type
else
:
self
.
type
=
py_object_type
else
:
if
self
.
base
.
type
.
is_ptr
or
self
.
base
.
type
.
is_array
:
self
.
type
=
self
.
base
.
type
.
base_type
if
base_type
.
is_ptr
or
base_
type
.
is_array
:
self
.
type
=
base_
type
.
base_type
if
self
.
index
.
type
.
is_pyobject
:
self
.
index
=
self
.
index
.
coerce_to
(
PyrexTypes
.
c_py_ssize_t_type
,
env
)
...
...
@@ -2005,10 +2017,10 @@ class IndexNode(ExprNode):
error
(
self
.
pos
,
"Invalid index type '%s'"
%
self
.
index
.
type
)
elif
self
.
base
.
type
.
is_cpp_class
:
elif
base_
type
.
is_cpp_class
:
function
=
env
.
lookup_operator
(
"[]"
,
[
self
.
base
,
self
.
index
])
if
function
is
None
:
error
(
self
.
pos
,
"Indexing '%s' not supported for index type '%s'"
%
(
self
.
base
.
type
,
self
.
index
.
type
))
error
(
self
.
pos
,
"Indexing '%s' not supported for index type '%s'"
%
(
base_
type
,
self
.
index
.
type
))
self
.
type
=
PyrexTypes
.
error_type
self
.
result_code
=
"<error>"
return
...
...
@@ -2022,7 +2034,7 @@ class IndexNode(ExprNode):
else
:
error
(
self
.
pos
,
"Attempting to index non-array type '%s'"
%
self
.
base
.
type
)
base_
type
)
self
.
type
=
PyrexTypes
.
error_type
gil_message
=
"Indexing Python object"
...
...
@@ -2051,6 +2063,8 @@ class IndexNode(ExprNode):
return
"PyList_GET_ITEM(%s, %s)"
%
(
self
.
base
.
result
(),
self
.
index
.
result
())
elif
self
.
base
.
type
is
tuple_type
:
return
"PyTuple_GET_ITEM(%s, %s)"
%
(
self
.
base
.
result
(),
self
.
index
.
result
())
elif
self
.
base
.
type
is
unicode_type
and
self
.
type
is
PyrexTypes
.
c_py_unicode_type
:
return
"PyUnicode_AS_UNICODE(%s)[%s]"
%
(
self
.
base
.
result
(),
self
.
index
.
result
())
else
:
return
"(%s[%s])"
%
(
self
.
base
.
result
(),
self
.
index
.
result
())
...
...
@@ -2098,7 +2112,8 @@ class IndexNode(ExprNode):
# is_temp is True, so must pull out value and incref it.
code
.
putln
(
"%s = *%s;"
%
(
self
.
result
(),
self
.
buffer_ptr_code
))
code
.
putln
(
"__Pyx_INCREF((PyObject*)%s);"
%
self
.
result
())
elif
self
.
type
.
is_pyobject
and
self
.
is_temp
:
elif
self
.
is_temp
:
if
self
.
type
.
is_pyobject
:
if
self
.
index
.
type
.
is_int
:
index_code
=
self
.
index
.
result
()
if
self
.
base
.
type
is
list_type
:
...
...
@@ -2109,13 +2124,12 @@ class IndexNode(ExprNode):
function
=
"__Pyx_GetItemInt"
code
.
globalstate
.
use_utility_code
(
getitem_int_utility_code
)
else
:
index_code
=
self
.
index
.
py_result
()
if
self
.
base
.
type
is
dict_type
:
function
=
"__Pyx_PyDict_GetItem"
code
.
globalstate
.
use_utility_code
(
getitem_dict_utility_code
)
else
:
function
=
"PyObject_GetItem"
index_code
=
self
.
index
.
py_result
()
sign_code
=
""
code
.
putln
(
"%s = %s(%s, %s%s); if (!%s) %s"
%
(
self
.
result
(),
...
...
@@ -2126,6 +2140,23 @@ class IndexNode(ExprNode):
self
.
result
(),
code
.
error_goto
(
self
.
pos
)))
code
.
put_gotref
(
self
.
py_result
())
elif
self
.
type
is
PyrexTypes
.
c_py_unicode_type
and
self
.
base
.
type
is
unicode_type
:
code
.
globalstate
.
use_utility_code
(
getitem_int_pyunicode_utility_code
)
if
self
.
index
.
type
.
is_int
:
index_code
=
self
.
index
.
result
()
function
=
"__Pyx_GetItemInt_Unicode"
else
:
index_code
=
self
.
index
.
py_result
()
function
=
"__Pyx_GetItemInt_Unicode_Generic"
code
.
putln
(
"%s = %s(%s, %s%s); if (unlikely(%s == (Py_UNICODE)-1)) %s;"
%
(
self
.
result
(),
function
,
self
.
base
.
py_result
(),
index_code
,
self
.
extra_index_params
(),
self
.
result
(),
code
.
error_goto
(
self
.
pos
)))
def
generate_setitem_code
(
self
,
value_code
,
code
):
if
self
.
index
.
type
.
is_int
:
...
...
@@ -5123,6 +5154,11 @@ class NumBinopNode(BinopNode):
self
.
operand1
.
result
(),
self
.
operand2
.
result
())
def
is_py_operation_types
(
self
,
type1
,
type2
):
return
(
type1
is
PyrexTypes
.
c_py_unicode_type
or
type2
is
PyrexTypes
.
c_py_unicode_type
or
BinopNode
.
is_py_operation_types
(
self
,
type1
,
type2
))
def
py_operation_function
(
self
):
return
self
.
py_functions
[
self
.
operator
]
...
...
@@ -6868,6 +6904,38 @@ requires = [raise_noneindex_error_utility_code])
#------------------------------------------------------------------------------------
getitem_int_pyunicode_utility_code
=
UtilityCode
(
proto
=
'''
#define __Pyx_GetItemInt_Unicode(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ?
\
\
__Pyx_GetItemInt_Unicode_Fast(o, i) :
\
\
__Pyx_GetItemInt_Generic(o, to_py_func(i)))
static CYTHON_INLINE Py_UNICODE __Pyx_GetItemInt_Unicode_Fast(PyObject* ustring, Py_ssize_t i) {
if (likely((0 <= i) & (i < PyUnicode_GET_SIZE(ustring)))) {
return PyUnicode_AS_UNICODE(ustring)[i];
} else if ((-PyUnicode_GET_SIZE(ustring) <= i) & (i < 0)) {
i += PyUnicode_GET_SIZE(ustring);
return PyUnicode_AS_UNICODE(ustring)[i];
} else {
PyErr_SetString(PyExc_IndexError, "string index out of range");
return (Py_UNICODE)-1;
}
}
static CYTHON_INLINE Py_UNICODE __Pyx_GetItemInt_Unicode_Generic(PyObject* ustring, PyObject* j) {
PyObject *r;
Py_UNICODE uchar;
if (!j) return (Py_UNICODE)-1;
r = PyObject_GetItem(ustring, j);
Py_DECREF(j);
if (!r) return (Py_UNICODE)-1;
uchar = PyUnicode_AS_UNICODE(r)[0];
Py_DECREF(r);
return uchar;
}
'''
,
)
getitem_int_utility_code
=
UtilityCode
(
proto
=
"""
...
...
Cython/Compiler/PyrexTypes.py
View file @
ab17365a
...
...
@@ -2443,6 +2443,9 @@ def spanning_type(type1, type2):
return
type1
elif
type1
is
py_object_type
or
type2
is
py_object_type
:
return
py_object_type
elif
type1
is
c_py_unicode_type
or
type2
is
c_py_unicode_type
:
# Py_UNICODE behaves more like a string than an int
return
py_object_type
span_type
=
_spanning_type
(
type1
,
type2
)
if
span_type
is
None
:
return
py_object_type
...
...
tests/run/specialfloat.pyx
View file @
ab17365a
DEF
FLOAT
=
12.5
DEF
EFLOAT
=
5e-1
DEF
FLOAT_NAN
=
float
(
'nan'
)
DEF
FLOAT_INFP
=
float
(
'+inf'
)
DEF
FLOAT_INFN
=
float
(
'-inf'
)
...
...
@@ -20,6 +21,14 @@ def f():
f
=
FLOAT
return
f
def
efloat
():
"""
>>> efloat()
0.5
"""
cdef
float
f
=
EFLOAT
return
f
def
nan1
():
"""
>>> nan1()
...
...
tests/run/strliterals.pyx
View file @
ab17365a
...
...
@@ -103,6 +103,9 @@ __doc__ = ur"""
True
>>> len(u6)
7
>>> newlines == "Aaa\n"
True
"""
import
sys
...
...
@@ -127,3 +130,5 @@ u3 = ur"abc\x11"
u4
=
Ur"abc\x11"
u5
=
uR"abc\x11"
u6
=
UR"abc\x11"
newlines
=
"Aaa
\
n
"
tests/run/unicode_indexing.pyx
0 → 100644
View file @
ab17365a
cimport
cython
cdef
unicode
_ustring
=
u'azerty123456'
ustring
=
_ustring
@
cython
.
test_assert_path_exists
(
"//CoerceToPyTypeNode"
,
"//IndexNode"
)
@
cython
.
test_fail_if_path_exists
(
"//IndexNode//CoerceToPyTypeNode"
)
def
index
(
unicode
ustring
,
Py_ssize_t
i
):
"""
>>> index(ustring, 0)
u'a'
>>> index(ustring, 2)
u'e'
>>> index(ustring, -1)
u'6'
>>> index(ustring, -len(ustring))
u'a'
>>> index(ustring, len(ustring))
Traceback (most recent call last):
IndexError: string index out of range
"""
return
ustring
[
i
]
@
cython
.
test_assert_path_exists
(
"//CoerceToPyTypeNode"
,
"//IndexNode"
)
@
cython
.
test_fail_if_path_exists
(
"//IndexNode//CoerceToPyTypeNode"
)
def
index_literal
(
Py_ssize_t
i
):
"""
>>> index_literal(0)
u'a'
>>> index_literal(2)
u'e'
>>> index_literal(-1)
u'6'
>>> index_literal(-len('azerty123456'))
u'a'
>>> index_literal(len(ustring))
Traceback (most recent call last):
IndexError: string index out of range
"""
return
u'azerty123456'
[
i
]
@
cython
.
test_assert_path_exists
(
"//CoerceToPyTypeNode"
,
"//IndexNode"
)
@
cython
.
test_fail_if_path_exists
(
"//IndexNode//CoerceToPyTypeNode"
)
@
cython
.
boundscheck
(
False
)
def
index_no_boundscheck
(
unicode
ustring
,
Py_ssize_t
i
):
"""
>>> index_no_boundscheck(ustring, 0)
u'a'
>>> index_no_boundscheck(ustring, 2)
u'e'
>>> index_no_boundscheck(ustring, -1)
u'6'
>>> index_no_boundscheck(ustring, len(ustring)-1)
u'6'
>>> index_no_boundscheck(ustring, -len(ustring))
u'a'
"""
return
ustring
[
i
]
@
cython
.
test_assert_path_exists
(
"//CoerceToPyTypeNode"
,
"//IndexNode"
)
@
cython
.
test_fail_if_path_exists
(
"//IndexNode//CoerceToPyTypeNode"
)
@
cython
.
boundscheck
(
False
)
def
unsigned_index_no_boundscheck
(
unicode
ustring
,
unsigned
int
i
):
"""
>>> unsigned_index_no_boundscheck(ustring, 0)
u'a'
>>> unsigned_index_no_boundscheck(ustring, 2)
u'e'
>>> unsigned_index_no_boundscheck(ustring, len(ustring)-1)
u'6'
"""
return
ustring
[
i
]
@
cython
.
test_assert_path_exists
(
"//CoerceToPyTypeNode"
,
"//IndexNode"
,
"//PrimaryCmpNode"
)
@
cython
.
test_fail_if_path_exists
(
"//IndexNode//CoerceToPyTypeNode"
)
def
index_compare
(
unicode
ustring
,
Py_ssize_t
i
):
"""
>>> index_compare(ustring, 0)
True
>>> index_compare(ustring, 1)
False
>>> index_compare(ustring, -1)
False
>>> index_compare(ustring, -len(ustring))
True
>>> index_compare(ustring, len(ustring))
Traceback (most recent call last):
IndexError: string index out of range
"""
return
ustring
[
i
]
==
u'a'
@
cython
.
test_assert_path_exists
(
"//CoerceToPyTypeNode"
,
"//IndexNode"
,
"//PrimaryCmpNode"
)
@
cython
.
test_fail_if_path_exists
(
"//IndexNode//CoerceToPyTypeNode"
)
def
index_compare_string
(
unicode
ustring
,
Py_ssize_t
i
,
unicode
other
):
"""
>>> index_compare_string(ustring, 0, ustring[0])
True
>>> index_compare_string(ustring, 0, ustring[:4])
False
>>> index_compare_string(ustring, 1, ustring[0])
False
>>> index_compare_string(ustring, 1, ustring[1])
True
>>> index_compare_string(ustring, -1, ustring[0])
False
>>> index_compare_string(ustring, -1, ustring[-1])
True
>>> index_compare_string(ustring, -len(ustring), ustring[-len(ustring)])
True
>>> index_compare_string(ustring, len(ustring), ustring)
Traceback (most recent call last):
IndexError: string index out of range
"""
return
ustring
[
i
]
==
other
@
cython
.
test_assert_path_exists
(
"//CoerceToPyTypeNode"
,
"//IndexNode"
,
"//MulNode"
,
"//MulNode/CoerceToPyTypeNode"
)
@
cython
.
test_fail_if_path_exists
(
"//IndexNode//CoerceToPyTypeNode"
)
def
index_multiply
(
unicode
ustring
,
Py_ssize_t
i
,
int
mul
):
"""
>>> ustring[0] * 5
u'aaaaa'
>>> index_multiply(ustring, 0, 5)
u'aaaaa'
"""
return
ustring
[
i
]
*
mul
@
cython
.
test_assert_path_exists
(
"//CoerceToPyTypeNode"
,
"//IndexNode"
,
"//AddNode"
,
"//AddNode/CoerceToPyTypeNode"
)
@
cython
.
test_fail_if_path_exists
(
"//IndexNode//CoerceToPyTypeNode"
)
def
index_add
(
unicode
ustring
,
Py_ssize_t
i
,
Py_ssize_t
j
):
"""
>>> ustring[0] + ustring[-1]
u'a6'
>>> index_add(ustring, 0, -1)
u'a6'
"""
return
ustring
[
i
]
+
ustring
[
j
]
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