summaryrefslogtreecommitdiffstats
path: root/Demo/cgi/cgi3.py
blob: 6693a86c4ee36bb1262e9021ae167a88297b35c9 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python

"""CGI test 3 (persistent data)."""

import cgitb; cgitb.enable()

from wiki import main

if __name__ == "__main__":
    main()