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
147938bb
Commit
147938bb
authored
May 10, 2014
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improve error handling in __Pyx_init_sys_getdefaultencoding_params()
parent
1f829d19
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
12 deletions
+13
-12
Cython/Utility/TypeConversion.c
Cython/Utility/TypeConversion.c
+13
-12
No files found.
Cython/Utility/TypeConversion.c
View file @
147938bb
...
@@ -71,18 +71,21 @@ static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t);
...
@@ -71,18 +71,21 @@ static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t);
#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
static
int
__Pyx_sys_getdefaultencoding_not_ascii
;
static
int
__Pyx_sys_getdefaultencoding_not_ascii
;
static
int
__Pyx_init_sys_getdefaultencoding_params
(
void
)
{
static
int
__Pyx_init_sys_getdefaultencoding_params
(
void
)
{
PyObject
*
sys
=
NULL
;
PyObject
*
sys
;
PyObject
*
default_encoding
=
NULL
;
PyObject
*
default_encoding
=
NULL
;
PyObject
*
ascii_chars_u
=
NULL
;
PyObject
*
ascii_chars_u
=
NULL
;
PyObject
*
ascii_chars_b
=
NULL
;
PyObject
*
ascii_chars_b
=
NULL
;
const
char
*
default_encoding_c
;
sys
=
PyImport_ImportModule
(
"sys"
);
sys
=
PyImport_ImportModule
(
"sys"
);
if
(
sys
==
NULL
)
goto
bad
;
if
(
!
sys
)
goto
bad
;
default_encoding
=
PyObject_CallMethod
(
sys
,
(
char
*
)
(
const
char
*
)
"getdefaultencoding"
,
NULL
);
default_encoding
=
PyObject_CallMethod
(
sys
,
(
char
*
)
(
const
char
*
)
"getdefaultencoding"
,
NULL
);
if
(
default_encoding
==
NULL
)
goto
bad
;
Py_DECREF
(
sys
);
if
(
strcmp
(
PyBytes_AsString
(
default_encoding
),
"ascii"
)
==
0
)
{
if
(
!
default_encoding
)
goto
bad
;
default_encoding_c
=
PyBytes_AsString
(
default_encoding
);
if
(
!
default_encoding_c
)
goto
bad
;
if
(
strcmp
(
default_encoding_c
,
"ascii"
)
==
0
)
{
__Pyx_sys_getdefaultencoding_not_ascii
=
0
;
__Pyx_sys_getdefaultencoding_not_ascii
=
0
;
}
else
{
}
else
{
const
char
*
default_encoding_c
=
PyBytes_AS_STRING
(
default_encoding
);
char
ascii_chars
[
128
];
char
ascii_chars
[
128
];
int
c
;
int
c
;
for
(
c
=
0
;
c
<
128
;
c
++
)
{
for
(
c
=
0
;
c
<
128
;
c
++
)
{
...
@@ -90,23 +93,21 @@ static int __Pyx_init_sys_getdefaultencoding_params(void) {
...
@@ -90,23 +93,21 @@ static int __Pyx_init_sys_getdefaultencoding_params(void) {
}
}
__Pyx_sys_getdefaultencoding_not_ascii
=
1
;
__Pyx_sys_getdefaultencoding_not_ascii
=
1
;
ascii_chars_u
=
PyUnicode_DecodeASCII
(
ascii_chars
,
128
,
NULL
);
ascii_chars_u
=
PyUnicode_DecodeASCII
(
ascii_chars
,
128
,
NULL
);
if
(
ascii_chars_u
==
NULL
)
goto
bad
;
if
(
!
ascii_chars_u
)
goto
bad
;
ascii_chars_b
=
PyUnicode_AsEncodedString
(
ascii_chars_u
,
default_encoding_c
,
NULL
);
ascii_chars_b
=
PyUnicode_AsEncodedString
(
ascii_chars_u
,
default_encoding_c
,
NULL
);
if
(
ascii_chars_b
==
NULL
||
strncmp
(
ascii_chars
,
PyBytes_AS_STRING
(
ascii_chars_b
),
128
)
!=
0
)
{
if
(
!
ascii_chars_b
||
!
PyBytes_Check
(
ascii_chars_b
)
||
strncmp
(
ascii_chars
,
PyBytes_AS_STRING
(
ascii_chars_b
),
128
)
!=
0
)
{
PyErr_Format
(
PyErr_Format
(
PyExc_ValueError
,
PyExc_ValueError
,
"This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii."
,
"This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii."
,
default_encoding_c
);
default_encoding_c
);
goto
bad
;
goto
bad
;
}
}
Py_DECREF
(
ascii_chars_u
);
Py_DECREF
(
ascii_chars_b
);
}
}
Py_XDECREF
(
sys
);
Py_DECREF
(
default_encoding
);
Py_XDECREF
(
default_encoding
);
Py_XDECREF
(
ascii_chars_u
);
Py_XDECREF
(
ascii_chars_b
);
return
0
;
return
0
;
bad:
bad:
Py_XDECREF
(
sys
);
Py_XDECREF
(
default_encoding
);
Py_XDECREF
(
default_encoding
);
Py_XDECREF
(
ascii_chars_u
);
Py_XDECREF
(
ascii_chars_u
);
Py_XDECREF
(
ascii_chars_b
);
Py_XDECREF
(
ascii_chars_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