summaryrefslogtreecommitdiff
path: root/tests/basics/string1.py
AgeCommit message (Collapse)Author
2024-05-28tests/basics: Move str/bytes tests that give SyntaxWarning to sep file.Damien George
In CPython 3.12 these invalid str/bytes/fstring escapes will issue a SyntaxWarning, and so differ to MicroPython. Signed-off-by: Damien George <damien@micropython.org>
2015-09-03tests: Add tests to improve coverage of objstr.c.Damien George
2015-08-21tests: Add more tests to improve coverage, mostly testing exceptions.Damien George
2015-04-04tests: Add tests to exercise lexer; and some more complex number tests.Damien George
2015-04-04tests: Add missing tests for builtins, and many other things.Damien George
2015-03-14tests: Add some more tests for bytes, bignum, string and ujson.Damien George
2014-01-21str: Implement proper string (instead of byte string) indexing.Paul Sokolovsky
Also, support negative indexes.
2014-01-21Implement string multiplication.Paul Sokolovsky
2014-01-19Move tests in basic/tests/ up one level preparating to multiple test dirs.Paul Sokolovsky