mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
8 lines
257 B
Python
8 lines
257 B
Python
import upp;
|
|
|
|
# some calls directly to embedded python, called when this module is imported
|
|
print upp.app.title;
|
|
|
|
# some function definitions, can be called from embedded python
|
|
def chtitle():
|
|
upp.app.title = "The title was changed from outside :)"
|