summaryrefslogtreecommitdiffstatshomepage
path: root/py/builtin.c
diff options
context:
space:
mode:
authorChris Angelico <rosuav@gmail.com>2014-06-06 03:51:03 +1000
committerChris Angelico <rosuav@gmail.com>2014-06-06 03:51:03 +1000
commitdaf973ae0074136bb456298e1cdb85666261ce60 (patch)
tree0fe8593769979883756a0c8585dec0ec1a011d87 /py/builtin.c
parentc074cd38c365d069616b5620a72db900b15038af (diff)
downloadmicropython-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.c2
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.