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-03-22
py: Add 'object' object.
Damien George
2014-03-22
py: Add function to convert long int to float.
Damien George
2014-03-22
Added exception hierarchy except for OSError and UnicodeError (requires argum...
Rachel Dowdall
2014-03-20
Added ZeroDivisionError to float division.
Rachel Dowdall
2014-03-20
py: Allow hashing of functions and tuples.
Damien George
2014-03-12
Implement str.count and add tests for it.
xbe
2014-03-12
py: Implement integer overflow checking for * and << ops.
Damien George
2014-03-08
Implement ROMable modules. Add math module.
Damien George
2014-03-03
py: Factor and improve issubclass.
Damien George
2014-03-03
Add mp_obj_is_subclass_fast() - intended for fast argument checking.
Paul Sokolovsky
2014-02-26
py: Reduce size of mp_obj_fun_native_t struct by packing ints.
Damien George
2014-02-26
py: Take out bitfield entries from their own structure.
Damien George
2014-02-26
py: Remove name of var arg from macros with var args.
Damien George
2014-02-22
Add arbitrary precision integer support.
Damien George
2014-02-16
Support passing positional args as keywords to bytecode functions.
Paul Sokolovsky
2014-02-16
py: Implement *vargs support.
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-12
Remove mp_obj_new_exception_msg_1_arg and _2_arg.
Damien George
2014-02-10
Factor out mp_seq_count_obj() and implement tuple.count().
Paul Sokolovsky
2014-02-10
Factor out mp_seq_index_obj() function to implement .index() on sequences.
Paul Sokolovsky
2014-02-08
Implement tuple addition.
Paul Sokolovsky
2014-02-08
Refactor list comparison code to mp_seq_cmp_objs().
Paul Sokolovsky
2014-02-08
unix microsocket: Add dummy makefile() method.
Paul Sokolovsky
2014-02-08
Make mp_obj_str_get_data return char* instead of byte*.
Damien George
2014-02-06
Add staticmethod and classmethod to builtin namespace.
Damien George
2014-02-05
py: Add built-in super.
Damien George
2014-02-02
Fix thinko with how bitfields were added to mp_obj_fun_native_t.
Paul Sokolovsky
2014-02-02
Implement str/bytes rich comparisons.
Paul Sokolovsky
2014-02-02
Implement slicing for lists.
Paul Sokolovsky
2014-02-02
Factor out m_seq_get_fast_slice_indexes() fucntions as sequence helper.
Paul Sokolovsky
2014-02-01
Implement default function arguments (for Python functions).
Paul Sokolovsky
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
[next]