Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
c75427ba
Commit
c75427ba
authored
Apr 07, 2014
by
Damien George
Browse files
py: Revert change to allocation policy for mp_set_t.
Seems that this fixes all set tests.
parent
07e24a62
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/map.c
View file @
c75427ba
...
...
@@ -197,7 +197,7 @@ mp_map_elem_t* mp_map_lookup(mp_map_t *map, mp_obj_t index, mp_map_lookup_kind_t
/* set */
void
mp_set_init
(
mp_set_t
*
set
,
int
n
)
{
set
->
alloc
=
n
;
set
->
alloc
=
get_doubling_prime_greater_or_equal_to
(
n
+
1
)
;
set
->
used
=
0
;
set
->
table
=
m_new0
(
mp_obj_t
,
set
->
alloc
);
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment