aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
2015-07-19modbuiltins: Implement round() to precision.Sebastian Plamauer
2015-07-08modmachine: Implement physical memory access using /dev/mem (Linux, etc).Paul Sokolovsky
2015-07-06tests: Catch ValueError instead of any exception to properly test error.Damien George
2015-07-04extmod: Add a2b_base64 and b2a_base64 functions to ubinascii.Galen Hazelwood
2015-06-27tests: Add test for relative import without package context.Paul Sokolovsky
2015-06-25py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George
2015-06-25tests: Split out json float tests to separate files.Damien George
2015-06-25tests: Add support for the WiPy in run-tests script.Daniel Campora
2015-06-24tests: Adapt misc/features.py tests for ports without floating point.Daniel Campora
2015-06-24tests: Adapt basics/memoryerror.py for ports with lower heap sizes.Daniel Campora
2015-06-21tests: Add testcase for open(..., "a").Paul Sokolovsky
2015-06-20py: Use a wrapper to explicitly check self argument of builtin methods.Damien George
2015-06-15tests: Check that machine module exists and print SKIP if it doesn't.Damien George
2015-06-13py: Implement divmod for mpz bignum.Damien George
2015-06-13py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.Damien George
2015-06-13py: Implement second arg for math.log (optional value for base).Damien George
2015-06-09py: Support unicode (utf-8 encoded) identifiers in Python source.Damien George
2015-06-08py: Fallback to stack alloca for Python-stack if heap alloc fails.Damien George
2015-06-06moductypes: Swap address and descriptor args in constructor.Paul Sokolovsky
2015-06-04unix: Allow to cat a script into stdin from the command line.Damien George
2015-06-04py: Implement native multiply operation in viper emitter.Damien George
2015-06-04py: Implement implicit cast to obj for viper load/store index/value.Damien George
2015-06-03tests: Add test for recursive iternext stack overflow.Damien George
2015-05-28tests: Add special tests to test mp_printf function to improve coverage.Damien George
2015-05-28tests: Add some tests for printing floats to improve coverage.Damien George
2015-05-28py: Remove unnecessary extra handling of padding of nan/inf.Damien George
2015-05-28tests: Add tests to create valid and invalid UART, I2C, SPI, CAN busses.Damien George
2015-05-27unix: Add option to use uPy readline, and enable by default.Damien George
2015-05-21lib: Fix some issues in timeutilsDave Hylands
2015-05-20extmod: Add ubinascii.unhexlifyDave Hylands
2015-05-17py: Implement mp_format_float for doubles and use where appropriatestijn
2015-05-13py: Fix printing of complex number when imaginary part is nanstijn
2015-05-12unix: Add some extra coverage tests for vstr and attrtuple.Damien George
2015-05-12tests: Add further tests for class defining __hash__.Damien George
2015-05-12py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.Damien George
2015-05-11vm: Properly handle StopIteration raised in user instance iterator.Paul Sokolovsky
2015-05-11sthmal/rtc.c: Add calibration() method to get/set RTC fine-tuning value.blmorris
2015-05-10py: iternext() may not return MP_OBJ_NULL, only MP_OBJ_STOP_ITERATION.Paul Sokolovsky
2015-05-08unix: Make extra-coverage function callable from Python scripts.Damien George
2015-05-08tests: Add test for machine module (mem* functions).Damien George
2015-05-06unix-cpy: Fix adjustment of stack size when leaving exception handler.Damien George
2015-05-06py: Fix naming of function arguments when function is a closure.Damien George
2015-05-05tests: Fix cmd_showbc now that LOAD_CONST_ELLIPSIS bytecode is gone.Damien George
2015-05-05obj: Handle user instance hash based on Python adhoc rules.Paul Sokolovsky
2015-05-04modstruct: Rename module to "ustruct", to allow full Python-level impl.Paul Sokolovsky
2015-05-04py: Check that arg to object.__new__ is a user-defined type.Damien George
2015-04-28unix/modffi: Support passing float/double args.Damien George
2015-04-26vm: On exiting except block, clear sys.exc_info() value.Paul Sokolovsky
2015-04-25py: Support conversion of bignum to bytes.Damien George
2015-04-25modsys: Add basic sys.exc_info() implementation.Paul Sokolovsky