aboutsummaryrefslogtreecommitdiff
path: root/unix
AgeCommit message (Expand)Author
2014-05-01py: Add tentative scheme for error messages configuration.Paul Sokolovsky
2014-04-26py: "read" & "write" are so common that make them core.Paul Sokolovsky
2014-04-26Add ARRAY_SIZE macro, and use it where possible.Damien George
2014-04-26modsocket: Make .send() support arbitrary objects with buffer interface.Paul Sokolovsky
2014-04-22unix: Workaround MP_OBJ_NEW_SMALL_INT() 64-bit issues.Paul Sokolovsky
2014-04-22modsocket: Clean up OSError-like exception a bit.Paul Sokolovsky
2014-04-22unix: OSError's args[0] should be errno numeric value.Paul Sokolovsky
2014-04-22modffi: Don't use OSError for clearly unrelated errors.Paul Sokolovsky
2014-04-22modffi: Describe typecodes where they differ from used by struct module.Paul Sokolovsky
2014-04-21Merge pull request #513 from errordeveloper/misc_fix/modffi_pkg_configDamien George
2014-04-20unix windows: mingw32 doesn't have realpath(), use _fullpath() instead.Paul Sokolovsky
2014-04-20unix file: mingw32 has STDIN_FILENO and friends in stdio.h .Paul Sokolovsky
2014-04-20unix mem_info(): Dump GC info only if it's enabled.Paul Sokolovsky
2014-04-20modsocket: Add setblocking() method.Paul Sokolovsky
2014-04-20modffi: Fix how we call `pkg-config`Ilya Dmitrichenko
2014-04-19modffi: Update for MP_OBJ_STOP_ITERATION refactor.Paul Sokolovsky
2014-04-19modffi: Mark 'p' type spec deprecated, replace with 'P'.Paul Sokolovsky
2014-04-18py: Allow to pass buffer protocol flags to get_buffer helper funcs.Damien George
2014-04-18unix: Update to use new buffer protocol interface with typecode.Damien George
2014-04-17py: Rename USE_COMPUTED_GOTOS to USE_COMPUTED_GOTO and enable on stmhal.Damien George
2014-04-18unix modffi: Convert to static module structures.Paul Sokolovsky
2014-04-17unix modsocket: Convert to static module structures.Paul Sokolovsky
2014-04-17unix: Make mem_info() dump GC info too.Paul Sokolovsky
2014-04-17unix modtime: Convert to static module structures.Paul Sokolovsky
2014-04-17unix modtime: Adhere to MICROPY_ENABLE_FLOAT better.Paul Sokolovsky
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 #505 from lurch/patch-5Damien 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-17modffi: Support float types.Paul Sokolovsky
2014-04-17Updated the envvar used by ./run-testsAndrew Scheller
2014-04-16build directory can now be renamedAndrew Scheller
2014-04-16Add 'test' target to unix/MakefileAndrew Scheller
2014-04-16New config option MICROPY_FORCE_32BIT (defaulted to 0)Andrew Scheller
2014-04-15Move entry_table to separated header file.AZ Huang
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-13py: Add property object, with basic functionality.Damien George
2014-04-13stmhal: Update for static mod sys.Paul Sokolovsky
2014-04-13py: Move sys attribute qstrs's to core.Paul Sokolovsky
2014-04-13py, unix: Convert sys module to static representation.Paul Sokolovsky
2014-04-13unix: Enable modffi by default.Paul Sokolovsky
2014-04-11unix: Update comment in gccollect.cxbe
2014-04-11modffi: Update for latest binary API refactors.Paul Sokolovsky
2014-04-10unix: Add option to only compile, and not execute code.Damien George
2014-04-09py: Add mp_get_buffer(), mp_get_buffer_raise() convenience functions to API.Paul Sokolovsky
2014-04-08unix modffi: Support any object implementing buffer protocol as a native arg.Paul Sokolovsky
2014-04-08unix: Oops, remove nlr_jump test in main.Damien George
2014-04-08Add a check for NULL nlr_top in nlr_jump.Damien George