This is a base class for all file format readers.
It currently handles the queueing of error messages generated by the
underlying file reading libraries.
|
|
__init__(self,
error_handler)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
|
|
|
|
getReadErrors(self)
Returns the list of error messages generated from the reading
operations since the most recent clearReadErrors() call. |
|
|
|
|
clearReadErrors(self)
Clears the list of read errors. |
|
|
|
|
startErrorQueuing(self)
Queue error messages and suppress printing to the stream. |
|
|
|
|
stopErrorQueuing(self)
Turn off error queueing and add any error messages to the error_queue
attribute. |
|
|
|
Inherited from _ReaderWriterContextManager:
__enter__,
__exit__
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|