Changeset 1717:827cfaff87d7 for ftputil/file_transfer.py
- Timestamp:
- Dec 25, 2018, 11:05:32 PM (11 months ago)
- Branch:
- default
- histedit_source:
- 0a87e070cc46fff630b6cb475bbafedf1a4bc6c7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ftputil/file_transfer.py
r1713 r1717 7 7 """ 8 8 9 import io10 9 import os 11 10 … … 55 54 def fobj(self): 56 55 """Return a file object for the name/path in the constructor.""" 57 return io.open(self.name, self.mode)56 return open(self.name, self.mode) 58 57 59 58
Note: See TracChangeset
for help on using the changeset viewer.