diff options
| author | Benjamin Shockley <benjaminshockley@hotmail.com> | 2020-08-20 13:48:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-20 13:48:15 -0500 |
| commit | 0084f0af24e4e219bc040c52ee723959423de6e2 (patch) | |
| tree | 1aebdb362f08bf6417caa87836e3e4e739afc964 /tests/misc/features.py | |
| parent | 9aebe2f1efc99871fcf283c304e3a8700050d736 (diff) | |
| parent | 4d7b9cde33934a44c4c905a49d2f831339fc8bd2 (diff) | |
Merge pull request #2 from adafruit/master
Master
Diffstat (limited to 'tests/misc/features.py')
| -rw-r--r-- | tests/misc/features.py | 6 |
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) |
