On Mon, March 31, 2008 DOLFIN wrote:
> One or more new changesets pushed to the primary dolfin repository.
> A short summary of the last three changesets is included below.
>
> changeset:   3836:a9f201ac5fe10fbcfd3017028d095597bc8961d4
> tag:         tip
> user:        "Garth N. Wells <[EMAIL PROTECTED]>"
> date:        Mon Mar 31 19:04:52 2008 +0100
> files:       TODO_BuildSystem dolfin/la/PETScMatrix.cpp
> description:
> Add some build system todo points.

Added a Python.h test.
Regarding printing out a message at the end of the build, you can use the
atexit module, e.g.,

import atexit

def help():
    print "some help text"

atexit.register(help)

The function help will then be called when scons quits.

Johannes


_______________________________________________
DOLFIN-dev mailing list
[email protected]
http://www.fenics.org/mailman/listinfo/dolfin-dev

Reply via email to