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
e98ff406
Commit
e98ff406
authored
7 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
py/modbuiltins: Simplify casts from char to byte ptr in builtin ord.
parent
19aee943
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
py/modbuiltins.c
+4
-4
4 additions, 4 deletions
py/modbuiltins.c
with
4 additions
and
4 deletions
py/modbuiltins.c
+
4
−
4
View file @
e98ff406
...
...
@@ -343,19 +343,19 @@ MP_DEFINE_CONST_FUN_OBJ_1(mp_builtin_oct_obj, mp_builtin_oct);
STATIC
mp_obj_t
mp_builtin_ord
(
mp_obj_t
o_in
)
{
size_t
len
;
const
char
*
str
=
mp_obj_str_get_data
(
o_in
,
&
len
);
const
byte
*
str
=
(
const
byte
*
)
mp_obj_str_get_data
(
o_in
,
&
len
);
#if MICROPY_PY_BUILTINS_STR_UNICODE
if
(
MP_OBJ_IS_STR
(
o_in
))
{
len
=
utf8_charlen
(
(
const
byte
*
)
str
,
len
);
len
=
utf8_charlen
(
str
,
len
);
if
(
len
==
1
)
{
return
mp_obj_new_int
(
utf8_get_char
(
(
const
byte
*
)
str
));
return
mp_obj_new_int
(
utf8_get_char
(
str
));
}
}
else
#endif
{
// a bytes object, or a str without unicode support (don't sign extend the char)
if
(
len
==
1
)
{
return
MP_OBJ_NEW_SMALL_INT
(
((
const
byte
*
)
str
)
[
0
]);
return
MP_OBJ_NEW_SMALL_INT
(
str
[
0
]);
}
}
...
...
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