aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
2014-06-12py: Rename builtin "io" to "_io".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: Run 'micropython' tests on pyboard.Damien George
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-06Merge pull request #667 from Rosuav/testfixesPaul Sokolovsky
2014-06-05Fix str.modulo when precision is specified.Dave Hylands
2014-06-06Turn the Travis CI test skipping mechanism into something more genericChris Angelico
2014-06-06Figure out the test_name before using it (significant only to Travis skips)Chris Angelico
2014-06-05py: Raise TypeError when trying to format non-int with %x,%o,%X.Damien George
2014-06-06Change comments (mainly URLs) to no longer specifically say Python 3.3Chris Angelico
2014-06-05Merge pull request #663 from Rosuav/floatpercentxDamien George
2014-06-05objstr: Implement "%(key)s" % {} formatting for strings and dicts.Paul Sokolovsky
2014-06-05Remove tests that fail under CPython 3.5Chris Angelico
2014-06-03py: Implement full behaviour of dict.update(), and dict().Damien George
2014-05-31tests: Add feature test for when heap allocation is disabled.Damien George
2014-05-31tests: Change --test_dirs to --test-dirs.Damien George
2014-05-31Merge pull request #632 from stinos/tests-dir-argumentDamien 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
2014-05-28tests: Add argument to allow specifying which directories to teststijn
2014-05-26tests: Add small testcase for 3-arg slices.Paul Sokolovsky
2014-05-25objlist: Implement support for arbitrary (3-arg) slices.Paul Sokolovsky
2014-05-25objlist: Implement growing slice assignment.Paul Sokolovsky
2014-05-24objstr: Implement .endswith().Paul Sokolovsky
2014-05-22py: Initial attempts to actually allow implementing __new__ in Python.Paul Sokolovsky
2014-05-21objtype: super: Fall back to "object" lookup as last resort.Paul Sokolovsky
2014-05-21Merge pull request #607 from Anton-2/osx-clangDamien George
2014-05-19tests: Update subclass-native2.py for __new__/__init__ refactor.Paul Sokolovsky
2014-05-15objstr: startswith(): Accept optional "start" arg.Paul Sokolovsky
2014-05-15py: Implement more complete bytes comparison handling.Paul Sokolovsky
2014-05-15sequence: Fix yet another case of improper sequence comparison.Paul Sokolovsky
2014-05-14objstr.c: Partial implementation of .rsplit().Paul Sokolovsky
2014-05-13tests/int-long.py: Try to expose issue with recent "&" optimization.Paul Sokolovsky
2014-05-12py: Fix bug in mpz_and function.Damien George
2014-05-12modstruct: Implement count specifier for strings (e.g. "100s").Paul Sokolovsky
2014-05-12tests: create result file for test/basics/memoryerror.py .Antonin ENFRUN
2014-05-11objstr: Slice indexing: support bytes properly.Paul Sokolovsky
2014-05-11objstr: Make .split() support bytes.Paul Sokolovsky
2014-05-11objstr: Make .join() support bytes.Paul Sokolovsky
2014-05-11py: Add basic implementation of hasattr() function.Paul Sokolovsky