Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
acf6aec7
Commit
acf6aec7
authored
Apr 04, 2015
by
Paul Sokolovsky
Browse files
objstr: Avoid variable shadowing.
parent
620058cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/objstr.c
View file @
acf6aec7
...
...
@@ -518,12 +518,12 @@ STATIC inline mp_obj_t str_split_internal(mp_uint_t n_args, const mp_obj_t *args
}
s
++
;
}
mp_uint_t
len
=
s
-
start
;
mp_uint_t
sub_
len
=
s
-
start
;
if
(
MP_LIKELY
(
!
(
len
==
0
&&
s
==
top
&&
(
type
&&
SPLITLINES
))))
{
if
(
start
+
len
!=
top
&&
(
type
&
KEEP
))
{
len
++
;
sub_
len
++
;
}
mp_obj_list_append
(
res
,
mp_obj_new_str_of_type
(
self_type
,
start
,
len
));
mp_obj_list_append
(
res
,
mp_obj_new_str_of_type
(
self_type
,
start
,
sub_
len
));
}
if
(
s
>=
top
)
{
break
;
...
...
Write
Preview
Supports
Markdown
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