Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9beee049
Commit
9beee049
authored
Apr 14, 2014
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Plain Diff
merge 3.2
parents
156285c3
6ef2b36a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
Modules/_json.c
Modules/_json.c
+5
-4
No files found.
Modules/_json.c
View file @
9beee049
...
...
@@ -975,10 +975,11 @@ scan_once_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_
kind
=
PyUnicode_KIND
(
pystr
);
length
=
PyUnicode_GET_LENGTH
(
pystr
);
if
(
idx
<
0
)
/* Compatibility with Python version. */
idx
+=
length
;
if
(
idx
<
0
||
idx
>=
length
)
{
if
(
idx
<
0
)
{
PyErr_SetString
(
PyExc_ValueError
,
"idx cannot be negative"
);
return
NULL
;
}
if
(
idx
>=
length
)
{
PyErr_SetNone
(
PyExc_StopIteration
);
return
NULL
;
}
...
...
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