summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.c
Commit message (Expand)AuthorAge
* 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
* py: Allow to pass buffer protocol flags to get_buffer helper funcs.Damien George2014-04-18
* py: Add typecode to buffer protocol.Damien George2014-04-18
* py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George2014-04-17
* py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George2014-04-17
* py: Add len(bytes).Damien George2014-04-15
* py: Fix SyntaxError exception: don't have a block name, so pass NULL.Damien George2014-04-13
* py: Fix mp_get_buffer, and use it in more places.Damien George2014-04-13
* py: Make bytes type hashable.Paul Sokolovsky2014-04-13
* py: Convert some macros to inline functions (in obj.h).Damien George2014-04-11
* py: Fix up object equality test.Damien George2014-04-11
* py: Simplify and improve mp_get_index.Damien George2014-04-11
* py: Implement float and complex == and !=.Damien George2014-04-11
* py: Check that sequence has 2 elements for dict iterable constructor.Damien George2014-04-11
* py: Add mp_obj_is_integer; make mp_get_index check for long int.Damien George2014-04-09
* py: Add mp_get_buffer(), mp_get_buffer_raise() convenience functions to API.Paul Sokolovsky2014-04-09
* py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George2014-04-05
* mp_obj_get_int(): Add warning against adding implicit float->int conversion.Paul Sokolovsky2014-04-05
* py: Allow types to be hashable.Paul Sokolovsky2014-04-05
* py: Remove mp_obj_less (use mp_binary_op(MP_BINARY_OP_LESS..) instead).Damien George2014-04-04
* py: More robust int conversion and overflow checking.Damien George2014-04-03
* py: Remove implicit conversion from int to float.Damien George2014-04-01
* Enhance str.format supportDave Hylands2014-04-01
* objexcept: No more magic messages in exceptions, only exception arguments.Paul Sokolovsky2014-03-31
* py: Add equality test for None object.Damien George2014-03-30
* Merge map.h into obj.h.Damien George2014-03-30
* Rename rt_* to mp_*.Damien George2014-03-30
* mp_obj_print_exception(): Assert that traceback has sane number of entries.Paul Sokolovsky2014-03-30
* py: Support mpz -op- float, mpz -op- complex, and complex -op- mpz.Damien George2014-03-29
* py: Rename old const type objects to mp_type_* for consistency.Damien George2014-03-29
* py: Change mp_const_* objects to macros.Damien George2014-03-29
* py: Remove obsolete declarations; make mp_obj_get_array consistent.Damien George2014-03-24
* py: Add function to convert long int to float.Damien George2014-03-22
* py: Allow hashing of functions and tuples.Damien George2014-03-20
* py: Clean up includes.xbe2014-03-17
* Fix issues in str.count implementation.xbe2014-03-13
* Implement str.count and add tests for it.xbe2014-03-12
* Implement ROMable modules. Add math module.Damien George2014-03-08
* Implement proper exception type hierarchy.Damien George2014-02-15
* Change mp_obj_type_t.name from const char * to qstr.Damien George2014-02-15
* mp_obj_equal(): Instead of assert(), throw NotImplementedError.Paul Sokolovsky2014-02-11
* unix microsocket: Add dummy makefile() method.Paul Sokolovsky2014-02-08
* py: Tidy up BINARY_OPs; negation done by special NOT bytecode.Damien George2014-02-01
* py: Improve __bool__ and __len__ dispatch; add slots for them.Damien George2014-01-30
* Implement __bool__ and __len__ via unary_op virtual method for all types.Paul Sokolovsky2014-01-30
* py: Add compile option to enable/disable source line numbers.Damien George2014-01-29
* py: Simpler implementation of mp_obj_callable.Damien George2014-01-23
* mp_obj_is_callable(): Only object types can be callable.Paul Sokolovsky2014-01-23