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
d0df10b2
Commit
d0df10b2
authored
10 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
py: Don't unnecessarily create a bound method.
parent
48244044
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/objtype.c
+1
-2
1 addition, 2 deletions
py/objtype.c
with
1 addition
and
2 deletions
py/objtype.c
+
1
−
2
View file @
d0df10b2
...
...
@@ -662,8 +662,7 @@ STATIC mp_obj_t instance_getiter(mp_obj_t self_in) {
mp_obj_type_t
*
type
=
mp_obj_get_type
(
self
->
subobj
[
0
]);
return
type
->
getiter
(
self
->
subobj
[
0
]);
}
mp_obj_t
meth
=
mp_obj_new_bound_meth
(
member
[
0
],
self
);
return
mp_call_function_n_kw
(
meth
,
0
,
0
,
NULL
);
return
mp_call_method_n_kw
(
0
,
0
,
member
);
}
STATIC
mp_int_t
instance_get_buffer
(
mp_obj_t
self_in
,
mp_buffer_info_t
*
bufinfo
,
mp_uint_t
flags
)
{
...
...
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