Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
d87c6b67
Commit
d87c6b67
authored
Feb 17, 2017
by
Damien George
Browse files
tests/basics/string_join: Add more tests for string concatenation.
parent
c889f01b
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/basics/string_join.py
View file @
d87c6b67
...
...
@@ -25,3 +25,13 @@ except TypeError:
# joined by the compiler
print
(
"a"
"b"
)
print
(
"a"
'''b'''
)
print
(
"a"
# inline comment
"b"
)
print
(
"a"
\
"b"
)
# the following should not be joined by the compiler
x
=
'a'
'b'
print
(
x
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment