diff options
| author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-05 21:17:46 +0300 |
|---|---|---|
| committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-05 21:17:46 +0300 |
| commit | f675ff39576137e44a2fa6416619fe9a59cf2a0b (patch) | |
| tree | b94c080fdbd6e552f9c3713044daae2317ef5b90 /py/builtinimport.c | |
| parent | 11de8399fe5f9ef54589b14470faf8d4fcc5ccaa (diff) | |
| parent | daf973ae0074136bb456298e1cdb85666261ce60 (diff) | |
Merge pull request #665 from Rosuav/naming3.3
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); |
