Browse Source

whoops, remove debug prints

David Rose 14 years ago
parent
commit
b5eeced04a
1 changed files with 0 additions and 4 deletions
  1. 0 4
      direct/src/stdpy/file.py

+ 0 - 4
direct/src/stdpy/file.py

@@ -224,15 +224,11 @@ class file:
     xreadlines = readlines
 
     def seek(self, offset, whence = 0):
-        print "seek(%s)" % (offset)
         if self.__stream:
-            print "clear"
             self.__stream.clear()  # clear eof flag
         if self.__reader:
-            print "seekg"
             self.__stream.seekg(offset, whence)
         if self.__writer:
-            print "seekp"
             self.__stream.seekp(offset, whence)
 
     def tell(self):