Message83809
# With py3Krc1 it took me days to figure out how to
# replace my base class file. Granted, there were
# issues with io module at the time. Following met
# my need.
import io
class File(io.TextIOWrapper):
'''Open a text file with read access, providing...'''
def __init__(self,name):
super().__init__(open(name).buffer) |
|
Date |
User |
Action |
Args |
2009-03-19 14:30:25 | LambertDW | set | recipients:
+ LambertDW, loewis, georg.brandl, rhettinger, MLModel |
2009-03-19 14:30:24 | LambertDW | set | messageid: <1237473024.25.0.107412203505.issue5513@psf.upfronthosting.co.za> |
2009-03-19 14:30:16 | LambertDW | link | issue5513 messages |
2009-03-19 14:30:15 | LambertDW | create | |
|