py/objtype: Replace non-ASCII single-quote char with ASCII version.

This commit is contained in:
Damien George 2017-02-14 20:55:31 +11:00
parent 0c821f7def
commit adc80b8f84
1 changed files with 1 additions and 1 deletions

View File

@ -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 instances __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;
}