File: //usr/lib/python3.7/__pycache__/cgi.cpython-37.pyc
B
{a @ s d Z dZddlmZmZmZ ddlmZ ddlZddl Z ddl
Zddlm
Z
ddlmZ ddlmZ ddlZddlZddlZd d
ddd
ddddddddddgZdadadd Zdd Zdd Zdd Zeadade jddfd!dZd7d"dZ d8d#d
Z!d9d&dZ"d'd( Z#d)d Z$G d*d d Z%G d+d
d
Z&e jfd,dZ'd:d-dZ(e jfd.dZ)d/d Z*d0d Z+d1d Z,d2d Z-d;d3dZ.d4d5 Z/e0d6kre' dS )<zSupport module for CGI (Common Gateway Interface) scripts.
This module defines a number of utilities for use by CGI scripts
written in Python.
z2.6 )StringIOBytesIO
TextIOWrapper)MappingN)
FeedParser)Message)warnMiniFieldStorageFieldStorageparseparse_qs parse_qslparse_multipartparse_headertestprint_exception
print_environ
print_formprint_directoryprint_argumentsprint_environ_usageescape c G sF t r,ts,ytt daW n tk
r* Y nX ts6tantat| dS )a Write a log message, if there is a log file.
Even though this function is called initlog(), you should always
use log(); log is a variable that is set either to initlog
(initially), to dolog (once the log file has been opened), or to
nolog (when logging is disabled).
The first argument is a format string; the remaining arguments (if
any) are arguments to the % operator, so e.g.
log("%s: %s", "a", "b")
will write "a: b" to the log file, followed by a newline.
If the global logfp is not None, it should be a file object to
which log data is written.
If the global logfp is None, the global logfile may be a string
giving a filename to open, in append mode. This file should be
world writable!!! If the file can't be opened, logging is
silently disabled (since there is no safe place where we could
send an error message).
aN)logfilelogfpopenOSErrornologlogdolog)allargs r"