summaryrefslogtreecommitdiff
path: root/tests/basics/python34.py
diff options
context:
space:
mode:
authorLucian Copeland <hierophect@gmail.com>2020-04-17 13:27:48 -0400
committerLucian Copeland <hierophect@gmail.com>2020-04-17 13:27:48 -0400
commit25245bc44204856c6fd834d7d2bc30187a77bc3a (patch)
tree61995279880cd0a49b797d0ad3897a38e3312bbc /tests/basics/python34.py
parent3c50098dfc353b0f30f3a743d45dce9de95e060a (diff)
parent1a71c8c51577cc7014d5db1c05084778c0b977e9 (diff)
Merge remote-tracking branch 'upstream/master' into stm32-docfix
Diffstat (limited to 'tests/basics/python34.py')
-rw-r--r--tests/basics/python34.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/basics/python34.py b/tests/basics/python34.py
index 36531f11c..4030db143 100644
--- a/tests/basics/python34.py
+++ b/tests/basics/python34.py
@@ -1,4 +1,4 @@
-# tests that differ when running under Python 3.4 vs 3.5/3.6
+# tests that differ when running under Python 3.4 vs 3.5/3.6/3.7
try:
exec
@@ -36,3 +36,7 @@ test_syntax("del ()") # can't delete empty tuple (in 3.6 we can)
import sys
print(sys.version[:3])
print(sys.version_info[0], sys.version_info[1])
+
+# from basics/exception1.py
+# in 3.7 no comma is printed if there is only 1 arg (in 3.4-3.6 one is printed)
+print(repr(IndexError("foo")))