Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bf5e9604
Commit
bf5e9604
authored
Feb 06, 2015
by
Berker Peksag
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #20289: cgi.FieldStorage() now supports the context management protocol.
parent
088ca8b9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
6 deletions
+35
-6
Doc/library/cgi.rst
Doc/library/cgi.rst
+7
-0
Doc/whatsnew/3.5.rst
Doc/whatsnew/3.5.rst
+6
-0
Lib/cgi.py
Lib/cgi.py
+6
-0
Lib/test/test_cgi.py
Lib/test/test_cgi.py
+13
-6
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/cgi.rst
View file @
bf5e9604
...
...
@@ -157,6 +157,9 @@ return bytes)::
if not line: break
linecount = linecount + 1
:class:`FieldStorage` objects also support being used in a :keyword:`with`
statement, which will automatically close them when done.
If an error is encountered when obtaining the contents of an uploaded file
(for example, when the user interrupts the form submission by clicking on
a Back or Cancel button) the :attr:`~FieldStorage.done` attribute of the
...
...
@@ -182,6 +185,10 @@ A form submitted via POST that also has a query string will contain both
The :attr:`~FieldStorage.file` attribute is automatically closed upon the
garbage collection of the creating :class:`FieldStorage` instance.
.. versionchanged:: 3.5
Added support for the context management protocol to the
:class:`FieldStorage` class.
Higher Level Interface
----------------------
...
...
Doc/whatsnew/3.5.rst
View file @
bf5e9604
...
...
@@ -136,6 +136,12 @@ New Modules
Improved Modules
================
cgi
---
* :class:`FieldStorage` now supports the context management protocol.
(Contributed by Berker Peksag in :issue:`20289`.)
code
----
...
...
Lib/cgi.py
View file @
bf5e9604
...
...
@@ -566,6 +566,12 @@ class FieldStorage:
except
AttributeError
:
pass
def
__enter__
(
self
):
return
self
def
__exit__
(
self
,
*
args
):
self
.
file
.
close
()
def
__repr__
(
self
):
"""Return a printable representation."""
return
"FieldStorage(%r, %r, %r)"
%
(
...
...
Lib/test/test_cgi.py
View file @
bf5e9604
from
test.support
import
run_unittest
,
check_warnings
from
test.support
import
check_warnings
import
cgi
import
os
import
sys
...
...
@@ -307,6 +307,17 @@ Content-Type: text/plain
got
=
getattr
(
files
[
x
],
k
)
self
.
assertEqual
(
got
,
exp
)
def
test_fieldstorage_as_context_manager
(
self
):
fp
=
BytesIO
(
b'x'
*
10
)
env
=
{
'REQUEST_METHOD'
:
'PUT'
}
with
cgi
.
FieldStorage
(
fp
=
fp
,
environ
=
env
)
as
fs
:
content
=
fs
.
file
.
read
()
self
.
assertFalse
(
fs
.
file
.
closed
)
self
.
assertTrue
(
fs
.
file
.
closed
)
self
.
assertEqual
(
content
,
'x'
*
10
)
with
self
.
assertRaisesRegex
(
ValueError
,
'I/O operation on closed file'
):
fs
.
file
.
read
()
_qs_result
=
{
'key1'
:
'value1'
,
'key2'
:
[
'value2x'
,
'value2y'
],
...
...
@@ -481,9 +492,5 @@ Content-Transfer-Encoding: binary
--AaB03x--
"""
def
test_main
():
run_unittest
(
CgiTests
)
if
__name__
==
'__main__'
:
test_
main
()
unittest
.
main
()
Misc/NEWS
View file @
bf5e9604
...
...
@@ -235,6 +235,9 @@ Core and Builtins
Library
-------
- Issue #20289: cgi.FieldStorage() now supports the context management
protocol.
- Issue #13128: Print response headers for CONNECT requests when debuglevel
> 0. Patch by Demian Brecht.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment