index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
obj.c
Age
Commit message (
Expand
)
Author
2014-04-09
py: Add mp_get_buffer(), mp_get_buffer_raise() convenience functions to API.
Paul Sokolovsky
2014-04-05
py: Change nlr_jump to nlr_raise, to aid in debugging.
Damien George
2014-04-05
mp_obj_get_int(): Add warning against adding implicit float->int conversion.
Paul Sokolovsky
2014-04-05
py: Allow types to be hashable.
Paul Sokolovsky
2014-04-04
py: Remove mp_obj_less (use mp_binary_op(MP_BINARY_OP_LESS..) instead).
Damien George
2014-04-03
py: More robust int conversion and overflow checking.
Damien George
2014-04-01
py: Remove implicit conversion from int to float.
Damien George
2014-04-01
Enhance str.format support
Dave Hylands
2014-03-31
objexcept: No more magic messages in exceptions, only exception arguments.
Paul Sokolovsky
2014-03-30
py: Add equality test for None object.
Damien George
2014-03-30
Merge map.h into obj.h.
Damien George
2014-03-30
Rename rt_* to mp_*.
Damien George
2014-03-30
mp_obj_print_exception(): Assert that traceback has sane number of entries.
Paul Sokolovsky
2014-03-29
py: Support mpz -op- float, mpz -op- complex, and complex -op- mpz.
Damien George
2014-03-29
py: Rename old const type objects to mp_type_* for consistency.
Damien George
2014-03-29
py: Change mp_const_* objects to macros.
Damien George
2014-03-24
py: Remove obsolete declarations; make mp_obj_get_array consistent.
Damien George
2014-03-22
py: Add function to convert long int to float.
Damien George
2014-03-20
py: Allow hashing of functions and tuples.
Damien George
2014-03-17
py: Clean up includes.
xbe
2014-03-13
Fix issues in str.count implementation.
xbe
2014-03-12
Implement str.count and add tests for it.
xbe
2014-03-08
Implement ROMable modules. Add math module.
Damien George
2014-02-15
Implement proper exception type hierarchy.
Damien George
2014-02-15
Change mp_obj_type_t.name from const char * to qstr.
Damien George
2014-02-11
mp_obj_equal(): Instead of assert(), throw NotImplementedError.
Paul Sokolovsky
2014-02-08
unix microsocket: Add dummy makefile() method.
Paul Sokolovsky
2014-02-01
py: Tidy up BINARY_OPs; negation done by special NOT bytecode.
Damien George
2014-01-30
py: Improve __bool__ and __len__ dispatch; add slots for them.
Damien George
2014-01-30
Implement __bool__ and __len__ via unary_op virtual method for all types.
Paul Sokolovsky
2014-01-29
py: Add compile option to enable/disable source line numbers.
Damien George
2014-01-23
py: Simpler implementation of mp_obj_callable.
Damien George
2014-01-23
mp_obj_is_callable(): Only object types can be callable.
Paul Sokolovsky
2014-01-22
Second stage of qstr revamp: uPy str object can be qstr or not.
Damien George
2014-01-22
py: Remove implicit conversion of float to int in mp_obj_get_int().
Damien George
2014-01-21
Add len() support for arrays.
Paul Sokolovsky
2014-01-21
Merge branch 'master' of github.com:micropython/micropython
Damien George
2014-01-21
Revamp qstrs: they now include length and hash.
Damien George
2014-01-20
mp_obj_get_type_str(): Handle MP_OBJ_QSTR.
Paul Sokolovsky
2014-01-20
mp_identity(): Add generic identity function.
Paul Sokolovsky
2014-01-20
mp_obj_get_qstr(): Handle MP_OBJ_QSTR.
Paul Sokolovsky
2014-01-20
Properly print MP_OBJ_QSTR objects.
Paul Sokolovsky
2014-01-19
py: Add full traceback to exception printing.
Damien George
2014-01-18
Merge branch 'master' of github.com:dpgeorge/micropython
Damien George
2014-01-18
int: Add value accessors: mp_obj_int_get() & mp_obj_int_get_checked().
Paul Sokolovsky
2014-01-18
Make VM stack grow upwards, and so no reversed args arrays.
Damien George
2014-01-15
type->print(): Distinguish str() and repr() variety by passing extra param.
Paul Sokolovsky
2014-01-13
mp_obj_equal(): Compare small and long ints properly.
Paul Sokolovsky
2014-01-12
mp_obj_equal(): For non-trivial types, call out to type's special method.
Paul Sokolovsky
2014-01-11
py: Implement staticmethod and classmethod (internally).
Damien George
[prev]
[next]