|
HFST - Helsinki Finite-State Transducer Technology - Python API
version 3.11.0
|
Stream is closed. More...
Additional Inherited Members | |
Public Member Functions inherited from HfstException | |
| def | what |
| A message describing the error in more detail. More... | |
Stream is closed.
Thrown by hfst.HfstTransducer.write_att hfst.HfstOutputStream.write
An example:
try:
tr = hfst.regex('foo')
outstr = hfst.HfstOutputStream(filename='testfile')
outstr.close()
outstr.write(tr)
except hfst.exceptions.StreamIsClosedException:
print("Could not write transducer: stream to file was closed.")
1.8.7