[Python-checkins] cpython: Remove unused method from internal class.
r.david.murray
python-checkins at python.org
Fri Apr 15 21:03:04 CEST 2011
http://hg.python.org/cpython/rev/51ebdd888a43
changeset: 69377:51ebdd888a43
user: R David Murray <rdmurray at bitdance.com>
date: Fri Apr 15 14:55:04 2011 -0400
summary:
Remove unused method from internal class.
files:
Lib/email/feedparser.py | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/Lib/email/feedparser.py b/Lib/email/feedparser.py
--- a/Lib/email/feedparser.py
+++ b/Lib/email/feedparser.py
@@ -120,9 +120,6 @@
# Reverse and insert at the front of the lines.
self._lines[:0] = lines[::-1]
- def is_closed(self):
- return self._closed
-
def __iter__(self):
return self
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list