aboutsummaryrefslogtreecommitdiff
path: root/py/objtype.c
diff options
context:
space:
mode:
authorPaul Sokolovsky2014-06-05 21:17:46 +0300
committerPaul Sokolovsky2014-06-05 21:17:46 +0300
commitf675ff39576137e44a2fa6416619fe9a59cf2a0b (patch)
treeb94c080fdbd6e552f9c3713044daae2317ef5b90 /py/objtype.c
parent11de8399fe5f9ef54589b14470faf8d4fcc5ccaa (diff)
parentdaf973ae0074136bb456298e1cdb85666261ce60 (diff)
Merge pull request #665 from Rosuav/naming3.3
Change comments (mainly URLs) to no longer specifically say Python 3.3
Diffstat (limited to 'py/objtype.c')
-rw-r--r--py/objtype.c2
1 files changed, 1 insertions, 1 deletions
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)) {