Change comments (mainly URLs) to no longer specifically say Python 3.3
diff --git a/py/builtin.c b/py/builtin.c
index c336378..8621b0b 100644
--- a/py/builtin.c
+++ b/py/builtin.c
@@ -466,7 +466,7 @@
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.