You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Damien George 349e4c4a2f py: Add --dirty flag to git describe. 11 years ago
..
argcheck.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
asmthumb.c py: Add 'align' and 'data' meta-instructions to inline assembler. 11 years ago
asmthumb.h py: Add 'align' and 'data' meta-instructions to inline assembler. 11 years ago
asmx64.c Replace global "static" -> "STATIC", to allow "analysis builds". Part 2. 11 years ago
asmx64.h Revert MP_BOOL, etc. and use <stdbool.h> instead 11 years ago
bc.h vm: Add rudimentary bytecode execution tracing capability. 11 years ago
bc0.h py: Remove unnecessary LOAD_CONST_ID bytecode. 11 years ago
binary.c modstruct: Add 'O' typecode for passing mp_obj_t. 11 years ago
binary.h modstruct: Initial implementation of struct.pack(). 11 years ago
builtin.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
builtin.h py: Make built-in 'range' a class. 11 years ago
builtinevex.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
builtinimport.c py: Use <alloca.h> for alloca() 11 years ago
builtintables.c Add ARRAY_SIZE macro, and use it where possible. 11 years ago
builtintables.h py: Make globals and locals proper dictionary objects. 11 years ago
compile.c py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg. 11 years ago
compile.h py, compiler: Clean up and compress scope/compile structures. 11 years ago
emit.h py: Remove unnecessary LOAD_CONST_ID bytecode. 11 years ago
emitbc.c py: Remove unnecessary LOAD_CONST_ID bytecode. 11 years ago
emitcommon.c Merge pull request #471 from errordeveloper/misc_fix/unistd 11 years ago
emitcpy.c py: Remove unnecessary LOAD_CONST_ID bytecode. 11 years ago
emitglue.c py: Implement keyword-only args. 11 years ago
emitglue.h py: Implement keyword-only args. 11 years ago
emitinlinethumb.c py: Implement keyword-only args. 11 years ago
emitnative.c py: Remove unnecessary LOAD_CONST_ID bytecode. 11 years ago
emitpass1.c py: Remove unnecessary LOAD_CONST_ID bytecode. 11 years ago
formatfloat.c Enhance str.format support 11 years ago
formatfloat.h Rename formatfloat file; remove MICROPY_ENABLE_FLOAT from mpconfigport.h. 11 years ago
gc.c py, gc: Only zero out the extra bytes at the end of the heap chunk. 11 years ago
gc.h py: Improve GC locking/unlocking, and make it part of the API. 11 years ago
grammar.h py: Change the way function arguments are compiled. 11 years ago
lexer.c py: Fix lexer so it doesn't allow ! and .. 11 years ago
lexer.h Search paths properly on import and execute __init__.py if it exists. 11 years ago
lexerstr.c py: Clean up includes. 11 years ago
lexerunix.c py: Fix lexerunix, where not all data may be read from a file. 11 years ago
lexerunix.h Move lexerstr to main py directory (everyone uses it). 11 years ago
makeqstrdata.py More relaxed parsing of preprocessed qstr header 11 years ago
malloc.c py, gc: Only zero out the extra bytes at the end of the heap chunk. 11 years ago
map.c py: Fix bug in map lookup of interned string vs non-interned. 11 years ago
misc.h Add ARRAY_SIZE macro, and use it where possible. 11 years ago
mkenv.mk Have make remove targets if a recipie fails. 11 years ago
mkrules.mk build: Simplify build directory layout by putting all headers in genhdr. 11 years ago
modarray.c Add ARRAY_SIZE macro, and use it where possible. 11 years ago
modcmath.c stmhal: Enable cmath module. 11 years ago
modcollections.c Add ARRAY_SIZE macro, and use it where possible. 11 years ago
modio.c modio: Implement io.StringIO class. 11 years ago
modmath.c Add ARRAY_SIZE macro, and use it where possible. 11 years ago
modmicropython.c Add ARRAY_SIZE macro, and use it where possible. 11 years ago
modstruct.c Add ARRAY_SIZE macro, and use it where possible. 11 years ago
modsys.c Add ARRAY_SIZE macro, and use it where possible. 11 years ago
mpconfig.h py: Add tentative scheme for error messages configuration. 11 years ago
mpz.c py: Add comment mpz function, and free memory used for string printing. 11 years ago
mpz.h Add string formatting support for longlong and mpz. 11 years ago
nlr.h py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
nlrsetjmp.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
nlrthumb.S py: If setjmp NLR implementation is forced, omit native versions. 11 years ago
nlrx64.S py: If setjmp NLR implementation is forced, omit native versions. 11 years ago
nlrx86.S py: If setjmp NLR implementation is forced, omit native versions. 11 years ago
obj.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
obj.h objclosure, objcell: Print detailed representation if was requested. 11 years ago
objarray.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objarray.h py: Make bytearray a proper type. 11 years ago
objbool.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objboundmeth.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objcell.c objclosure, objcell: Print detailed representation if was requested. 11 years ago
objclosure.c objclosure, objcell: Print detailed representation if was requested. 11 years ago
objcomplex.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objdict.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objenumerate.c py: Add MP_OBJ_STOP_ITERATION and make good use of it. 11 years ago
objexcept.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objfilter.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objfloat.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objfun.c Merge pull request #552 from stinos/mingw-alloca 11 years ago
objfun.h py: Implement keyword-only args. 11 years ago
objgenerator.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objgenerator.h py: Swap around the double return value of mp_obj_gen_resume. 11 years ago
objgetitemiter.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objint.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objint.h py: Make it so that printing a small int does not allocate heap memory. 11 years ago
objint_longlong.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objint_mpz.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objlist.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objlist.h objlist: Add support for statically allocated lists. 11 years ago
objmap.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objmodule.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objmodule.h Proper support for registering builtin modules in ROM. 11 years ago
objnamedtuple.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objnone.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objobject.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objproperty.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objrange.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objset.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objslice.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objstr.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objstr.h py: Add builtin functions bin and oct, and some tests for them. 11 years ago
objstringio.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objtuple.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
objtuple.h py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 11 years ago
objtype.c py, objtype.c: Rename class_ to instance_ following change of typedef. 11 years ago
objtype.h objtype: Rename mp_obj_class_t -> mp_obj_instance_t and move to local header. 11 years ago
objzip.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
opmethods.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
parse.c py: Check explicitly for memory allocation failure in parser. 11 years ago
parse.h py: Check explicitly for memory allocation failure in parser. 11 years ago
parsehelper.c py: Fix SyntaxError exception: don't have a block name, so pass NULL. 11 years ago
parsehelper.h py: Add traceback info to syntax errors. 11 years ago
parsenum.c Remove exception name from inside the exception message 11 years ago
parsenum.h py: Allow 'complex()' to take a string as first argument. 11 years ago
parsenumbase.c py: Implement bit-shift and not operations for mpz. 11 years ago
parsenumbase.h py: Implement bit-shift and not operations for mpz. 11 years ago
pfenv.c py: Fix pfenv_print_strn to return correct number of chars printed. 11 years ago
pfenv.h py: Reinstate old pfenv_print_int function for stmhal's printf. 11 years ago
py-version.sh py: Add --dirty flag to git describe. 11 years ago
py.mk modio: Implement io.StringIO class. 11 years ago
qstr.c build: Simplify build directory layout by putting all headers in genhdr. 11 years ago
qstr.h build: Simplify build directory layout by putting all headers in genhdr. 11 years ago
qstrdefs.h py: Remove silly comment about interning keywords. 11 years ago
repl.c py: Continue line if last character is backslash. 11 years ago
repl.h Improve REPL detecting when input needs to continue. 11 years ago
runtime.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
runtime.h Simplify names for argcheck.c / arg parsing. 11 years ago
runtime0.h py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 11 years ago
scope.c py: Implement keyword-only args. 11 years ago
scope.h py: Implement keyword-only args. 11 years ago
sequence.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
showbc.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
smallint.c py: This time, real proper overflow checking of small int power. 11 years ago
smallint.h py: This time, real proper overflow checking of small int power. 11 years ago
stream.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
stream.h stream: Add generic unbuffered iternext method. 11 years ago
unicode.c py: Make form-feed character a space (following C isspace). 11 years ago
vm.c py, unix: Make "mpconfig.h" be first included, as other headers depend on it. 11 years ago
vmentrytable.h py: Remove unnecessary LOAD_CONST_ID bytecode. 11 years ago
vstr.c py: Fix vstr_init for case that alloc = 0. 11 years ago