19 lines
485 B
Python
19 lines
485 B
Python
|
#!/bin/env python
|
||
|
#----------------------------------------------------------------------------
|
||
|
# Name: test4s.py
|
||
|
# Purpose: Stub for test4. Speeds startup time by using compiled version
|
||
|
# of test4.py.
|
||
|
#
|
||
|
# Author: Robin Dunn
|
||
|
#
|
||
|
# Created:
|
||
|
# RCS-ID: $Id$
|
||
|
# Copyright: (c) 1998 by Total Control Software
|
||
|
# Licence: wxWindows license
|
||
|
#----------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
import test4
|
||
|
|
||
|
test4.main()
|