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/builtin.c | |
parent | c074cd38c365d069616b5620a72db900b15038af (diff) | |
download | micropython-daf973ae0074136bb456298e1cdb85666261ce60.tar.gz micropython-daf973ae0074136bb456298e1cdb85666261ce60.zip |
Change comments (mainly URLs) to no longer specifically say Python 3.3
Diffstat (limited to 'py/builtin.c')
-rw-r--r-- | py/builtin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtin.c b/py/builtin.c index c336378109..8621b0b003 100644 --- a/py/builtin.c +++ b/py/builtin.c @@ -466,7 +466,7 @@ STATIC mp_obj_t mp_builtin_hasattr(mp_obj_t object_in, mp_obj_t attr_in) { assert(MP_OBJ_IS_QSTR(attr_in)); mp_obj_t dest[2]; - // TODO: https://docs.python.org/3.3/library/functions.html?highlight=hasattr#hasattr + // TODO: https://docs.python.org/3/library/functions.html?highlight=hasattr#hasattr // explicitly says "This is implemented by calling getattr(object, name) and seeing // whether it raises an AttributeError or not.", so we should explicitly wrap this // in nlr_push and handle exception. |