/usr/share/pymt-examples/widgets/modalpopup.py is in python-pymt 0.5.1-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | from pymt import *
m = MTWindow()
# create a simple popup
p = MTModalPopup(title='Hello World', content='I hope you will like it !')
m.add_widget(p)
runTouchApp()
|