summaryrefslogtreecommitdiff
path: root/tests/feature_check/fstring.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/feature_check/fstring.py')
-rw-r--r--tests/feature_check/fstring.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/feature_check/fstring.py b/tests/feature_check/fstring.py
new file mode 100644
index 000000000..14792bce0
--- /dev/null
+++ b/tests/feature_check/fstring.py
@@ -0,0 +1,3 @@
+# check whether f-strings (PEP-498) are supported
+a = 1
+print(f"a={a}")