Staging
v0.8.1
https://github.com/python/cpython
Revision 2e0ece01f7fbe721c5339b4b5152d66eeb85a171 authored by Anthony Baxter on 05 December 2003, 04:30:10 UTC, committed by Anthony Baxter on 05 December 2003, 04:30:10 UTC
1 parent 48e602a
Raw File
Tip revision: 2e0ece01f7fbe721c5339b4b5152d66eeb85a171 authored by Anthony Baxter on 05 December 2003, 04:30:10 UTC
2.3.3c1
Tip revision: 2e0ece0
cgi3.py
#!/usr/local/bin/python

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

import cgitb; cgitb.enable()

from wiki import main

if __name__ == "__main__":
    main()
back to top