index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
basics
Age
Commit message (
Expand
)
Author
2014-07-05
tests: Rename test scripts, changing - to _ for consistency.
Damien George
2014-07-05
py: Automatically ake __new__ a staticmethod.
Damien George
2014-06-25
modstruct: Fix alignment handling issues.
Paul Sokolovsky
2014-06-14
objstr: Be 8-bit clean even for repr().
Paul Sokolovsky
2014-06-11
tests: Add testcases for "complicated" args to generator functions.
Paul Sokolovsky
2014-06-10
py: Implement __contains__ special method.
Damien George
2014-06-08
objtype: Fix passing of class param to inherited classmethods.
Paul Sokolovsky
2014-06-08
tests: Add more tests for default keyword-only args.
Damien George
2014-06-08
tests: Fix default arg test.
Damien George
2014-06-08
py: Make sure getattr() works with non-interned strings (by interning them).
Paul Sokolovsky
2014-06-07
py: Implement default keyword only args.
Damien George
2014-06-05
Fix str.modulo when precision is specified.
Dave Hylands
2014-06-06
Change comments (mainly URLs) to no longer specifically say Python 3.3
Chris Angelico
2014-06-05
objstr: Implement "%(key)s" % {} formatting for strings and dicts.
Paul Sokolovsky
2014-06-03
py: Implement full behaviour of dict.update(), and dict().
Damien George
2014-05-31
py: Fix stack underflow with optimised for loop.
Damien George
2014-05-31
tests: Add another test for break-from-for-loop.
Damien George
2014-05-31
add methods isspace(), isalpha(), isdigit(), isupper() and islower() to str
Kim Bauters
2014-05-31
tests: Add test for break in for.
Paul Sokolovsky
2014-05-30
objstr: *strip(): If nothing is stripped, don't create dup string.
Paul Sokolovsky
2014-05-30
objstr: *strip(): Fix handling of one-char subject strings.
Paul Sokolovsky
2014-05-29
py: Implement bignum '&' with negatives on lhs and rhs.
Damien George
2014-05-26
tests: Add small testcase for 3-arg slices.
Paul Sokolovsky
2014-05-25
objlist: Implement support for arbitrary (3-arg) slices.
Paul Sokolovsky
2014-05-25
objlist: Implement growing slice assignment.
Paul Sokolovsky
2014-05-24
objstr: Implement .endswith().
Paul Sokolovsky
2014-05-22
py: Initial attempts to actually allow implementing __new__ in Python.
Paul Sokolovsky
2014-05-21
objtype: super: Fall back to "object" lookup as last resort.
Paul Sokolovsky
2014-05-21
Merge pull request #607 from Anton-2/osx-clang
Damien George
2014-05-19
tests: Update subclass-native2.py for __new__/__init__ refactor.
Paul Sokolovsky
2014-05-15
objstr: startswith(): Accept optional "start" arg.
Paul Sokolovsky
2014-05-15
py: Implement more complete bytes comparison handling.
Paul Sokolovsky
2014-05-15
sequence: Fix yet another case of improper sequence comparison.
Paul Sokolovsky
2014-05-14
objstr.c: Partial implementation of .rsplit().
Paul Sokolovsky
2014-05-13
tests/int-long.py: Try to expose issue with recent "&" optimization.
Paul Sokolovsky
2014-05-12
py: Fix bug in mpz_and function.
Damien George
2014-05-12
modstruct: Implement count specifier for strings (e.g. "100s").
Paul Sokolovsky
2014-05-12
tests: create result file for test/basics/memoryerror.py .
Antonin ENFRUN
2014-05-11
objstr: Slice indexing: support bytes properly.
Paul Sokolovsky
2014-05-11
objstr: Make .split() support bytes.
Paul Sokolovsky
2014-05-11
objstr: Make .join() support bytes.
Paul Sokolovsky
2014-05-11
py: Add basic implementation of hasattr() function.
Paul Sokolovsky
2014-05-11
py: frozenset() creates an empty frozenset.
Damien George
2014-05-11
py: Give up and make mp_obj_str_get_data() deal with bytes too.
Paul Sokolovsky
2014-05-11
objstr: Make *strip() accept bytes.
Paul Sokolovsky
2014-05-11
tests: Really fix import.
Paul Sokolovsky
2014-05-11
tests: Fix import.
Paul Sokolovsky
2014-05-11
objtuple: Go out of the way to support comparison of subclasses.
Paul Sokolovsky
2014-05-11
py: Don't try to "bind" types store as attributes of objects.
Paul Sokolovsky
2014-05-11
objstr: Make .[r]partition() work with bytes.
Paul Sokolovsky
[next]