Python: Add an extra test for import parsing.

This commit is contained in:
Mark Shannon
2019-01-16 11:32:59 +00:00
parent b8a91d4b1e
commit bc4301f7b1
3 changed files with 6 additions and 0 deletions

View File

@@ -1 +1,2 @@
| Module flowtest | 5 |
| Module imports | 0 |

View File

@@ -8,3 +8,4 @@
| Function try_except | 7 |
| Function try_finally | 7 |
| Module flowtest | 70 |
| Module imports | 4 |

View File

@@ -0,0 +1,4 @@
from foo import x, y
import bar
from baz import x as a, y as b
import spam as eggs