From daf973ae0074136bb456298e1cdb85666261ce60 Mon Sep 17 00:00:00 2001 From: Chris Angelico Date: Fri, 6 Jun 2014 03:51:03 +1000 Subject: Change comments (mainly URLs) to no longer specifically say Python 3.3 --- py/objtype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/objtype.c') diff --git a/py/objtype.c b/py/objtype.c index a51e12f1f..dfe5eaa8f 100644 --- a/py/objtype.c +++ b/py/objtype.c @@ -352,7 +352,7 @@ STATIC const qstr binary_op_method_name[] = { // Given a member that was extracted from an instance, convert it correctly // and put the result in the dest[] array for a possible method call. // Conversion means dealing with static/class methods, callables, and values. -// see http://docs.python.org/3.3/howto/descriptor.html +// see http://docs.python.org/3/howto/descriptor.html STATIC void instance_convert_return_attr(mp_obj_t self, const mp_obj_type_t *type, mp_obj_t member, mp_obj_t *dest) { assert(dest[1] == NULL); if (MP_OBJ_IS_TYPE(member, &mp_type_staticmethod)) { -- cgit v1.2.3