2013-12-17 13:27:24 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "nlr.h"
|
|
|
|
#include "misc.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "mpconfig.h"
|
2014-01-21 16:40:13 -05:00
|
|
|
#include "qstr.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "obj.h"
|
|
|
|
#include "runtime0.h"
|
2013-12-17 13:27:24 -05:00
|
|
|
#include "runtime.h"
|
|
|
|
|
2014-01-22 09:35:10 -05:00
|
|
|
mp_obj_type_t *mp_obj_get_type(mp_obj_t o_in) {
|
2014-01-08 06:47:55 -05:00
|
|
|
if (MP_OBJ_IS_SMALL_INT(o_in)) {
|
2014-03-29 09:43:38 -04:00
|
|
|
return (mp_obj_t)&mp_type_int;
|
2014-01-08 12:33:12 -05:00
|
|
|
} else if (MP_OBJ_IS_QSTR(o_in)) {
|
2014-03-29 09:43:38 -04:00
|
|
|
return (mp_obj_t)&mp_type_str;
|
2014-01-08 06:47:55 -05:00
|
|
|
} else {
|
|
|
|
mp_obj_base_t *o = o_in;
|
|
|
|
return (mp_obj_t)o->type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
const char *mp_obj_get_type_str(mp_obj_t o_in) {
|
2014-02-15 06:34:50 -05:00
|
|
|
return qstr_str(mp_obj_get_type(o_in)->name);
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void printf_wrapper(void *env, const char *fmt, ...) {
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
vprintf(fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2014-01-13 12:19:16 -05:00
|
|
|
void mp_obj_print_helper(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in, mp_print_kind_t kind) {
|
2014-01-22 09:35:10 -05:00
|
|
|
mp_obj_type_t *type = mp_obj_get_type(o_in);
|
|
|
|
if (type->print != NULL) {
|
|
|
|
type->print(print, env, o_in, kind);
|
2013-12-17 13:27:24 -05:00
|
|
|
} else {
|
2014-02-15 06:34:50 -05:00
|
|
|
print(env, "<%s>", qstr_str(type->name));
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-13 12:19:16 -05:00
|
|
|
void mp_obj_print(mp_obj_t o_in, mp_print_kind_t kind) {
|
|
|
|
mp_obj_print_helper(printf_wrapper, NULL, o_in, kind);
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
|
2014-01-19 07:38:49 -05:00
|
|
|
// helper function to print an exception with traceback
|
|
|
|
void mp_obj_print_exception(mp_obj_t exc) {
|
2014-02-15 11:10:44 -05:00
|
|
|
if (mp_obj_is_exception_instance(exc)) {
|
2014-01-19 07:38:49 -05:00
|
|
|
machine_uint_t n, *values;
|
|
|
|
mp_obj_exception_get_traceback(exc, &n, &values);
|
|
|
|
if (n > 0) {
|
2014-03-29 20:08:36 -04:00
|
|
|
assert(n % 3 == 0);
|
2014-01-19 07:38:49 -05:00
|
|
|
printf("Traceback (most recent call last):\n");
|
|
|
|
for (int i = n - 3; i >= 0; i -= 3) {
|
2014-01-29 16:51:51 -05:00
|
|
|
#if MICROPY_ENABLE_SOURCE_LINE
|
2014-01-19 07:38:49 -05:00
|
|
|
printf(" File \"%s\", line %d, in %s\n", qstr_str(values[i]), (int)values[i + 1], qstr_str(values[i + 2]));
|
2014-01-29 16:51:51 -05:00
|
|
|
#else
|
|
|
|
printf(" File \"%s\", in %s\n", qstr_str(values[i]), qstr_str(values[i + 2]));
|
|
|
|
#endif
|
2014-01-19 07:38:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mp_obj_print(exc, PRINT_REPR);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2014-03-30 08:35:08 -04:00
|
|
|
int mp_obj_is_true(mp_obj_t arg) {
|
|
|
|
if (arg == mp_const_false) {
|
|
|
|
return 0;
|
|
|
|
} else if (arg == mp_const_true) {
|
|
|
|
return 1;
|
|
|
|
} else if (arg == mp_const_none) {
|
|
|
|
return 0;
|
|
|
|
} else if (MP_OBJ_IS_SMALL_INT(arg)) {
|
|
|
|
if (MP_OBJ_SMALL_INT_VALUE(arg) == 0) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mp_obj_type_t *type = mp_obj_get_type(arg);
|
|
|
|
if (type->unary_op != NULL) {
|
|
|
|
mp_obj_t result = type->unary_op(MP_UNARY_OP_BOOL, arg);
|
|
|
|
if (result != MP_OBJ_NULL) {
|
|
|
|
return result == mp_const_true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t len = mp_obj_len_maybe(arg);
|
|
|
|
if (len != MP_OBJ_NULL) {
|
|
|
|
// obj has a length, truth determined if len != 0
|
|
|
|
return len != MP_OBJ_NEW_SMALL_INT(0);
|
|
|
|
} else {
|
|
|
|
// any other obj is true per Python semantics
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
bool mp_obj_is_callable(mp_obj_t o_in) {
|
2014-01-23 13:13:53 -05:00
|
|
|
return mp_obj_get_type(o_in)->call != NULL;
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
machine_int_t mp_obj_hash(mp_obj_t o_in) {
|
|
|
|
if (o_in == mp_const_false) {
|
2013-12-17 13:27:24 -05:00
|
|
|
return 0; // needs to hash to same as the integer 0, since False==0
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (o_in == mp_const_true) {
|
2013-12-17 13:27:24 -05:00
|
|
|
return 1; // needs to hash to same as the integer 1, since True==1
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (MP_OBJ_IS_SMALL_INT(o_in)) {
|
|
|
|
return MP_OBJ_SMALL_INT_VALUE(o_in);
|
2014-01-22 09:35:10 -05:00
|
|
|
} else if (MP_OBJ_IS_STR(o_in)) {
|
|
|
|
return mp_obj_str_get_hash(o_in);
|
2014-03-29 09:15:08 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(o_in, &mp_type_NoneType)) {
|
2013-12-17 13:27:24 -05:00
|
|
|
return (machine_int_t)o_in;
|
2014-03-29 09:43:38 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(o_in, &mp_type_fun_native) || MP_OBJ_IS_TYPE(o_in, &mp_type_fun_bc)) {
|
2014-03-20 15:20:59 -04:00
|
|
|
return (machine_int_t)o_in;
|
2014-03-29 09:15:08 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(o_in, &mp_type_tuple)) {
|
2014-03-20 15:20:59 -04:00
|
|
|
return mp_obj_tuple_hash(o_in);
|
|
|
|
|
|
|
|
// TODO hash class and instances
|
|
|
|
// TODO delegate to __hash__ method if it exists
|
|
|
|
|
2013-12-17 13:27:24 -05:00
|
|
|
} else {
|
2014-03-20 15:20:59 -04:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "unhashable type: '%s'", mp_obj_get_type_str(o_in)));
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function implements the '==' operator (and so the inverse of '!=')
|
|
|
|
// from the python language reference:
|
|
|
|
// "The objects need not have the same type. If both are numbers, they are converted
|
|
|
|
// to a common type. Otherwise, the == and != operators always consider objects of
|
|
|
|
// different types to be unequal."
|
|
|
|
// note also that False==0 and True==1 are true expressions
|
2013-12-21 13:17:45 -05:00
|
|
|
bool mp_obj_equal(mp_obj_t o1, mp_obj_t o2) {
|
2013-12-17 13:27:24 -05:00
|
|
|
if (o1 == o2) {
|
|
|
|
return true;
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (MP_OBJ_IS_SMALL_INT(o1) || MP_OBJ_IS_SMALL_INT(o2)) {
|
|
|
|
if (MP_OBJ_IS_SMALL_INT(o1) && MP_OBJ_IS_SMALL_INT(o2)) {
|
2013-12-17 13:27:24 -05:00
|
|
|
return false;
|
|
|
|
} else {
|
2013-12-21 13:17:45 -05:00
|
|
|
if (MP_OBJ_IS_SMALL_INT(o2)) {
|
|
|
|
mp_obj_t temp = o1; o1 = o2; o2 = temp;
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
// o1 is the SMALL_INT, o2 is not
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_small_int_t val = MP_OBJ_SMALL_INT_VALUE(o1);
|
|
|
|
if (o2 == mp_const_false) {
|
2013-12-17 13:27:24 -05:00
|
|
|
return val == 0;
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (o2 == mp_const_true) {
|
2013-12-17 13:27:24 -05:00
|
|
|
return val == 1;
|
2014-03-29 09:43:38 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(o2, &mp_type_int)) {
|
2014-01-13 09:29:14 -05:00
|
|
|
// If o2 is long int, dispatch to its virtual methods
|
|
|
|
mp_obj_base_t *o = o2;
|
|
|
|
if (o->type->binary_op != NULL) {
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_obj_t r = o->type->binary_op(MP_BINARY_OP_EQUAL, o2, o1);
|
2014-01-13 09:29:14 -05:00
|
|
|
return r == mp_const_true ? true : false;
|
|
|
|
}
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
2014-01-13 09:29:14 -05:00
|
|
|
return false;
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
2014-01-22 09:35:10 -05:00
|
|
|
} else if (MP_OBJ_IS_STR(o1) && MP_OBJ_IS_STR(o2)) {
|
|
|
|
return mp_obj_str_equal(o1, o2);
|
2013-12-17 13:27:24 -05:00
|
|
|
} else {
|
2014-01-11 18:55:50 -05:00
|
|
|
mp_obj_base_t *o = o1;
|
|
|
|
if (o->type->binary_op != NULL) {
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_obj_t r = o->type->binary_op(MP_BINARY_OP_EQUAL, o1, o2);
|
2014-01-11 18:55:50 -05:00
|
|
|
if (r != MP_OBJ_NULL) {
|
|
|
|
return r == mp_const_true ? true : false;
|
|
|
|
}
|
|
|
|
}
|
2014-02-10 12:43:41 -05:00
|
|
|
|
2014-02-15 11:10:44 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_NotImplementedError,
|
2014-02-10 12:43:41 -05:00
|
|
|
"Equality for '%s' and '%s' types not yet implemented", mp_obj_get_type_str(o1), mp_obj_get_type_str(o2)));
|
2013-12-17 13:27:24 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
bool mp_obj_less(mp_obj_t o1, mp_obj_t o2) {
|
|
|
|
if (MP_OBJ_IS_SMALL_INT(o1) && MP_OBJ_IS_SMALL_INT(o2)) {
|
|
|
|
mp_small_int_t i1 = MP_OBJ_SMALL_INT_VALUE(o1);
|
|
|
|
mp_small_int_t i2 = MP_OBJ_SMALL_INT_VALUE(o2);
|
2013-12-17 16:35:38 -05:00
|
|
|
return i1 < i2;
|
|
|
|
} else {
|
|
|
|
assert(0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
machine_int_t mp_obj_get_int(mp_obj_t arg) {
|
|
|
|
if (arg == mp_const_false) {
|
2013-12-17 13:27:24 -05:00
|
|
|
return 0;
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (arg == mp_const_true) {
|
2013-12-17 13:27:24 -05:00
|
|
|
return 1;
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (MP_OBJ_IS_SMALL_INT(arg)) {
|
|
|
|
return MP_OBJ_SMALL_INT_VALUE(arg);
|
2014-03-29 09:43:38 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(arg, &mp_type_int)) {
|
2014-01-18 09:07:16 -05:00
|
|
|
return mp_obj_int_get_checked(arg);
|
2013-12-17 13:27:24 -05:00
|
|
|
} else {
|
2014-02-15 11:10:44 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "can't convert %s to int", mp_obj_get_type_str(arg)));
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if MICROPY_ENABLE_FLOAT
|
2014-03-08 10:24:39 -05:00
|
|
|
mp_float_t mp_obj_get_float(mp_obj_t arg) {
|
2013-12-21 13:17:45 -05:00
|
|
|
if (arg == mp_const_false) {
|
2013-12-17 13:27:24 -05:00
|
|
|
return 0;
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (arg == mp_const_true) {
|
2013-12-17 13:27:24 -05:00
|
|
|
return 1;
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (MP_OBJ_IS_SMALL_INT(arg)) {
|
|
|
|
return MP_OBJ_SMALL_INT_VALUE(arg);
|
2014-03-29 09:43:38 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(arg, &mp_type_int)) {
|
2014-03-22 16:54:01 -04:00
|
|
|
return mp_obj_int_as_float(arg);
|
2014-03-08 10:24:39 -05:00
|
|
|
} else if (MP_OBJ_IS_TYPE(arg, &mp_type_float)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
return mp_obj_float_get(arg);
|
2013-12-17 13:27:24 -05:00
|
|
|
} else {
|
2014-02-15 11:10:44 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "can't convert %s to float", mp_obj_get_type_str(arg)));
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
void mp_obj_get_complex(mp_obj_t arg, mp_float_t *real, mp_float_t *imag) {
|
|
|
|
if (arg == mp_const_false) {
|
2013-12-17 13:27:24 -05:00
|
|
|
*real = 0;
|
|
|
|
*imag = 0;
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (arg == mp_const_true) {
|
2013-12-17 13:27:24 -05:00
|
|
|
*real = 1;
|
|
|
|
*imag = 0;
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (MP_OBJ_IS_SMALL_INT(arg)) {
|
|
|
|
*real = MP_OBJ_SMALL_INT_VALUE(arg);
|
2013-12-17 13:27:24 -05:00
|
|
|
*imag = 0;
|
2014-03-29 13:28:20 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(arg, &mp_type_int)) {
|
|
|
|
*real = mp_obj_int_as_float(arg);
|
|
|
|
*imag = 0;
|
2014-03-08 10:24:39 -05:00
|
|
|
} else if (MP_OBJ_IS_TYPE(arg, &mp_type_float)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
*real = mp_obj_float_get(arg);
|
2013-12-17 13:27:24 -05:00
|
|
|
*imag = 0;
|
2014-03-08 10:24:39 -05:00
|
|
|
} else if (MP_OBJ_IS_TYPE(arg, &mp_type_complex)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_complex_get(arg, real, imag);
|
2013-12-17 13:27:24 -05:00
|
|
|
} else {
|
2014-02-15 11:10:44 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "can't convert %s to complex", mp_obj_get_type_str(arg)));
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-03-24 06:47:13 -04:00
|
|
|
void mp_obj_get_array(mp_obj_t o, uint *len, mp_obj_t **items) {
|
2014-03-29 09:15:08 -04:00
|
|
|
if (MP_OBJ_IS_TYPE(o, &mp_type_tuple)) {
|
2014-03-24 06:47:13 -04:00
|
|
|
mp_obj_tuple_get(o, len, items);
|
2014-03-29 09:43:38 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(o, &mp_type_list)) {
|
2014-03-24 06:47:13 -04:00
|
|
|
mp_obj_list_get(o, len, items);
|
|
|
|
} else {
|
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "object '%s' is not a tuple or list", mp_obj_get_type_str(o)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void mp_obj_get_array_fixed_n(mp_obj_t o, uint len, mp_obj_t **items) {
|
2014-03-29 09:43:38 -04:00
|
|
|
if (MP_OBJ_IS_TYPE(o, &mp_type_tuple) || MP_OBJ_IS_TYPE(o, &mp_type_list)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
uint seq_len;
|
2014-03-29 09:15:08 -04:00
|
|
|
if (MP_OBJ_IS_TYPE(o, &mp_type_tuple)) {
|
2014-03-24 06:47:13 -04:00
|
|
|
mp_obj_tuple_get(o, &seq_len, items);
|
2013-12-21 13:17:45 -05:00
|
|
|
} else {
|
2014-03-24 06:47:13 -04:00
|
|
|
mp_obj_list_get(o, &seq_len, items);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-03-24 06:47:13 -04:00
|
|
|
if (seq_len != len) {
|
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_IndexError, "requested length %d but object has length %d", len, seq_len));
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
} else {
|
2014-03-24 06:47:13 -04:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "object '%s' is not a tuple or list", mp_obj_get_type_str(o)));
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-13 01:57:16 -04:00
|
|
|
// is_slice determines whether the index is a slice index
|
|
|
|
uint mp_get_index(const mp_obj_type_t *type, machine_uint_t len, mp_obj_t index, bool is_slice) {
|
|
|
|
int i;
|
2013-12-21 13:17:45 -05:00
|
|
|
if (MP_OBJ_IS_SMALL_INT(index)) {
|
2014-03-13 01:57:16 -04:00
|
|
|
i = MP_OBJ_SMALL_INT_VALUE(index);
|
2014-03-29 09:15:08 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(index, &mp_type_bool)) {
|
2014-03-13 03:29:15 -04:00
|
|
|
i = (index == mp_const_true ? 1 : 0);
|
2013-12-21 13:17:45 -05:00
|
|
|
} else {
|
2014-02-15 11:10:44 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "%s indices must be integers, not %s", qstr_str(type->name), mp_obj_get_type_str(index)));
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
2014-03-13 01:57:16 -04:00
|
|
|
|
|
|
|
if (i < 0) {
|
2014-03-13 03:29:15 -04:00
|
|
|
i += len;
|
2014-03-13 01:57:16 -04:00
|
|
|
}
|
|
|
|
if (is_slice) {
|
2014-03-13 03:29:15 -04:00
|
|
|
if (i < 0) {
|
|
|
|
i = 0;
|
|
|
|
} else if (i > len) {
|
|
|
|
i = len;
|
|
|
|
}
|
2014-03-13 01:57:16 -04:00
|
|
|
} else {
|
2014-03-13 03:29:15 -04:00
|
|
|
if (i < 0 || i >= len) {
|
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_IndexError, "%s index out of range", qstr_str(type->name)));
|
|
|
|
}
|
2014-03-13 01:57:16 -04:00
|
|
|
}
|
|
|
|
return i;
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
2014-01-10 06:25:03 -05:00
|
|
|
|
2014-01-11 14:22:29 -05:00
|
|
|
// may return MP_OBJ_NULL
|
2014-01-10 06:25:03 -05:00
|
|
|
mp_obj_t mp_obj_len_maybe(mp_obj_t o_in) {
|
2014-01-22 09:35:10 -05:00
|
|
|
if (MP_OBJ_IS_STR(o_in)) {
|
2014-01-30 05:05:33 -05:00
|
|
|
return MP_OBJ_NEW_SMALL_INT((machine_int_t)mp_obj_str_get_len(o_in));
|
2014-01-10 06:25:03 -05:00
|
|
|
} else {
|
2014-01-29 21:37:19 -05:00
|
|
|
mp_obj_type_t *type = mp_obj_get_type(o_in);
|
|
|
|
if (type->unary_op != NULL) {
|
2014-03-30 08:35:08 -04:00
|
|
|
return type->unary_op(MP_UNARY_OP_LEN, o_in);
|
2014-01-30 05:05:33 -05:00
|
|
|
} else {
|
|
|
|
return MP_OBJ_NULL;
|
2014-01-29 21:37:19 -05:00
|
|
|
}
|
2014-01-10 06:25:03 -05:00
|
|
|
}
|
|
|
|
}
|
2014-01-20 11:37:30 -05:00
|
|
|
|
|
|
|
// Return input argument. Useful as .getiter for objects which are
|
|
|
|
// their own iterators, etc.
|
|
|
|
mp_obj_t mp_identity(mp_obj_t self) {
|
|
|
|
return self;
|
|
|
|
}
|
2014-02-08 14:57:19 -05:00
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(mp_identity_obj, mp_identity);
|