summaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
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
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-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-26Make int(b'123') work properly.Dave Hylands
2014-08-26py: Add dispatch for user defined ==, >, <=, >=.Damien George
2014-08-24py: Consolidate min/max functions into one, and add key= argument.Damien George
2014-08-13py: Fix mult by negative number of tuple, list, str, bytes.Damien George
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-07-05tests: Rename test scripts, changing - to _ for consistency.Damien George
2014-07-05py: Automatically ake __new__ a staticmethod.Damien George
2014-06-25modstruct: Fix alignment handling issues.Paul Sokolovsky
2014-06-14objstr: Be 8-bit clean even for repr().Paul Sokolovsky
2014-06-11tests: Add testcases for "complicated" args to generator functions.Paul Sokolovsky
2014-06-10py: Implement __contains__ special method.Damien George
2014-06-08objtype: Fix passing of class param to inherited classmethods.Paul Sokolovsky
2014-06-08tests: Add more tests for default keyword-only args.Damien George
2014-06-08tests: Fix default arg test.Damien George
2014-06-08py: Make sure getattr() works with non-interned strings (by interning them).Paul Sokolovsky
2014-06-07py: Implement default keyword only args.Damien George
2014-06-05Fix str.modulo when precision is specified.Dave Hylands
2014-06-06Change comments (mainly URLs) to no longer specifically say Python 3.3Chris Angelico
2014-06-05objstr: Implement "%(key)s" % {} formatting for strings and dicts.Paul Sokolovsky
2014-06-03py: Implement full behaviour of dict.update(), and dict().Damien George
2014-05-31py: Fix stack underflow with optimised for loop.Damien George
2014-05-31tests: Add another test for break-from-for-loop.Damien George
2014-05-31add methods isspace(), isalpha(), isdigit(), isupper() and islower() to strKim Bauters
2014-05-31tests: Add test for break in for.Paul Sokolovsky
2014-05-30objstr: *strip(): If nothing is stripped, don't create dup string.Paul Sokolovsky
2014-05-30objstr: *strip(): Fix handling of one-char subject strings.Paul Sokolovsky
2014-05-29py: Implement bignum '&' with negatives on lhs and rhs.Damien George