[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/File - File.py:1.1.2.3

Stephan Richter srichter@cbu.edu
Thu, 28 Mar 2002 18:54:19 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/File
In directory cvs.zope.org:/tmp/cvs-serv29869/File

Modified Files:
      Tag: Zope-3x-branch
	File.py 
Log Message:
Removed debug print statements.


=== Zope3/lib/python/Zope/App/OFS/Content/File/File.py 1.1.2.2 => 1.1.2.3 ===
             size = len(data)
             if size < MAXCHUNKSIZE:
-                print 'and here'
                 self._data, self._size = FileChunk(data), size
-                print self._data
                 return None
             self._data, self._size = FileChunk(data), size
             return None