[Cython] Add saveState/restoreState info to the migration guide

Cherry pick of trunk r2722.
This commit is contained in:
Ray Speth 2014-02-13 22:39:34 +00:00
parent cc27095599
commit 849dc5c82f

View file

@ -134,6 +134,13 @@ should be replaced with::
>>> gas.UV = -1.1e6, 5.5
>>> gas.TPY = 300, 101325, 'H2:1.0'
The ``saveState`` and ``restoreState`` methods have been removed. Their
functionality can be replicated as follows::
>>> state = gas.TDY
>>> # (operations that modify gas)
>>> gas.TDY = state
Printing Phase Summaries
------------------------