diff options
| author | Chris Angelico <rosuav@gmail.com> | 2014-06-06 03:51:03 +1000 |
|---|---|---|
| committer | Chris Angelico <rosuav@gmail.com> | 2014-06-06 03:51:03 +1000 |
| commit | daf973ae0074136bb456298e1cdb85666261ce60 (patch) | |
| tree | 0fe8593769979883756a0c8585dec0ec1a011d87 /py/builtinimport.c | |
| parent | c074cd38c365d069616b5620a72db900b15038af (diff) | |
Change comments (mainly URLs) to no longer specifically say Python 3.3
Diffstat (limited to 'py/builtinimport.c')
| -rw-r--r-- | py/builtinimport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtinimport.c b/py/builtinimport.c index c6910138f..795d9fd5e 100644 --- a/py/builtinimport.c +++ b/py/builtinimport.c @@ -306,7 +306,7 @@ mp_obj_t mp_builtin___import__(uint n_args, mp_obj_t *args) { if (stat == MP_IMPORT_STAT_DIR) { DEBUG_printf("%s is dir\n", vstr_str(&path)); - // https://docs.python.org/3.3/reference/import.html + // https://docs.python.org/3/reference/import.html // "Specifically, any module that contains a __path__ attribute is considered a package." mp_store_attr(module_obj, MP_QSTR___path__, mp_obj_new_str(vstr_str(&path), vstr_len(&path), false)); vstr_add_char(&path, PATH_SEP_CHAR); |
