aboutsummaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2014-04-08py: Implement str.[r]index() and add tests for them.xbe
2014-04-08Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-04-08py: implement UNPACK_EX byte code (for: a, *b, c = d)Damien George
2014-04-08bytearray: Support bytearray(int) constructor.Paul Sokolovsky
2014-04-08Display \r and \t escape codes in string reprAndrew Scheller
2014-04-07Add string formatting support for longlong and mpz.Dave Hylands
2014-04-07Merge pull request #445 from lurch/test-sorted-setsDamien George
2014-04-07Modify set tests to print sorted sets directlyAndrew Scheller
2014-04-07Add tests for sorted() functionAndrew Scheller
2014-04-07tests: Fix more tests which depend on order of elements in set.Paul Sokolovsky
2014-04-07tests: Fix few tests which depend on order of elements in set.Paul Sokolovsky
2014-04-07tests: Fix tests with sets to print sorted set.Damien George
2014-04-07py: Fix str.replace for case when arg 0 or 1 is empty string.Damien George
2014-04-06tests: Fix few tests which depend on order of elements in dict.Paul Sokolovsky
2014-04-06tests/dict2.py: Add combined test for dict(dict) and dict equality.Paul Sokolovsky
2014-04-06py: str.split: handle non-default separator.Damien George
2014-04-05tests: Add test to check issue #429.Damien George
2014-04-05Merge pull request #435 from dhylands/str-modulo-floatDamien George
2014-04-05Merge pull request #433 from pfalcon/getattr-3argDamien George
2014-04-05py: Fix delete operation on map/dict and set objects.Damien George
2014-04-05Allow floating point arguments with %d,i,u,o,x,X formatsDave Hylands
2014-04-05tests: Add test for dict delete. It fails.Damien George
2014-04-05py: Support 3-arg getattr() builtin (with default value).Paul Sokolovsky
2014-04-05objtype: Add equality test for type types.Paul Sokolovsky
2014-04-05py: Allow types to be hashable.Paul Sokolovsky
2014-04-04Merge pull request #422 from dhylands/str-moduloDamien George
2014-04-04py: Add m_malloc_fail function to handle memory allocation error.Damien George
2014-04-03Implements most of str.moduloDave Hylands
2014-04-02py: Fix regress for printing of floats and #if.Damien George
2014-04-02tests/string-format: Add test for formatting ints with float format.Paul Sokolovsky
2014-04-02Add more tests.Damien George
2014-04-02py: Factor out static/class method unwrapping code; add tests.Damien George
2014-04-02py: Add support for sep and end keywords in print.Damien George
2014-04-01py: Fix math.{ceil,floor,trunc} to return int.Damien George
2014-04-01Turn off full tests in string-format.pyDave Hylands
2014-04-01tests: Add test for implicit float to int conversion (not allowed!)Paul Sokolovsky
2014-04-01Enhance str.format supportDave Hylands
2014-03-31py: Implement __getattr__.Damien George
2014-03-31objstr: Very basic implementation of % string formatting operator.Paul Sokolovsky
2014-03-31Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-31py: Fix bug in optimised for .. range.Damien George
2014-03-31tests: Add testcase for multiple inheritance.Paul Sokolovsky
2014-03-31py: Properly implement divide-by-zero handling.Paul Sokolovsky
2014-03-30Merge pull request #399 from pfalcon/gen-defargsDamien George
2014-03-30py: Fix "TypeError: 'iterator' object is not iterable", doh.Paul Sokolovsky
2014-03-30py: Implement support for generalized generator protocol.Paul Sokolovsky
2014-03-30py: Implement positional and keyword args via * and **.Damien George
2014-03-30objgenerator: Handle default args to generator functions.Paul Sokolovsky
2014-03-30vm: Implement CALL_FUNCTION_VAR opcode (foo(*(1, 2, 3))).Paul Sokolovsky
2014-03-30Add "tracing" to try-reraise2.py test. It now fails.Damien George