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/runtime.c | |
| parent | c074cd38c365d069616b5620a72db900b15038af (diff) | |
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 f13cc1d89..cdbf99d4a 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; |
