Merge pull request #477 from tannewt/always_test_enumerate

Always test enumerate. This will ensure that all supported ports include it
This commit is contained in:
Dan Halbert 2017-12-13 09:57:04 -05:00 committed by GitHub
commit 00bf60db28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -1,9 +1,3 @@
try:
enumerate
except:
print("SKIP")
raise SystemExit
print(list(enumerate([])))
print(list(enumerate([1, 2, 3])))
print(list(enumerate([1, 2, 3], 5)))