aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
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
2014-08-26py: Add dispatch for user defined ==, >, <=, >=.Damien George
2014-08-25tests: Add test for pyb.disable_irq and pyb.enable_irq.Damien George
2014-08-24py: Consolidate min/max functions into one, and add key= argument.Damien George
2014-08-24stmhal, modtime: Small changes, reduced code size by around 80 bytes.Damien George
2014-08-24py: Fix bug where GC collected native/viper/asm function data.Damien George
2014-08-16py: Viper can call functions with native types, and raise exceptions.Damien George
2014-08-16tests: Wait for just over 1 sec when testing RTC.Damien George
2014-08-15py: Viper can now store to global.Damien George
2014-08-15py: Fix typing of viper locals; allow default types in annotation.Damien George
2014-08-15py: Allow viper to have type annotations.Damien George
2014-08-13py: Fix mult by negative number of tuple, list, str, bytes.Damien George
2014-08-12extmod: Finish rename of zlib to zlibd; enable zlibd on stmhal.Damien George
2014-08-13tests: Add test for zlibd module.Paul Sokolovsky
2014-08-12py: Improve range: add len, subscr, proper print.Damien George
2014-08-12py: Implement builtin reversed() function.Damien George
2014-08-11objstr: Make sure that bytes are indexed as bytes, not as unicode.Paul Sokolovsky
2014-08-10objarray: Implement equality testing between arrays and other buffers.Paul Sokolovsky
2014-08-08tests, pyb: Update pin test.Damien George
2014-07-28py: Implement __file__ attribute for modules.Paul Sokolovsky
2014-07-22tests: Add testcase for read by length past EOF.Paul Sokolovsky
2014-07-19py: Add stream reading of n unicode chars; unicode support by default.Damien George
2014-07-13test: Add run-tests-exp.sh, script to run testsuite with only sh dependency.Paul Sokolovsky
2014-07-12run-tests: Add option to write CPython's test results to .exp files.Paul Sokolovsky
2014-07-11moductypes: Add symbolic constants to specify bitfield position/length.Paul Sokolovsky
2014-07-09moductypes: Foreign data interface module, roughly based on ctype ideas.Paul Sokolovsky
2014-07-05tests: Rename test scripts, changing - to _ for consistency.Damien George
2014-07-05py: Automatically ake __new__ a staticmethod.Damien George
2014-06-28tests: Write output in byte mode, not text mode.Damien George
2014-06-28Merge branch 'master' into unicodeDamien George
2014-06-28py: Add protection against printing too nested or recursive data structures.Paul Sokolovsky
2014-06-27tests: Add basic test for unicode file i/o.Paul Sokolovsky
2014-06-27tests: Test for explicit start/end args to str methods for unicode.Paul Sokolovsky
2014-06-27tests: Add tests for unicode find()/rfind()/index().Paul Sokolovsky
2014-06-27tests: Add test for unicode string iteration.Paul Sokolovsky
2014-06-27tests: Add unicode test.Chris Angelico
2014-06-27tests: Add test for catching infinite function recursion.Paul Sokolovsky
2014-06-25modstruct: Fix alignment handling issues.Paul Sokolovsky
2014-06-20tests/float/: Skip tests if "math" module is not available.Paul Sokolovsky