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/runtime.c | |
parent | 11de8399fe5f9ef54589b14470faf8d4fcc5ccaa (diff) | |
parent | daf973ae0074136bb456298e1cdb85666261ce60 (diff) | |
download | micropython-f675ff39576137e44a2fa6416619fe9a59cf2a0b.tar.gz micropython-f675ff39576137e44a2fa6416619fe9a59cf2a0b.zip |
Merge pull request #665 from Rosuav/naming3.3
Change comments (mainly URLs) to no longer specifically say Python 3.3
Diffstat (limited to 'py/runtime.c')
-rw-r--r-- | py/runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/runtime.c b/py/runtime.c index f13cc1d892..cdbf99d4a5 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -837,7 +837,7 @@ void mp_load_method_maybe(mp_obj_t base, qstr attr, mp_obj_t *dest) { mp_map_elem_t *elem = mp_map_lookup(locals_map, MP_OBJ_NEW_QSTR(attr), MP_MAP_LOOKUP); if (elem != NULL) { // check if the methods are functions, static or class methods - // see http://docs.python.org/3.3/howto/descriptor.html + // see http://docs.python.org/3/howto/descriptor.html if (MP_OBJ_IS_TYPE(elem->value, &mp_type_staticmethod)) { // return just the function dest[0] = ((mp_obj_static_class_method_t*)elem->value)->fun; |