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
1d34e324
Commit
1d34e324
authored
10 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
py: frozenset() creates an empty frozenset.
parent
2323ef91
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
py/objset.c
+9
-8
9 additions, 8 deletions
py/objset.c
tests/basics/frozenset1.py
+3
-0
3 additions, 0 deletions
tests/basics/frozenset1.py
with
12 additions
and
8 deletions
py/objset.c
+
9
−
8
View file @
1d34e324
...
...
@@ -121,15 +121,19 @@ STATIC void set_print(void (*print)(void *env, const char *fmt, ...), void *env,
STATIC
mp_obj_t
set_make_new
(
mp_obj_t
type_in
,
uint
n_args
,
uint
n_kw
,
const
mp_obj_t
*
args
)
{
// TODO check n_kw == 0
mp_arg_check_num
(
n_args
,
n_kw
,
0
,
1
,
false
);
switch
(
n_args
)
{
case
0
:
// return a new, empty set
return
mp_obj_new_set
(
0
,
NULL
);
case
0
:
{
// create a new, empty set
mp_obj_set_t
*
set
=
mp_obj_new_set
(
0
,
NULL
);
// set actual set/frozenset type
set
->
base
.
type
=
type_in
;
return
set
;
}
case
1
:
{
default:
{
// can only be 0 or 1 arg
// 1 argument, an iterable from which we make a new set
mp_obj_set_t
*
set
=
mp_obj_new_set
(
0
,
NULL
);
mp_obj_t
iterable
=
mp_getiter
(
args
[
0
]);
...
...
@@ -141,9 +145,6 @@ STATIC mp_obj_t set_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_
set
->
base
.
type
=
type_in
;
return
set
;
}
default:
nlr_raise
(
mp_obj_new_exception_msg_varg
(
&
mp_type_TypeError
,
"set takes at most 1 argument, %d given"
,
n_args
));
}
}
...
...
This diff is collapsed.
Click to expand it.
tests/basics/frozenset1.py
+
3
−
0
View file @
1d34e324
...
...
@@ -7,6 +7,9 @@ except NameError:
import
sys
sys
.
exit
()
s
=
frozenset
()
print
(
s
)
s
=
frozenset
({
1
})
print
(
s
)
...
...
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