summaryrefslogtreecommitdiff
path: root/py/obj.c
AgeCommit message (Expand)Author
2014-09-07py: Rename mp_builtin_id to mp_obj_id and make it public.Damien George
2014-08-30py: Small simplifications in tuple and list accessors.Damien George
2014-08-30py: Remove use of int type in obj.h.Damien George
2014-08-30py: Make tuple and list use mp_int_t/mp_uint_t.Damien George
2014-08-24py: Fix bug where GC collected native/viper/asm function data.Damien George
2014-08-12py: Implement builtin reversed() function.Damien George
2014-08-10py: mp_buffer_info_t::buf may be valid, but NULL for empty objects.Paul Sokolovsky
2014-07-31py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself.Damien George
2014-07-24py: Make long ints hashable.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-07-01stackctrl: Add "mp_" prefix.Paul Sokolovsky
2014-06-28Merge branch 'master' into unicodeDamien George
2014-06-28py: Add protection against printing too nested or recursive data structures.Paul Sokolovsky
2014-06-27objstrunicode: Revamp len() handling for unicode, and optimize bool().Paul Sokolovsky
2014-06-20py: Separate MICROPY_PY_BUILTINS_COMPLEX from MICROPY_PY_BUILTINS_FLOAT.Paul Sokolovsky
2014-06-01Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George
2014-05-21py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL.Damien George
2014-05-17py: More const usage.Paul Sokolovsky
2014-05-11py: Fix __len__ special method result handling.Paul Sokolovsky
2014-05-11py: Start making good use of mp_const_obj_t.Paul Sokolovsky
2014-05-10py: Make mp_obj_print() handle null object w/o segfault if debug build.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-05-02py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-04-18py: Allow to pass buffer protocol flags to get_buffer helper funcs.Damien George
2014-04-18py: Add typecode to buffer protocol.Damien George
2014-04-17py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George
2014-04-17py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George
2014-04-15py: Add len(bytes).Damien George
2014-04-13py: Fix SyntaxError exception: don't have a block name, so pass NULL.Damien George
2014-04-13py: Fix mp_get_buffer, and use it in more places.Damien George
2014-04-13py: Make bytes type hashable.Paul Sokolovsky
2014-04-11py: Convert some macros to inline functions (in obj.h).Damien George
2014-04-11py: Fix up object equality test.Damien George
2014-04-11py: Simplify and improve mp_get_index.Damien George
2014-04-11py: Implement float and complex == and !=.Damien George
2014-04-11py: Check that sequence has 2 elements for dict iterable constructor.Damien George
2014-04-09py: Add mp_obj_is_integer; make mp_get_index check for long int.Damien George
2014-04-09py: Add mp_get_buffer(), mp_get_buffer_raise() convenience functions to API.Paul Sokolovsky
2014-04-05py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George
2014-04-05mp_obj_get_int(): Add warning against adding implicit float->int conversion.Paul Sokolovsky
2014-04-05py: Allow types to be hashable.Paul Sokolovsky
2014-04-04py: Remove mp_obj_less (use mp_binary_op(MP_BINARY_OP_LESS..) instead).Damien George
2014-04-03py: More robust int conversion and overflow checking.Damien George
2014-04-01py: Remove implicit conversion from int to float.Damien George
2014-04-01Enhance str.format supportDave Hylands
2014-03-31objexcept: No more magic messages in exceptions, only exception arguments.Paul Sokolovsky
2014-03-30py: Add equality test for None object.Damien George
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-30mp_obj_print_exception(): Assert that traceback has sane number of entries.Paul Sokolovsky