mirror of
https://github.com/python/cpython.git
synced 2025-10-23 01:43:53 +00:00
7 lines
147 B
Python
7 lines
147 B
Python
![]() |
|
||
|
def _parse(srclines, anon_name):
|
||
|
text = ' '.join(l for _, l in srclines)
|
||
|
|
||
|
from ._delim import parse
|
||
|
yield from parse(text, anon_name)
|