1
1
mirror of https://github.com/github/semantic.git synced 2024-12-29 09:55:52 +03:00

Tuple test fixture

This commit is contained in:
Rick Winfrey 2017-06-06 17:08:11 -07:00
parent 4c8c87ea51
commit 49da4ca545
2 changed files with 6 additions and 0 deletions

3
test/fixtures/python/tuple.A.py vendored Normal file
View File

@ -0,0 +1,3 @@
(a, b)
(a, b, c,)

3
test/fixtures/python/tuple.B.py vendored Normal file
View File

@ -0,0 +1,3 @@
(b, c, a,)
(b, c)
(a)