summaryrefslogtreecommitdiff
path: root/tests/misc
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@flameeyes.com>2020-05-30 10:44:13 +0100
committerDiego Elio Pettenò <flameeyes@flameeyes.com>2020-06-03 10:56:35 +0100
commitdd5d7c86d22807c021dd1711eb7dd3daebc5cfcf (patch)
treedde417af2cae8cb1797582d6489eab9cb9caeddf /tests/misc
parent60df6170cc5d0e495fde9613c05c55b64189b425 (diff)
Fix up end of file and trailing whitespace.
This can be enforced by pre-commit, but correct it separately to make it easier to review.
Diffstat (limited to 'tests/misc')
-rw-r--r--tests/misc/features.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/misc/features.py b/tests/misc/features.py
index 3efb476ab..de75cb46d 100644
--- a/tests/misc/features.py
+++ b/tests/misc/features.py
@@ -25,7 +25,7 @@ print(ten())
a=[]
for i in range(13):
a.append(i)
-print(a[11])
+print(a[11])
print(a[-1])
str="0123456789"
print(str[1]+str[3])
@@ -73,13 +73,13 @@ while True:
try:
def gcheck():
global a
- print(a)
+ print(a)
gcheck()
class c25():
x=25
x=c25()
print(x.x)
- raise
+ raise
except:
print(26)
print(27+zero)