Lines Matching refs:env

38     env = {}
41 env['REQUEST_METHOD'] = 'GET'
42 env['QUERY_STRING'] = buf
45 env['REQUEST_METHOD'] = 'POST'
46 env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded'
47 env['CONTENT_LENGTH'] = str(len(buf))
51 return cgi.parse(fp, env, strict_parsing=1)
76 ("Hbc5161168c542333633315dee1182227:key_store_seqid=400006&cuyer=r&view=bustomer&order_id=0bb2e248638833d48cb7fed300000f1b&expire=964546263&lobale=en-US&kid=130003.300038&ss=env",
83 'ss': ['env'],
122 env = {'boundary': BOUNDARY.encode('latin1'),
124 result = cgi.parse_multipart(fp, env)
138 env = {'boundary': 'JfISa01'.encode('latin1')}
139 result = cgi.parse_multipart(fp, env)
152 env = {'boundary': BOUNDARY.encode('latin1'),
154 result = cgi.parse_multipart(fp, env, encoding="ascii",
184 env = {'QUERY_STRING': orig}
185 fs = cgi.FieldStorage(environ=env)
215 env = {'QUERY_STRING': orig}
216 fs = cgi.FieldStorage(separator=';', environ=env)
269 env = {'REQUEST_METHOD':'PUT'}
270 fs = cgi.FieldStorage(fp=f, environ=env)
280 env = {
285 fs = cgi.FieldStorage(fp, environ=env, encoding="latin-1")
297 env = {
304 fs = cgi.FieldStorage(fp, environ=env, encoding="latin-1")
317 env = {'REQUEST_METHOD':'POST',
322 fs = cgi.FieldStorage(fp, environ=env,encoding=encoding)
355 env = {
360 fs = cgi.FieldStorage(fp, environ=env, encoding="latin-1")
382 env = {
387 fs = cgi.FieldStorage(fp, environ=env, encoding="latin-1")
400 env = {
405 fields = cgi.FieldStorage(fp, environ=env)
411 env = {'REQUEST_METHOD': 'PUT'}
412 with cgi.FieldStorage(fp=fp, environ=env) as fs: