summaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
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-10py: iternext() may not return MP_OBJ_NULL, only MP_OBJ_STOP_ITERATION.Paul Sokolovsky
2015-05-06py: Fix naming of function arguments when function is a closure.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-25py: Support conversion of bignum to bytes.Damien George
2015-04-22tests: Add tests for attrtuple, and for more corner cases.Damien George
2015-04-19py: Fix builtin ord so that it can handle bytes values >= 0x80.Damien George
2015-04-16tests: Convert line endings in fun_name.py from CRLF to LF.Damien George
2015-04-16objarray: Support assignment of bytes to bytearray slice.Paul Sokolovsky
2015-04-12objstr: split(None): Fix whitespace properly.Paul Sokolovsky
2015-04-05tests: Add some more tests to improve code coverage of corner cases.Damien George
2015-04-04tests: Add tests to exercise lexer; and some more complex number tests.Damien George
2015-04-04tests: Add missing tests for builtins, and many other things.Damien George
2015-04-04tests: Add test for str.splitlines().Paul Sokolovsky
2015-03-28tests/class_descriptor.py: Fix line-endings (were CRLF).Paul Sokolovsky
2015-03-26py: Add optional support for descriptors' __get__ and __set__ methods.stijn
2015-03-25tests: Skip some new tests when testing native emitter.Damien George
2015-03-25tests: Add tests for SyntaxError, TypeError, and other missing things.Damien George
2015-03-20py: Allow retrieving a function's __name__.stijn
2015-03-20tests: Add basic test for OrderedDict.Paul Sokolovsky
2015-03-14py: Fix builtin abs so it works for bools and bignum.Damien George
2015-03-14tests: Add some more tests for bytes, bignum, string and ujson.Damien George
2015-03-12tests: Add tests for things that are not already tested.Damien George
2015-03-11py: Add support for start/stop/step attributes of builtin range object.Peter D. Gray
2015-03-03tests: Add tests for boundmeth; and bignum cmp, unary, float, error.Damien George
2015-03-02tests: Add basics test for gc module.Damien George
2015-03-02tests: Use range as iterable instead of list comprehension.Damien George
2015-03-02tests: Add tests for builtins: all, any, sum, abs.Damien George
2015-03-02tests: Add tests for op special meths, ubinascii, complex.Damien George
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