mirror of
https://github.com/python/cpython.git
synced 2024-11-26 03:14:27 +08:00
11 lines
153 B
Python
Executable File
11 lines
153 B
Python
Executable File
#!/usr/local/bin/python
|
|
|
|
"""CGI test 3 (persistent data)."""
|
|
|
|
import cgitb; cgitb.enable()
|
|
|
|
from wiki import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|