aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2014-04-18Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-04-18py: Add mp_binary_set_val_array_from_int, to store an int directly.Damien George
2014-04-18py: Allow to pass buffer protocol flags to get_buffer helper funcs.Damien George
2014-04-18py: Add typecode to buffer protocol.Damien George
2014-04-18py: Tidy up function argument error messages.Damien George
2014-04-18py: Tidy up array.array; add more error handling.Damien George
2014-04-18sequence: Further simplify sequence comparison.Paul Sokolovsky
2014-04-18sequence: Fix glaring bug in sequence comparison.Paul Sokolovsky
2014-04-18objfloat: Try to achieve the same float printing format as CPython does.Paul Sokolovsky
2014-04-18inlinethumb: Add wfi, cpsid and cpsie instructions.Damien George
2014-04-18py: from import * should not import symbols starting with underscore.Paul Sokolovsky
2014-04-17py: Rename USE_COMPUTED_GOTOS to USE_COMPUTED_GOTO and enable on stmhal.Damien George
2014-04-17py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George
2014-04-17py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George
2014-04-17py: Simplify objfun/objgenerator connection, no need to call bc_get.Damien George
2014-04-17Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-04-17py: Fix pfenv_print_strn to return correct number of chars printed.Damien George
2014-04-17objgenerator: Generator must execute in its defining lexical context.Paul Sokolovsky
2014-04-17objfun: Add local header.Paul Sokolovsky
2014-04-17py: Make built-in 'range' a class.Damien George
2014-04-17build: Simplify build directory layout by putting all headers in genhdr.Damien George
2014-04-17Merge branch 'relocatable-build-dir' of github.com:lurch/micropython into lur...Damien George
2014-04-17Merge pull request #507 from pfalcon/nlr-setjmpDamien George
2014-04-17Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-04-17py: Add cmath module, for complex math. Disabled by default.Damien George
2014-04-17py: Enable builtin 'property' by default.Damien George
2014-04-17py: Tidy up variables in VM, probably fixes subtle bugs.Damien George
2014-04-17py: Don't assert but go to unsupported_op in mp_binary_op for small int.Damien George
2014-04-17Merge pull request #501 from dhylands/fix-gen-failDamien George
2014-04-17nlr: Add implementation using setjmp/longjmp.Paul Sokolovsky
2014-04-16build directory can now be renamedAndrew Scheller
2014-04-16Have make remove targets if a recipie fails.Dave Hylands
2014-04-15py: Add len(bytes).Damien George
2014-04-15py: Add builtin functions bin and oct, and some tests for them.Damien George
2014-04-15Merge pull request #493 from aitjcize/patchDamien George
2014-04-15Rename header file.AZ Huang
2014-04-15py: Fix builtin hex to print prefix.Damien George
2014-04-15py: Add hex builtin function.Damien George
2014-04-15Move entry_table to separated header file.AZ Huang
2014-04-14Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-04-14py: Clean up and add comments to makeqstrdata.Damien George
2014-04-15builtinimport: Add basic support for namespace packages.Paul Sokolovsky
2014-04-15py: Implement __delitem__ method for classes.Paul Sokolovsky
2014-04-14Merge pull request #479 from lurch/patch-1Damien George
2014-04-14Make USE_COMPUTED_GOTO a config option in mpconfig.h.Damien George
2014-04-15Use computed goto instead of switching op-codes.AZ Huang
2014-04-15Fix parallel build.AZ Huang
2014-04-14Don't allow both ENDIANNESSes to be setAndrew Scheller
2014-04-14modsys: Implement sys.version.Paul Sokolovsky
2014-04-14objstr: Allow to define statically allocated str objects.Paul Sokolovsky