summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
2014-10-25tests: Add test for compile builtin.Damien George
2014-10-23stream: Add optional 2nd "length" arg to .readinto() - extension to CPython.Paul Sokolovsky
2014-10-23py: Add builtin memoryview object (mostly using array code).Damien George
2014-10-22extmod: Add uheapq module.Damien George
2014-10-22py: Fix smallint modulo with negative arguments.Damien George
2014-10-22py: Remove unused and unneeded SystemError exception.Damien George
2014-10-21stmhal: Overhaul UART class to use read/write, and improve it.v1.3.4Damien George
2014-10-21Use mode/encoding kwargs in io and unicode testsstijn
2014-10-19py: Partially fix viper multi-comparison; add test for it.Damien George
2014-10-18unix, stmhal: Implement file.readinto() method.Paul Sokolovsky
2014-10-17modure: Update to re1.5 v0.6.1, fixed and extended character class support.Paul Sokolovsky
2014-10-17py: Add more compiler optimisations for constant if/while conditions.Damien George
2014-10-17tests: Add test for nested while with exc and break.Damien George
2014-10-16objclosure: Fix printing of generator closures.Paul Sokolovsky
2014-10-15modure: Update to re1.5 v0.6, support for char sets/classes ([a-c]).Paul Sokolovsky
2014-10-12Merge pull request #904 from pfalcon/moduzlibDamien George
2014-10-13moduzlib: Integrate into the system.Paul Sokolovsky
2014-10-12py: Implement native load for viper.Damien George
2014-10-12py: Implement and,or,xor native ops for viper.Damien George
2014-10-11modure: Basic tests.Paul Sokolovsky
2014-10-06tests: Skip ffi_float.py if module ffi is not available.Paul Sokolovsky
2014-10-06tests: Add missing "import sys".Paul Sokolovsky
2014-10-06tests: Force skip of LE test on non-LE arch; improve run-tests-exp.sh.Damien George
2014-10-06tests: Make run-tests-exp.sh skip tests that fail due to invalid decorator.Damien George
2014-10-05tests: Add check for micropython.native and then skip relevant tests.Damien George
2014-10-05py: Make compiler return a proper exception on SyntaxError.Damien George
2014-10-05tests: Make printing of floats hopefully more portable.Damien George
2014-10-05Exclude some tests which always fail on windowsstijn
2014-10-02tests: Add simple CAN test.Damien George
2014-10-01Enable device keyword option when running pyboard.py --tests and run-tests --...blmorris
2014-09-30py: Remove IOError since it's deprecated; use OSError instead.Damien George
2014-09-29py: Fix viper store on x86; add tests for viper ptr16.Damien George
2014-09-29py: Add casting to viper; add native mem stores to viper.Damien George
2014-09-29tests: Add tests for viper binary operations.Damien George
2014-09-29py: Allow viper to use ints as direct conditionals in jumps.Damien George
2014-09-25py: Simplify JSON str printing (while still conforming to JSON spec).Damien George
2014-09-25Change allows tests/unix/ffi_float.py to pass on OSXblmorris
2014-09-25tests: Add test for exception matching of a tuple of exceptions.Damien George
2014-09-23py: Make native emitter handle multi-compare and not/is not/not in ops.Damien George
2014-09-23tests: Fix uctypes tests to run on 64bit arch; enable more native tests.Damien George
2014-09-21extmod, ujson: Add test and comment for loads.Damien George
2014-09-17py: Add native json printing using existing print framework.Damien George
2014-09-13py: Fix build error when float disabled; add test for divmod.Damien George
2014-09-13py: Implement divmod, % and proper // for floating point.Damien George
2014-09-06tests: Enable misc tests on pyboard; output 4 sig figs in rge_sm.Damien George
2014-09-06unix: Don't use -Wno-error=cpp or #warning; fix strict alias warning.Damien George
2014-09-06py: Make mpz able to use 16 bits per digit; and 32 on 64-bit arch.Damien George
2014-08-29py: Fix 2 bugs in native emitter: jump_or_pop and stack settling.Damien George
2014-08-29tests: Add option to run-tests to enable native emitter.Damien George
2014-08-26Make int(b'123') work properly.Dave Hylands