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
8a0801ad
Commit
8a0801ad
authored
10 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
py: Make 3 functions static.
parent
73c98d87
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/builtinimport.c
+3
-3
3 additions, 3 deletions
py/builtinimport.c
with
3 additions
and
3 deletions
py/builtinimport.c
+
3
−
3
View file @
8a0801ad
...
...
@@ -54,7 +54,7 @@
#define PATH_SEP_CHAR '/'
mp_import_stat_t
stat_dir_or_file
(
vstr_t
*
path
)
{
STATIC
mp_import_stat_t
stat_dir_or_file
(
vstr_t
*
path
)
{
//printf("stat %s\n", vstr_str(path));
mp_import_stat_t
stat
=
mp_import_stat
(
vstr_str
(
path
));
if
(
stat
==
MP_IMPORT_STAT_DIR
)
{
...
...
@@ -68,7 +68,7 @@ mp_import_stat_t stat_dir_or_file(vstr_t *path) {
return
MP_IMPORT_STAT_NO_EXIST
;
}
mp_import_stat_t
find_file
(
const
char
*
file_str
,
uint
file_len
,
vstr_t
*
dest
)
{
STATIC
mp_import_stat_t
find_file
(
const
char
*
file_str
,
uint
file_len
,
vstr_t
*
dest
)
{
// extract the list of paths
uint
path_num
=
0
;
mp_obj_t
*
path_items
;
...
...
@@ -102,7 +102,7 @@ mp_import_stat_t find_file(const char *file_str, uint file_len, vstr_t *dest) {
}
}
void
do_load
(
mp_obj_t
module_obj
,
vstr_t
*
file
)
{
STATIC
void
do_load
(
mp_obj_t
module_obj
,
vstr_t
*
file
)
{
// create the lexer
mp_lexer_t
*
lex
=
mp_lexer_new_from_file
(
vstr_str
(
file
));
...
...
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