micropython/py
Nicko van Someren df0117c8ae py: Added optimised support for 3-argument calls to builtin.pow()
Updated modbuiltin.c to add conditional support for 3-arg calls to
pow() using MICROPY_PY_BUILTINS_POW3 config parameter. Added support in
objint_mpz.c for for optimised implementation.
2017-02-02 22:23:10 +03:00
..
argcheck.c
asmarm.c py/asmarm: Fix assembler's PASS_EMIT constant name. 2017-01-03 15:40:50 +11:00
asmarm.h
asmbase.c
asmbase.h
asmthumb.c
asmthumb.h
asmx64.c
asmx64.h
asmx86.c
asmx86.h
asmxtensa.c
asmxtensa.h
bc.c
bc.h py/showbc: Make sure to set the const_table before printing bytecode. 2017-01-27 12:34:09 +11:00
bc0.h
binary.c py/binary: mp_binary_get_size: Raise error on unsupported typecodes. 2017-01-17 22:53:06 +03:00
binary.h
builtin.h py: Add builtin help function to core, with default help msg. 2017-01-22 11:56:16 +11:00
builtinevex.c
builtinhelp.c py/builtinhelp: Implement help('modules') to list available modules. 2017-01-22 12:12:54 +11:00
builtinimport.c py: Move weak-link map to objmodule.c, and expose module maps as public. 2017-01-22 11:59:29 +11:00
compile.c
compile.h
emit.h
emitbc.c
emitcommon.c
emitglue.c py/emitglue: Refactor to remove assert(0), to improve coverage. 2016-12-21 11:52:05 +11:00
emitglue.h
emitinlinethumb.c
emitinlinextensa.c
emitnative.c py/emitnative: Remove assert(0)'s or replace with mp_not_implemented. 2017-01-17 17:02:21 +11:00
formatfloat.c py/formatfloat: Remove unreachable code. 2017-01-19 23:32:16 +11:00
formatfloat.h
frozenmod.c
frozenmod.h
gc.c
gc.h
grammar.h
lexer.c extmod/vfs_fat: Remove MICROPY_READER_FATFS component. 2017-01-30 12:26:07 +11:00
lexer.h py/lexer: Permanently disable the mp_lexer_show_token function. 2016-12-22 10:49:54 +11:00
makeqstrdata.py
makeqstrdefs.py
makeversionhdr.py
malloc.c
map.c
misc.h cc3200: Re-add support for UART REPL (MICROPY_STDIO_UART setting). 2016-12-27 01:05:37 +03:00
mkenv.mk
mkrules.mk py/mkrules.mk: Add MPY_CROSS_FLAGS option to pass flags to mpy-cross. 2017-01-05 15:51:36 +11:00
modarray.c
modbuiltins.c py: Added optimised support for 3-argument calls to builtin.pow() 2017-02-02 22:23:10 +03:00
modcmath.c
modcollections.c
modgc.c
modio.c
modmath.c
modmicropython.c
modstruct.c py/binary: mp_binary_get_size: Raise error on unsupported typecodes. 2017-01-17 22:53:06 +03:00
modsys.c
modthread.c
moduerrno.c
mpconfig.h py: Added optimised support for 3-argument calls to builtin.pow() 2017-02-02 22:23:10 +03:00
mperrno.h
mphal.h
mpprint.c py/mpprint: Add assertion for, and comment about, valid base values. 2016-12-28 12:45:33 +11:00
mpprint.h
mpstate.c
mpstate.h extmod: Remove MICROPY_FSUSERMOUNT and related files. 2017-01-30 12:26:07 +11:00
mpthread.h
mpz.c py: Added optimised support for 3-argument calls to builtin.pow() 2017-02-02 22:23:10 +03:00
mpz.h py: Added optimised support for 3-argument calls to builtin.pow() 2017-02-02 22:23:10 +03:00
nativeglue.c
nlr.h
nlrsetjmp.c
nlrthumb.c
nlrx64.S unix: Make stack be non-executable 2017-02-01 23:03:10 +03:00
nlrx86.S unix: Make stack be non-executable 2017-02-01 23:03:10 +03:00
nlrxtensa.S unix: Make stack be non-executable 2017-02-01 23:03:10 +03:00
obj.c py/objint: Rename mp_obj_int_as_float to mp_obj_int_as_float_impl. 2016-12-21 11:46:27 +11:00
obj.h py/objint: Rename mp_obj_int_as_float to mp_obj_int_as_float_impl. 2016-12-21 11:46:27 +11:00
objarray.c py/binary: mp_binary_get_size: Raise error on unsupported typecodes. 2017-01-17 22:53:06 +03:00
objarray.h
objattrtuple.c
objbool.c
objboundmeth.c
objcell.c
objclosure.c
objcomplex.c py/objcomplex: Correctly handle case of 0j to power of something. 2017-02-03 00:01:45 +11:00
objdict.c
objenumerate.c
objexcept.c py/objexcept: Replace if-cond and assert(0) with simple assert. 2017-01-17 17:03:16 +11:00
objexcept.h
objfilter.c
objfloat.c py/objfloat: Raise ZeroDivisionError for 0 to negative power. 2017-02-03 00:01:37 +11:00
objfun.c
objfun.h
objgenerator.c py/objgenerator: Don't raise RuntimeError if GeneratorExit ignored. 2017-01-17 00:16:56 +11:00
objgenerator.h
objgetitemiter.c
objint.c py/objint: Fix left-shift overflow in checking for large int. 2017-01-25 14:39:13 +11:00
objint.h py: Added optimised support for 3-argument calls to builtin.pow() 2017-02-02 22:23:10 +03:00
objint_longlong.c py/objint_longlong: Add stub for mp_obj_int_from_bytes_impl(). 2017-01-21 20:15:05 +03:00
objint_mpz.c py: Added optimised support for 3-argument calls to builtin.pow() 2017-02-02 22:23:10 +03:00
objlist.c
objlist.h
objmap.c
objmodule.c py/objmodule: Move module init/deinit code into runtime functions. 2017-01-26 23:30:38 +11:00
objmodule.h py/objmodule: Move module init/deinit code into runtime functions. 2017-01-26 23:30:38 +11:00
objnamedtuple.c
objnone.c
objobject.c
objpolyiter.c
objproperty.c
objrange.c
objreversed.c
objset.c py/objset: Fix inplace binary ops so frozensets are not modified. 2017-02-03 00:27:56 +11:00
objsingleton.c
objslice.c
objstr.c py/objstr: Optimize string concatenation with empty string. 2017-01-27 00:49:39 +03:00
objstr.h
objstringio.c py/objstringio: Allow to specify initial capacity by passing numeric argument. 2017-02-02 00:33:43 +03:00
objstringio.h
objstrunicode.c
objtuple.c
objtuple.h
objtype.c
objtype.h
objzip.c
opmethods.c
parse.c py/parse: Refactor code to remove assert(0)'s. 2017-01-17 17:00:55 +11:00
parse.h
parsenum.c py/parsenum: Fix warning for signed/unsigned comparison. 2016-12-28 12:25:00 +11:00
parsenum.h
parsenumbase.c
parsenumbase.h
persistentcode.c
persistentcode.h
py.mk extmod: Remove MICROPY_FSUSERMOUNT and related files. 2017-01-30 12:26:07 +11:00
qstr.c
qstr.h
qstrdefs.h extmod: Add generic VFS sub-system. 2017-01-27 17:19:06 +11:00
reader.c
reader.h
repl.c
repl.h
ringbuf.h
runtime.c extmod: Add generic VFS sub-system. 2017-01-27 17:19:06 +11:00
runtime.h
runtime0.h
runtime_utils.c
scope.c
scope.h
sequence.c
showbc.c py/showbc: Make sure to set the const_table before printing bytecode. 2017-01-27 12:34:09 +11:00
smallint.c
smallint.h
stackctrl.c
stackctrl.h
stream.c
stream.h
unicode.c py/unicode: Comment-out unused function unichar_isprint. 2016-12-28 17:50:10 +11:00
unicode.h
vm.c py/showbc: Make sure to set the const_table before printing bytecode. 2017-01-27 12:34:09 +11:00
vmentrytable.h
vstr.c
warning.c