Open
Description
I was looking at the Python code example in PlainText file format section of the Getting Data into VisIt chapter and found what I that was incorrect code.
On further investigation, I found it was referencing a snippet of code from our test suite so it must work. The issue is that the function to get the file open options is GetDefaultFileOpenOptions
, but the example code used GetDefaultOpenOptions
. It turns out the test suite code defines a GetDefaultOpenOptions
that calls GetDefaultFileOpenOptions
. Someone viewing that example would never know that and if they tried to use the code it wouldn't work.