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
/
bytes.py
Age
Commit message (
Collapse
)
Author
2017-10-04
py/objstr: Make empty bytes object have a null-terminating byte.
Damien George
Because a lot of string processing functions assume there is a null terminating byte, so they can work in an efficient way. Fixes issue #3334.
2015-04-04
tests: Add tests to exercise lexer; and some more complex number tests.
Damien George
2015-03-14
tests: Add some more tests for bytes, bignum, string and ujson.
Damien George
2015-01-28
tests: Add testcase for bytes() on values in range 128-255.
Paul Sokolovsky
2014-09-23
tests: Fix uctypes tests to run on 64bit arch; enable more native tests.
Damien George
2014-08-11
objstr: Make sure that bytes are indexed as bytes, not as unicode.
Paul Sokolovsky
Fixes #795.
2014-03-22
py: Make 'bytes' be a proper type, support standard constructor args.
Paul Sokolovsky
2014-01-24
Add basic implementation of bytes type, piggybacking on str.
Paul Sokolovsky
This reuses as much str implementation as possible, from this we can make them more separate as needed.