From 881bfba204d4b7ff4e7ba3f29f96bbb3ffa41dd9 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sun, 13 Oct 2013 22:13:56 +0200 Subject: Remove unexpected headings from Misc/NEWS --- Misc/NEWS | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index a56339c..98a2d92 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -1344,14 +1344,6 @@ Tools/Demos - Issue #12990: The "Python Launcher" on OSX could not launch python scripts that have paths that include wide characters. -What's New in Python 3.3.1 release candidate 1? -=============================================== - -*Release date: 24-Mar-2013* - -Core and Builtins ------------------ - - Issue #17328: Fix possible refleak in dict.setdefault. - Issue #17275: Corrected class name in init error messages of the C version of -- cgit v0.12 From 12ec29f1051cff7b69f31a89ad4df7a2261892e2 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 13 Oct 2013 22:16:48 +0200 Subject: 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 b6fd407..1d8040c 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 -- cgit v0.12