diff options
Diffstat (limited to 'test/pyhttpd/htdocs/cgi/mnot164.py')
-rw-r--r-- | test/pyhttpd/htdocs/cgi/mnot164.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/test/pyhttpd/htdocs/cgi/mnot164.py b/test/pyhttpd/htdocs/cgi/mnot164.py deleted file mode 100644 index 949b0f195b..0000000000 --- a/test/pyhttpd/htdocs/cgi/mnot164.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env python3 - -import cgi -import cgitb; cgitb.enable() -import os -import sys - -try: - form = cgi.FieldStorage() - count = form['count'].value - text = form['text'].value -except KeyError: - text="a" - count=77784 - - -print("Status: 200 OK") -print("Content-Type: text/html") -print() -sys.stdout.write(text*int(count)) - |