what I'm doing:
model = pmd_read( StringIO( string()(0) ) )
string()(0) is part of my automated frontend for my program's import/export scripts. which returns a string of the imported file.
pmd_read is forwarded from an extended library used by the script, which forwards pymeshio.pmd.reader.read
I'm not able to get the file() stream as the file is closed before the script is called.
(the file data is backed up as array('B',[]) before string()() converts it for the script)
what I'm doing:
model = pmd_read( StringIO( string()(0) ) )
string()(0) is part of my automated frontend for my program's import/export scripts. which returns a string of the imported file.
pmd_read is forwarded from an extended library used by the script, which forwards
pymeshio.pmd.reader.read
I'm not able to get the file() stream as the file is closed before the script is called. (the file data is backed up as array('B',[]) before string()() converts it for the script)