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.h
Age
Commit message (
Expand
)
Author
2014-01-29
py: Simplify fastn in VM; reduce size of unique code struct.
Damien George
2014-01-29
mp_obj_new_bytearray_by_ref(): Allow to create array by reference.
Paul Sokolovsky
2014-01-28
Factor out quoted string print function for reuse (mp_str_print_quoted()).
Paul Sokolovsky
2014-01-26
Add MP_OBJ_IS_INT(), for symmetry with MP_OBJ_IS_STR().
Paul Sokolovsky
2014-01-25
Implement mp_parse_node_free; print properly repr(string).
Damien George
2014-01-25
py: Implement iterator support for object that has __getitem__.
Damien George
2014-01-24
Add basic implementation of bytes type, piggybacking on str.
Paul Sokolovsky
2014-01-22
Second stage of qstr revamp: uPy str object can be qstr or not.
Damien George
2014-01-21
Add len() support for arrays.
Paul Sokolovsky
2014-01-21
sequence.c: Start to refactor sequence operations for reuse among types.
Paul Sokolovsky
2014-01-20
mp_identity(): Add generic identity function.
Paul Sokolovsky
2014-01-20
Properly print MP_OBJ_QSTR objects.
Paul Sokolovsky
2014-01-20
Implement modules as singletons Python semantics.
Paul Sokolovsky
2014-01-19
Change int to uint for n_args in function with variable arguments.
Damien George
2014-01-19
py: Add full traceback to exception printing.
Damien George
2014-01-19
py: Add module/function/class name to exceptions.
Damien George
2014-01-18
Merge pull request #192 from pfalcon/arrays
Damien George
2014-01-18
Add source file name and line number to error messages.
Damien George
2014-01-18
Add skeleton implementation of array.array and bytearray.
Paul Sokolovsky
2014-01-18
Merge pull request #191 from pfalcon/store-item
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-18
Add store_item() virtual method to type to implement container[index] = val.
Paul Sokolovsky
2014-01-15
stm: Fix print methods with new kind argument.
Damien George
2014-01-15
Merge branch 'str2int' of github.com:xyb/micropython into xyb-str2int
Damien George
2014-01-15
Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-repr
Damien George
2014-01-15
added filter()
John R. Lenton
2014-01-15
Added map
John R. Lenton
2014-01-15
type->print(): Distinguish str() and repr() variety by passing extra param.
Paul Sokolovsky
2014-01-14
Merge remote-tracking branch 'upstream/master' into builtins
John R. Lenton
2014-01-14
added enumerate()
John R. Lenton
2014-01-14
Tidy up.
Damien George
2014-01-14
Implemented int(str) in UNIX
xyb
2014-01-13
Made sorted() raise an exception instead of aborting when given no arguments;...
John R. Lenton
2014-01-13
Cleaned up sorted() as per Damien's suggestions.
John R. Lenton
2014-01-13
added zip()
John R. Lenton
2014-01-12
Add framework to support alternative implementations of long int Python type.
Paul Sokolovsky
2014-01-12
Add proper checks for fits-in-small-int. Make it reusable.
Paul Sokolovsky
2014-01-11
py: Implement staticmethod and classmethod (internally).
Damien George
2014-01-11
unified the bops
John R. Lenton
2014-01-10
Added dict.fromkeys. Are we done with dict and #99 yet? I do think we are.
John R. Lenton
2014-01-09
py: Implement base class lookup, issubclass, isinstance.
Damien George
2014-01-09
Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.
Damien George
2014-01-08
py: add variable argument exception constructor function.
Damien George
2014-01-08
Merge pull request #114 from pfalcon/streams-bootstrap
Damien George
2014-01-08
py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.
Damien George
2014-01-08
Add support for stream and buffer protocols.
Paul Sokolovsky
2014-01-08
py: Improve __build_class__.
Damien George
2014-01-07
py: Small big fix to type declarations.
Damien George
[next]