Changeset 1553

Show
Ignore:
Timestamp:
06/19/04 00:24:03 (20 years ago)
Author:
jalet
Message:

Removed old comments

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/pdlanalyzer.py

    r1552 r1553  
    2222# 
    2323# $Log$ 
     24# Revision 1.10  2004/06/18 22:24:03  jalet 
     25# Removed old comments 
     26# 
    2427# Revision 1.9  2004/06/18 22:21:27  jalet 
    2528# Native PDF parser greatly improved. 
     
    417420        else :     
    418421            # normal file 
    419             self.infile = open(self.filename, "rb") # TODO : "U" mode only works in 2.3, is ignored in 2.1 and 2.2 
     422            self.infile = open(self.filename, "rb") 
    420423            self.mustclose = 1 
    421424            return 
    422425             
    423426        # Use a temporary file, always seekable contrary to standard input. 
    424         # This also has the benefit to let us use the "U" mode (new in Python 2.3) 
    425         self.infile = tempfile.TemporaryFile(mode="w+b")   # TODO : "U" mode only works in 2.3, is ignored in 2.1 and 2.2 
     427        self.infile = tempfile.TemporaryFile(mode="w+b") 
    426428        while 1 : 
    427429            data = infile.read(MEGABYTE)