diff options
author | Georg Brandl <georg@python.org> | 2013-10-13 20:16:48 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-13 20:16:48 (GMT) |
commit | 12ec29f1051cff7b69f31a89ad4df7a2261892e2 (patch) | |
tree | a6c95c48f9c891d039737d3a82eadda5ae4c4ee8 /Lib/cgi.py | |
parent | 881bfba204d4b7ff4e7ba3f29f96bbb3ffa41dd9 (diff) | |
download | cpython-12ec29f1051cff7b69f31a89ad4df7a2261892e2.zip cpython-12ec29f1051cff7b69f31a89ad4df7a2261892e2.tar.gz cpython-12ec29f1051cff7b69f31a89ad4df7a2261892e2.tar.bz2 |
Closes #17335: remove no-op assignment.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -676,7 +676,6 @@ class FieldStorage: encoding=self.encoding, errors=self.errors) for key, value in query: self.list.append(MiniFieldStorage(key, value)) - FieldStorageClass = None klass = self.FieldStorageClass or self.__class__ first_line = self.fp.readline() # bytes |