aboutsummaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2015-02-27tests: Add test for array slice assignment.Paul Sokolovsky
2015-02-15tests: Remove obsolete test; don't use fp in micropython/ tests.Damien George
2015-02-15py: Simplify and remove redundant code for __iter__ method lookup.Damien George
2015-02-14py: Add setattr builtin.stijn
2015-02-09py: Allow subclass of native object to delegate to the native buffer_p.Damien George
2015-02-09objstr: Fix bytes creation from array of long ints.Paul Sokolovsky
2015-02-08py: Parse big-int/float/imag constants directly in parser.Damien George
2015-02-02py: Make list.sort keep stack usage within O(log(N)) bound.Damien George
2015-01-30py: Convert CR to LF and CR LF to LF in lexer.Damien George
2015-01-29tests: Add some tests to improve coverage.Damien George
2015-01-29tests: Add some tests to improve coverage.Damien George
2015-01-28tests: Add testcase for bytes() on values in range 128-255.Paul Sokolovsky
2015-01-27py: Fix comparison of minus-zero long int.Damien George
2015-01-21py: Implement __reversed__ slot.Damien George
2015-01-14py: Reluctantly add an extra pass to bytecode compiler.Damien George
2015-01-13py: Never intern data of large string/bytes object; add relevant tests.Damien George
2015-01-11py: Implement fallback for equality check for all types.Damien George
2015-01-08tests: Add test for when instance member overrides class member.Damien George
2015-01-08tests: Separate out test cases that rely on float support to float/ dir.Damien George
2015-01-04objarray: Make sure that longint works as bytearray size.Paul Sokolovsky
2015-01-04objstr: Implement kwargs support for str.format().Paul Sokolovsky
2015-01-01py: Allow keyword arguments for namedtuplestijn
2015-01-01py: Use sequence of strings for named tuple initializationstijn
2014-12-31py: Fix rshift and not of zero/one edge cases in mpz.Damien George
2014-12-24py: Make bytes objs work with more str methods; add tests.Damien George
2014-12-12py: Fix optimised for-loop compiler so it follows proper semantics.Damien George
2014-12-11tests: Add test for semantics of for-loop that optimisation can break.Damien George
2014-12-09py: Allow builtins to be overridden.Damien George
2014-12-05py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack.Damien George
2014-12-04py: Allow bytes/bytearray/array to be init'd by buffer protocol objects.Damien George
2014-11-30py: Implement +, += and .extend for bytearray and array objs.Damien George
2014-11-29tests: Split out float test from builtin_round.py.Damien George
2014-11-15tests: Add test for hash of user defined class.Damien George
2014-11-05py: Allow +, in, and compare ops between bytes and bytearray/array.Damien George
2014-11-03py: Fix builtin callable so it checks user-defined instances correctly.Damien George
2014-11-02py: Fix bug with right-shifting small ints by large amounts.Paul Sokolovsky
2014-10-31py: Add builtin round function.Damien George
2014-10-31objstr: Allow to convert any buffer proto object to str.Paul Sokolovsky
2014-10-26tests: Get builtin_compile to skin properly on pyboard.Damien George
2014-10-26py: Fix memoryview referencing so it retains ptr to original buffer.Damien George
2014-10-25tests: Add test for compile builtin.Damien George
2014-10-23py: Add builtin memoryview object (mostly using array code).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-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-05py: Make compiler return a proper exception on SyntaxError.Damien George
2014-09-30py: Remove IOError since it's deprecated; use OSError instead.Damien George
2014-09-25tests: Add test for exception matching of a tuple of exceptions.Damien George