Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
5f64dc55
Commit
5f64dc55
authored
10 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
extmod: Make ujson.loads raise exception if given empty string.
Addresses issue #1097.
parent
e8b877be
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
extmod/modujson.c
+2
-1
2 additions, 1 deletion
extmod/modujson.c
tests/extmod/ujson_loads.py
+6
-0
6 additions, 0 deletions
tests/extmod/ujson_loads.py
with
8 additions
and
1 deletion
extmod/modujson.c
+
2
−
1
View file @
5f64dc55
...
...
@@ -239,7 +239,8 @@ STATIC mp_obj_t mod_ujson_loads(mp_obj_t obj) {
// unexpected chars
goto
fail
;
}
if
(
stack
.
len
!=
0
)
{
if
(
stack_top
==
MP_OBJ_NULL
||
stack
.
len
!=
0
)
{
// not exactly 1 object
goto
fail
;
}
vstr_clear
(
&
vstr
);
...
...
This diff is collapsed.
Click to expand it.
tests/extmod/ujson_loads.py
+
6
−
0
View file @
5f64dc55
...
...
@@ -33,3 +33,9 @@ my_print(json.loads('{"a":[], "b":[1], "c":{"3":4}}'))
# whitespace handling
my_print
(
json
.
loads
(
'
{
\n\t
"
a
"
:[]
\r\n
,
"
b
"
:[1],
"
c
"
:{
"
3
"
:4}
\n\r\t\r\r\r\n
}
'
))
# loading nothing should raise exception
try
:
json
.
loads
(
''
)
except
ValueError
:
print
(
'
ValueError
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment