summaryrefslogtreecommitdiffstatshomepage
path: root/py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-02-14 20:55:31 +1100
committerDamien George <damien.p.george@gmail.com>2017-02-14 20:55:31 +1100
commitadc80b8f8469874624a200acaddbed901bdd34ee (patch)
tree5b3225233eff6c3be02ebbd34afb9597ba5c1b04 /py
parent0c821f7def92a2f461a440c210cd5944707d4244 (diff)
downloadmicropython-adc80b8f8469874624a200acaddbed901bdd34ee.tar.gz
micropython-adc80b8f8469874624a200acaddbed901bdd34ee.zip
py/objtype: Replace non-ASCII single-quote char with ASCII version.
Diffstat (limited to 'py')
-rw-r--r--py/objtype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objtype.c b/py/objtype.c
index 85e10e7624..60f630c3dc 100644
--- a/py/objtype.c
+++ b/py/objtype.c
@@ -284,7 +284,7 @@ mp_obj_t mp_obj_instance_make_new(const mp_obj_type_t *self, size_t n_args, size
}
// https://docs.python.org/3.4/reference/datamodel.html#object.__new__
- // "If __new__() does not return an instance of cls, then the new instance’s __init__() method will not be invoked."
+ // "If __new__() does not return an instance of cls, then the new instance's __init__() method will not be invoked."
if (mp_obj_get_type(new_ret) != self) {
return new_ret;
}