~toolpart/+junk/pythoncard

« back to all changes in this revision

Viewing changes to samples/testSplitter/minimal.py

  • Committer: Bazaar Package Importer
  • Author(s): Mohammed Adnène Trojette
  • Date: 2006-11-12 17:52:13 UTC
  • mfrom: (2.1.5 feisty)
  • Revision ID: james.westby@ubuntu.com-20061112175213-tv8bnl6rtpa2qw1o
Tags: 0.8.1-8.1
* Non-maintainer upload.
* Fix path to findfiles, codeEditor and resourceEditor:
   + patch from Ernest ter Kuile <ernestjw@xs4all.nl>. (Closes: #397018)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
"""
 
4
__version__ = "$Revision: 1.1 $"
 
5
__date__ = "$Date: 2004/09/28 21:23:55 $"
 
6
"""
 
7
 
 
8
from PythonCard import model
 
9
 
 
10
class Minimal(model.PageBackground):
 
11
    pass
 
12
 
 
13
if __name__ == '__main__':
 
14
    app = model.Application(Minimal)
 
15
    app.MainLoop()