summaryrefslogtreecommitdiff
path: root/Mailman/pythonlib/StringIO.py
diff options
context:
space:
mode:
authorbwarsaw2002-02-23 05:58:53 +0000
committerbwarsaw2002-02-23 05:58:53 +0000
commitd26184863640945f34f72f52cb5d3973721a0fcb (patch)
tree2837c59f7a9e2735546f02c9769c91594c23f358 /Mailman/pythonlib/StringIO.py
parente9bd5dcabb14254f5bf6b3809755f148726cd3fd (diff)
downloadmailman-d26184863640945f34f72f52cb5d3973721a0fcb.tar.gz
mailman-d26184863640945f34f72f52cb5d3973721a0fcb.tar.zst
mailman-d26184863640945f34f72f52cb5d3973721a0fcb.zip
Diffstat (limited to 'Mailman/pythonlib/StringIO.py')
-rw-r--r--Mailman/pythonlib/StringIO.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/Mailman/pythonlib/StringIO.py b/Mailman/pythonlib/StringIO.py
deleted file mode 100644
index b8a2dc15d..000000000
--- a/Mailman/pythonlib/StringIO.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-"""Convenience wrapper which tries to load cStringIO, followed by StringIO."""
-
-try:
- from cStringIO import *
-except ImportError:
- from StringIO import *