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
Age
Commit message (
Expand
)
Author
2015-12-07
py: Add MICROPY_PY_BUILTINS_MIN_MAX, disable for minimal ports.
pohmelie
2015-12-07
py: Make it easy to build without MICROPY_PY_BUILTINS_COMPLEX.
Paul Sokolovsky
2015-12-05
py/modsys: Use MP_ROM_PTR() initializer for sys.modules.
Paul Sokolovsky
2015-12-05
py/modsys: Implement sys.modules.
Paul Sokolovsky
2015-12-03
py: Fix function calls that have positional and a star-arg-with-iterator.
Damien George
2015-12-03
py/mpconfig: Actually allow to override MICROPY_BYTES_PER_GC_BLOCK.
Paul Sokolovsky
2015-12-03
py/gc: Make GC block size be configurable.
Paul Sokolovsky
2015-12-02
py/mpprint: Printing of doubles is now supported (by uPy own routine).
fabien.lementec
2015-11-29
py: Add support for 64-bit NaN-boxing object model, on 32-bit machine.
Damien George
2015-11-29
py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.
Damien George
2015-11-29
py: Add MP_ROM_* macros and mp_rom_* types and use them.
Damien George
2015-11-29
py/gc: Move away from using mp_uint_t, instead use uintptr_t and size_t.
Damien George
2015-11-29
py: Use uintptr_t instead of mp_uint_t in MP_TAGPTR_* macros.
Damien George
2015-11-29
py: Make mp_setup_code_state take concrete pointer for func arg.
Damien George
2015-11-29
py/emit: Change type of arg of load_const_obj from void* to mp_obj_t.
Damien George
2015-11-29
py: Change qstr_* functions to use size_t as the type for str len arg.
Damien George
2015-11-29
py: Change mp_print_strn_t func type to use size_t for the str length.
Damien George
2015-11-27
py/asmx86: Fix function definition to use int32_t instead of int.
Damien George
2015-11-27
py/binary: Make use of MP_ALIGN.
Damien George
2015-11-25
py/mpconfig.h: Allow to build without alloca() for ANSI C compliance.
Paul Sokolovsky
2015-11-25
extmod/fsusermount: Make configurable with MICROPY_FSUSERMOUNT.
Paul Sokolovsky
2015-11-25
extmod: Move fsusermount.c from stmhal for cross-port reuse.
Paul Sokolovsky
2015-11-24
windows/py: Support 64bit mingw-w64 builds
stijn
2015-11-24
nlr: Use single preprocessor symbol to check if building on Windows
stijn
2015-11-23
py/compile: Do proper checking of * and ** in function definition.
Damien George
2015-11-23
py: Check that second argument to hasattr is actually a string.
Damien George
2015-11-23
py/emitglue: Implement persistent saving and loading of const objects.
Damien George
2015-11-23
py/emitglue: Add feature-flag header to .mpy to detect bytecode compat.
Damien George
2015-11-22
py/mpz: Normalize (remove leading zeros) xor operation result.
Paul Sokolovsky
2015-11-22
py/formatfloat: Handle calculation of integer digit for %f format properly.
Paul Sokolovsky
2015-11-22
py/formatfloat: Workaround (fix?) incorrect rounding for %f format.
Paul Sokolovsky
2015-11-22
py/formatfloat: Convert to fully portable implementation.
Paul Sokolovsky
2015-11-21
py/emitglue: Host definition of mp_verbose_flag.
Paul Sokolovsky
2015-11-21
py/modsys: Consistently use indented #if's.
Paul Sokolovsky
2015-11-20
py: Use MP_OBJ_NULL instead of NULL when appropriate.
Damien George
2015-11-20
py/emitglue: Add mp_raw_code_load_mem to load raw-code from memory.
Damien George
2015-11-20
py/emitglue: Only compile raw-code fatfs loader when on thumb2 platform.
Damien George
2015-11-20
py/compile: Add mp_compile_to_raw_code() to return raw code object.
Damien George
2015-11-19
py: Added Cygwin support to py/nlrx86.S.
Igor Gatis
2015-11-19
py/map: Store key/value in earliest possible slot in hash table.
Damien George
2015-11-17
py/mpstate: Make mp_pending_exception volatile.
Damien George
2015-11-17
py/modmath: Make log2, log10 and hyperbolic funcs be SPECIAL_FUNCTIONS.
Damien George
2015-11-17
py: Implement default and star args for lambdas.
Damien George
2015-11-17
py/compile: Don't unnecessarily save state when compiling param list.
Damien George
2015-11-14
py/modmath: Don't create symbol entry for expm1() if not needed.
Paul Sokolovsky
2015-11-14
py/modmath: Make expm1() be in MICROPY_PY_MATH_SPECIAL_FUNCTIONS.
Paul Sokolovsky
2015-11-13
unix/mpconfigport: Move log2() definition to modmath.c.
Paul Sokolovsky
2015-11-13
py: Allow to import compiled bytecode files.
Damien George
2015-11-13
py: Add MICROPY_PERSISTENT_CODE_LOAD/SAVE to load/save bytecode.
Damien George
2015-11-13
py: Add MICROPY_PERSISTENT_CODE so code can persist beyond the runtime.
Damien George
[next]