summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.c
Commit message (Expand)AuthorAge
* py: Fix passing of some wide int types to printf varg format list.Damien George2016-03-14
* py: Change exception traceback data to use size_t instead of mp_uint_t.Damien George2016-01-02
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Make float representation configurable with object representation.Damien George2015-10-20
* py: Add mp_obj_is_float function (macro) and use it where appropriate.Damien George2015-10-20
* py: Inline single use of mp_obj_str_get_len in mp_obj_len_maybe.Damien George2015-09-03
* py: Add mp_obj_get_int_truncated and use it where appropriate.Damien George2015-05-12
* py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.Damien George2015-05-12
* obj: Handle user instance hash based on Python adhoc rules.Paul Sokolovsky2015-05-05
* objsingleton: New home for Ellipsis and NotImplemented.Paul Sokolovsky2015-05-05
* modbuiltins: Add NotImplemented builtin constant.Paul Sokolovsky2015-05-04
* py: Add %q format support to mp_[v]printf, and use it.Damien George2015-04-16
* py: Make mp_sys_stdout_print object, wrapping sys.stdout for mp_print*.Damien George2015-04-16
* py: Overhaul and simplify printf/pfenv mechanism.Damien George2015-04-16
* py: Use a dummy type for referring to extern structsstijn2015-04-09
* py: Fix mp_obj_print() to work when Python streams are not used.Paul Sokolovsky2015-02-17
* py: Revamp mp_obj_print() to use Python streams.Paul Sokolovsky2015-02-17
* py: Check for NDEBUG using #ifdef rather than #if.Damien George2015-01-25
* py, unix: Allow to compile with -Wsign-compare.Damien George2015-01-16
* py: Can compile with -Wmissing-declarations and -Wmissing-prototypes.Damien George2015-01-12
* py: Implement fallback for equality check for all types.Damien George2015-01-11
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* modsys: Add sys.print_exception(exc, file=sys.stdout) function.Paul Sokolovsky2014-12-08
* py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack.Damien George2014-12-05
* py: Use __hash__ method if a type defines itstijn2014-11-15
* py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled.Damien George2014-11-06
* py: Fix builtin callable so it checks user-defined instances correctly.Damien George2014-11-03
* py: Rename mp_builtin_id to mp_obj_id and make it public.Damien George2014-09-07
* py: Small simplifications in tuple and list accessors.Damien George2014-08-30
* py: Remove use of int type in obj.h.Damien George2014-08-30
* py: Make tuple and list use mp_int_t/mp_uint_t.Damien George2014-08-30
* py: Fix bug where GC collected native/viper/asm function data.Damien George2014-08-24
* py: Implement builtin reversed() function.Damien George2014-08-12
* py: mp_buffer_info_t::buf may be valid, but NULL for empty objects.Paul Sokolovsky2014-08-10
* py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself.Damien George2014-07-31
* py: Make long ints hashable.Damien George2014-07-24
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* stackctrl: Add "mp_" prefix.Paul Sokolovsky2014-07-01
* Merge branch 'master' into unicodeDamien George2014-06-28
|\
| * py: Add protection against printing too nested or recursive data structures.Paul Sokolovsky2014-06-28
* | objstrunicode: Revamp len() handling for unicode, and optimize bool().Paul Sokolovsky2014-06-27
|/
* py: Separate MICROPY_PY_BUILTINS_COMPLEX from MICROPY_PY_BUILTINS_FLOAT.Paul Sokolovsky2014-06-20
* Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George2014-06-01
* py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL.Damien George2014-05-21
* py: More const usage.Paul Sokolovsky2014-05-17
* py: Fix __len__ special method result handling.Paul Sokolovsky2014-05-11
* py: Start making good use of mp_const_obj_t.Paul Sokolovsky2014-05-11
* py: Make mp_obj_print() handle null object w/o segfault if debug build.Paul Sokolovsky2014-05-10
* Add license header to (almost) all files.Damien George2014-05-03
* py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky2014-05-02