mirror of
https://github.com/python/cpython.git
synced 2024-12-01 11:15:56 +01: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()
|