← Back to team overview

dolfin team mailing list archive

Changes to python compiled python module

 

Hello!

The compiled python module now resides in dolfin.cpp. Any previously cpp_Foo 
classes is now just Foo. In internal python modules we reach the compiled 
dolfin library by:

  import cpp
  cpp.Function

never:

       from cpp import *

You need to do an instant-clean to clean old compiled function code, that 
inherit the old dolfin.cpp_Function.

Johan