From 12ec29f1051cff7b69f31a89ad4df7a2261892e2 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 13 Oct 2013 22:16:48 +0200 Subject: [PATCH] Closes #17335: remove no-op assignment. --- Lib/cgi.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/cgi.py b/Lib/cgi.py index b6fd407454..1d8040cc7a 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py @@ -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 -- 2.49.0