Author: ArcRiley Date: 2007-07-05 01:22:37 -0400 (Thu, 05 Jul 2007) New Revision: 356
Removed: trunk/pysoy/src/transports/Soy.pxi Log: this is no longer needed Deleted: trunk/pysoy/src/transports/Soy.pxi =================================================================== --- trunk/pysoy/src/transports/Soy.pxi 2007-07-05 05:18:05 UTC (rev 355) +++ trunk/pysoy/src/transports/Soy.pxi 2007-07-05 05:22:37 UTC (rev 356) @@ -1,39 +0,0 @@ -# PySoy transports.Soy Class -# -# Copyright (C) 2006,2007 Team PySoy -# -# 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 3 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, see http://www.gnu.org/licenses -# -# $Id$ - -cdef class Soy : - '''PySoy "Soy" transport container - - This is a dict-like class for muxing PySoy datatypes together. - ''' - def __new__(self) : - self._objs = {} - - def __getitem__(self, key) : - return self._objs[key] - - def __repr__(self) : - return self._objs.__repr__() - - def __str__(self) : - return self._objs.__str__() - - def keys(self) : - return self._objs.keys() - _______________________________________________ PySoy-SVN mailing list [email protected] http://www.pysoy.org/mailman/listinfo/pysoy-svn
