index
:
micropython
docs/library/bluetooth
master
parse-bytecode
v1.22-release
v1.24-release
MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
Aslak Raanes
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
py
/
objfun.c
Commit message (
Expand
)
Author
Age
*
py: Make globals and locals proper dictionary objects.
Damien George
2014-04-05
*
py: Change nlr_jump to nlr_raise, to aid in debugging.
Damien George
2014-04-05
*
objfun: Add equality support.
Paul Sokolovsky
2014-04-05
*
py: Disable dump_args function call entirely when not debugging.
Damien George
2014-03-31
*
objgenerator: Handle default args to generator functions.
Paul Sokolovsky
2014-03-30
*
Merge map.h into obj.h.
Damien George
2014-03-30
*
Rename rt_* to mp_*.
Damien George
2014-03-30
*
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-29
*
py: Put n_state for bytecode in the bytecode prelude.
Damien George
2014-03-27
*
py: Clean up includes.
xbe
2014-03-17
*
Implement ROMable modules. Add math module.
Damien George
2014-03-08
*
py: Fix overriding of default arguments.
Damien George
2014-03-03
*
py: Remove more var arg names fro macros with var args.
Damien George
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
*
Add pin mapping code.
Dave Hylands
2014-02-17
*
Support passing positional args as keywords to bytecode functions.
Paul Sokolovsky
2014-02-16
*
py: Pass keyword arguments to byte code.
Damien George
2014-02-16
*
py: Implement *vargs support.
Damien George
2014-02-16
*
py: VM never throws an exception, instead returns a status and value.
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-15
*
Remove mp_obj_new_exception_msg_1_arg and _2_arg.
Damien George
2014-02-12
*
Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.
Paul Sokolovsky
2014-02-12
*
py: Pass keyword args to native functions by using the stack.
Damien George
2014-02-08
*
py: mp_execute_byte_code has 2 arg arrays, for more efficient default params.
Damien George
2014-02-01
*
Implement default function arguments (for Python functions).
Paul Sokolovsky
2014-02-01
*
Functions of fixed number of args are special-cased only for 3 or less args.
Paul Sokolovsky
2014-01-26
*
Second stage of qstr revamp: uPy str object can be qstr or not.
Damien George
2014-01-22
*
Revamp qstrs: they now include length and hash.
Damien George
2014-01-21
*
Make VM stack grow upwards, and so no reversed args arrays.
Damien George
2014-01-18
*
Merge remote-tracking branch 'upstream/master' into builtins
John R. Lenton
2014-01-13
|
\
|
*
Consolidate rt_make_function_[0123] to rt_make_function_n.
Damien George
2014-01-13
|
*
Initialize is_kw for dynamically allocated mp_obj_fun_native_t ojects.
Dave Hylands
2014-01-13
*
|
Made sorted() raise an exception instead of aborting when given no arguments;...
John R. Lenton
2014-01-13
|
/
*
py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.
Damien George
2014-01-08
*
Merge remote-tracking branch 'upstream/master' into listsort. Lots of conflic...
John R. Lenton
2014-01-07
|
\
|
*
Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-c...
Damien George
2014-01-07
|
|
\
|
|
*
Co-exist with C++ (issue #85)
ian-v
2014-01-06
|
|
/
*
/
This implements a better (more python-conformant) list.sort.
John R. Lenton
2014-01-07
|
/
*
Merge pull request #92 from chipaca/list_insert
Damien George
2014-01-05
|
\
|
*
Merge remote-tracking branch 'upstream/master' into list_insert
John R. Lenton
2014-01-05
|
|
\
|
*
|
Implements list.insert. Fixes issue #61.
John R. Lenton
2014-01-04
*
|
|
Convert many object types structs to use C99 tagged initializer syntax.
Paul Sokolovsky
2014-01-05
|
|
/
|
/
|
*
|
Convert Python types to proper Python type hierarchy.
Damien George
2014-01-04
*
|
Split qstr into pools, and put initial pool in ROM.
Damien George
2014-01-04
|
/
*
Basic implementation of import.
Damien George
2014-01-03
*
Change memory allocation API to require size for free and realloc.
Damien
2013-12-29
*
Change object representation from 1 big union to individual structs.
Damien
2013-12-21