From d26184863640945f34f72f52cb5d3973721a0fcb Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Sat, 23 Feb 2002 05:58:53 +0000 Subject: Deprecate the Mailman/pythonlib directory. First, most if not all of the modules are now unnecessary because we're going to require at least Python 2.1.x and it should have relatively bug-free versions of these modules. Second, if we find we need to override standard modules, we have a different way of doing it now (by path-hacking in a pythonlib directory one level up into the front of sys.path). --- Mailman/pythonlib/StringIO.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 Mailman/pythonlib/StringIO.py (limited to 'Mailman/pythonlib/StringIO.py') 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 * -- cgit v1.2.3-70-g09d2