Files
Pierre-Marie de Rodat 2b9b33d6a0 Remove __future__ imports and adjust stylechecks
TN: T511-017
2020-05-26 12:33:48 +02:00

12 lines
236 B
Python

import os.path
import libfoolang
print('main.py: Running...')
ctx = libfoolang.AnalysisContext()
u = ctx.get_from_buffer('foo.txt', b'example')
print('Unit filename: {}'.format(os.path.basename(u.filename)))
print('main.py: Done.')