sieve-dev FIAT import question

Jed Brown jed at 59A2.org
Tue Mar 25 08:47:10 CDT 2008


On Tue 2008-03-25 08:24, Matthew Knepley wrote:
> On Tue, Mar 25, 2008 at 7:22 AM, Jed Brown <jed at 59a2.org> wrote:
> > When I try to build the sieve examples, I get errors like the one below.  If I
> >  move the `import FIAT.shapes' up to the top of the file, it works just fine.  I
> >  don't know if there is something peculiar about my configuration, but this
> >  problem hasn't gone away in the last weeks so I thought I'd mention it.  My
> >  configuration included the options:
> 
> Do you have numpy in a weird place? You are the first to report this
> error, and I
> am not sure sure how moving an import would matter, but evidently on your
> system it does somehow. In order to debug it, I need to know how you installed
> numpy.

No, it is in /usr/lib/python2.5/site-packages/numpy/.  I see the same problem on
two systems, an x86 Ubuntu system with numpy installed via apt and an x86_64
Archlinux system with numpy built from source and installed with package
manager.  I have PYTHONPATH=/home/jed/usr/lib/python2.5/site-packages because
that is where I installed FIAT and other fenics packages.  What exactly is the
build system trying to do in this case?  As noted above, when I just import FIAT
at the top instead of in run(), everything works fine.  Since this modification
is easy, if it doesn't affect any one else, no problem, but these systems are
really quite standard so I'm surprised it hasn't popped up.  I have attached
verbose output from my python session.

Jed
-------------- next part --------------
Script started on Tue 25 Mar 2008 02:45:17 PM CET
k\14:45 jedbrakk10 ~$ python -v
# installing zipimport hook
import zipimport # builtin
# installed zipimport hook
# /usr/lib/python2.5/site.pyc matches /usr/lib/python2.5/site.py
import site # precompiled from /usr/lib/python2.5/site.pyc
# /usr/lib/python2.5/os.pyc matches /usr/lib/python2.5/os.py
import os # precompiled from /usr/lib/python2.5/os.pyc
import errno # builtin
import posix # builtin
# /usr/lib/python2.5/posixpath.pyc matches /usr/lib/python2.5/posixpath.py
import posixpath # precompiled from /usr/lib/python2.5/posixpath.pyc
# /usr/lib/python2.5/stat.pyc matches /usr/lib/python2.5/stat.py
import stat # precompiled from /usr/lib/python2.5/stat.pyc
# /usr/lib/python2.5/UserDict.pyc matches /usr/lib/python2.5/UserDict.py
import UserDict # precompiled from /usr/lib/python2.5/UserDict.pyc
# /usr/lib/python2.5/copy_reg.pyc matches /usr/lib/python2.5/copy_reg.py
import copy_reg # precompiled from /usr/lib/python2.5/copy_reg.pyc
# /usr/lib/python2.5/types.pyc matches /usr/lib/python2.5/types.py
import types # precompiled from /usr/lib/python2.5/types.pyc
import _types # builtin
# /usr/lib/python2.5/warnings.pyc matches /usr/lib/python2.5/warnings.py
import warnings # precompiled from /usr/lib/python2.5/warnings.pyc
# /usr/lib/python2.5/linecache.pyc matches /usr/lib/python2.5/linecache.py
import linecache # precompiled from /usr/lib/python2.5/linecache.pyc
import encodings # directory /usr/lib/python2.5/encodings
# /usr/lib/python2.5/encodings/__init__.pyc matches /usr/lib/python2.5/encodings/__init__.py
import encodings # precompiled from /usr/lib/python2.5/encodings/__init__.pyc
# /usr/lib/python2.5/codecs.pyc matches /usr/lib/python2.5/codecs.py
import codecs # precompiled from /usr/lib/python2.5/codecs.pyc
import _codecs # builtin
# /usr/lib/python2.5/encodings/aliases.pyc matches /usr/lib/python2.5/encodings/aliases.py
import encodings.aliases # precompiled from /usr/lib/python2.5/encodings/aliases.pyc
# /usr/lib/python2.5/encodings/utf_8.pyc matches /usr/lib/python2.5/encodings/utf_8.py
import encodings.utf_8 # precompiled from /usr/lib/python2.5/encodings/utf_8.pyc
Python 2.5.2 (r252:60911, Feb 23 2008, 21:07:14) 
[GCC 4.2.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
dlopen("/usr/lib/python2.5/lib-dynload/readline.so", 2);
import readline # dynamically loaded from /usr/lib/python2.5/lib-dynload/readline.so
>>> import numpy
import numpy # directory /usr/lib/python2.5/site-packages/numpy
# /usr/lib/python2.5/site-packages/numpy/__init__.pyc matches /usr/lib/python2.5/site-packages/numpy/__init__.py
import numpy # precompiled from /usr/lib/python2.5/site-packages/numpy/__init__.pyc
# /usr/lib/python2.5/site-packages/numpy/__config__.pyc matches /usr/lib/python2.5/site-packages/numpy/__config__.py
import numpy.__config__ # precompiled from /usr/lib/python2.5/site-packages/numpy/__config__.pyc
# /usr/lib/python2.5/site-packages/numpy/version.pyc matches /usr/lib/python2.5/site-packages/numpy/version.py
import numpy.version # precompiled from /usr/lib/python2.5/site-packages/numpy/version.pyc
# /usr/lib/python2.5/site-packages/numpy/_import_tools.pyc matches /usr/lib/python2.5/site-packages/numpy/_import_tools.py
import numpy._import_tools # precompiled from /usr/lib/python2.5/site-packages/numpy/_import_tools.pyc
import imp # builtin
# /usr/lib/python2.5/glob.pyc matches /usr/lib/python2.5/glob.py
import glob # precompiled from /usr/lib/python2.5/glob.pyc
# /usr/lib/python2.5/fnmatch.pyc matches /usr/lib/python2.5/fnmatch.py
import fnmatch # precompiled from /usr/lib/python2.5/fnmatch.pyc
# /usr/lib/python2.5/re.pyc matches /usr/lib/python2.5/re.py
import re # precompiled from /usr/lib/python2.5/re.pyc
# /usr/lib/python2.5/sre_compile.pyc matches /usr/lib/python2.5/sre_compile.py
import sre_compile # precompiled from /usr/lib/python2.5/sre_compile.pyc
import _sre # builtin
# /usr/lib/python2.5/sre_constants.pyc matches /usr/lib/python2.5/sre_constants.py
import sre_constants # precompiled from /usr/lib/python2.5/sre_constants.pyc
# /usr/lib/python2.5/sre_parse.pyc matches /usr/lib/python2.5/sre_parse.py
import sre_parse # precompiled from /usr/lib/python2.5/sre_parse.pyc
import numpy.testing # directory /usr/lib/python2.5/site-packages/numpy/testing
# /usr/lib/python2.5/site-packages/numpy/testing/__init__.pyc matches /usr/lib/python2.5/site-packages/numpy/testing/__init__.py
import numpy.testing # precompiled from /usr/lib/python2.5/site-packages/numpy/testing/__init__.pyc
# /usr/lib/python2.5/site-packages/numpy/testing/info.pyc matches /usr/lib/python2.5/site-packages/numpy/testing/info.py
import numpy.testing.info # precompiled from /usr/lib/python2.5/site-packages/numpy/testing/info.pyc
# /usr/lib/python2.5/site-packages/numpy/testing/numpytest.pyc matches /usr/lib/python2.5/site-packages/numpy/testing/numpytest.py
import numpy.testing.numpytest # precompiled from /usr/lib/python2.5/site-packages/numpy/testing/numpytest.pyc
# /usr/lib/python2.5/unittest.pyc matches /usr/lib/python2.5/unittest.py
import unittest # precompiled from /usr/lib/python2.5/unittest.pyc
dlopen("/usr/lib/python2.5/lib-dynload/time.so", 2);
import time # dynamically loaded from /usr/lib/python2.5/lib-dynload/time.so
# /usr/lib/python2.5/traceback.pyc matches /usr/lib/python2.5/traceback.py
import traceback # precompiled from /usr/lib/python2.5/traceback.pyc
# /usr/lib/python2.5/site-packages/numpy/testing/utils.pyc matches /usr/lib/python2.5/site-packages/numpy/testing/utils.py
import numpy.testing.utils # precompiled from /usr/lib/python2.5/site-packages/numpy/testing/utils.pyc
# /usr/lib/python2.5/difflib.pyc matches /usr/lib/python2.5/difflib.py
import difflib # precompiled from /usr/lib/python2.5/difflib.pyc
# /usr/lib/python2.5/heapq.pyc matches /usr/lib/python2.5/heapq.py
import heapq # precompiled from /usr/lib/python2.5/heapq.pyc
dlopen("/usr/lib/python2.5/lib-dynload/itertools.so", 2);
import itertools # dynamically loaded from /usr/lib/python2.5/lib-dynload/itertools.so
dlopen("/usr/lib/python2.5/lib-dynload/operator.so", 2);
import operator # dynamically loaded from /usr/lib/python2.5/lib-dynload/operator.so
# /usr/lib/python2.5/bisect.pyc matches /usr/lib/python2.5/bisect.py
import bisect # precompiled from /usr/lib/python2.5/bisect.pyc
dlopen("/usr/lib/python2.5/lib-dynload/_bisect.so", 2);
import _bisect # dynamically loaded from /usr/lib/python2.5/lib-dynload/_bisect.so
dlopen("/usr/lib/python2.5/lib-dynload/_heapq.so", 2);
import _heapq # dynamically loaded from /usr/lib/python2.5/lib-dynload/_heapq.so
import numpy.distutils # directory /usr/lib/python2.5/site-packages/numpy/distutils
# /usr/lib/python2.5/site-packages/numpy/distutils/__init__.pyc matches /usr/lib/python2.5/site-packages/numpy/distutils/__init__.py
import numpy.distutils # precompiled from /usr/lib/python2.5/site-packages/numpy/distutils/__init__.pyc
# /usr/lib/python2.5/site-packages/numpy/distutils/__version__.pyc matches /usr/lib/python2.5/site-packages/numpy/distutils/__version__.py
import numpy.distutils.__version__ # precompiled from /usr/lib/python2.5/site-packages/numpy/distutils/__version__.pyc
# /usr/lib/python2.5/site-packages/numpy/distutils/ccompiler.pyc matches /usr/lib/python2.5/site-packages/numpy/distutils/ccompiler.py
import numpy.distutils.ccompiler # precompiled from /usr/lib/python2.5/site-packages/numpy/distutils/ccompiler.pyc
# /usr/lib/python2.5/new.pyc matches /usr/lib/python2.5/new.py
import new # precompiled from /usr/lib/python2.5/new.pyc
import distutils # directory /usr/lib/python2.5/distutils
# /usr/lib/python2.5/distutils/__init__.pyc matches /usr/lib/python2.5/distutils/__init__.py
import distutils # precompiled from /usr/lib/python2.5/distutils/__init__.pyc
# /usr/lib/python2.5/distutils/ccompiler.pyc matches /usr/lib/python2.5/distutils/ccompiler.py
import distutils.ccompiler # precompiled from /usr/lib/python2.5/distutils/ccompiler.pyc
# /usr/lib/python2.5/copy.pyc matches /usr/lib/python2.5/copy.py
import copy # precompiled from /usr/lib/python2.5/copy.pyc
# /usr/lib/python2.5/distutils/errors.pyc matches /usr/lib/python2.5/distutils/errors.py
import distutils.errors # precompiled from /usr/lib/python2.5/distutils/errors.pyc
# /usr/lib/python2.5/distutils/spawn.pyc matches /usr/lib/python2.5/distutils/spawn.py
import distutils.spawn # precompiled from /usr/lib/python2.5/distutils/spawn.pyc
# /usr/lib/python2.5/string.pyc matches /usr/lib/python2.5/string.py
import string # precompiled from /usr/lib/python2.5/string.pyc
dlopen("/usr/lib/python2.5/lib-dynload/strop.so", 2);
import strop # dynamically loaded from /usr/lib/python2.5/lib-dynload/strop.so
# /usr/lib/python2.5/distutils/log.pyc matches /usr/lib/python2.5/distutils/log.py
import distutils.log # precompiled from /usr/lib/python2.5/distutils/log.pyc
# /usr/lib/python2.5/distutils/file_util.pyc matches /usr/lib/python2.5/distutils/file_util.py
import distutils.file_util # precompiled from /usr/lib/python2.5/distutils/file_util.pyc
# /usr/lib/python2.5/distutils/dir_util.pyc matches /usr/lib/python2.5/distutils/dir_util.py
import distutils.dir_util # precompiled from /usr/lib/python2.5/distutils/dir_util.pyc
# /usr/lib/python2.5/distutils/dep_util.pyc matches /usr/lib/python2.5/distutils/dep_util.py
import distutils.dep_util # precompiled from /usr/lib/python2.5/distutils/dep_util.pyc
# /usr/lib/python2.5/distutils/util.pyc matches /usr/lib/python2.5/distutils/util.py
import distutils.util # precompiled from /usr/lib/python2.5/distutils/util.pyc
# /usr/lib/python2.5/distutils/sysconfig.pyc matches /usr/lib/python2.5/distutils/sysconfig.py
import distutils.sysconfig # precompiled from /usr/lib/python2.5/distutils/sysconfig.pyc
# /usr/lib/python2.5/distutils/version.pyc matches /usr/lib/python2.5/distutils/version.py
import distutils.version # precompiled from /usr/lib/python2.5/distutils/version.pyc
# /usr/lib/python2.5/site-packages/numpy/distutils/log.pyc matches /usr/lib/python2.5/site-packages/numpy/distutils/log.py
import numpy.distutils.log # precompiled from /usr/lib/python2.5/site-packages/numpy/distutils/log.pyc
# /usr/lib/python2.5/site-packages/numpy/distutils/misc_util.pyc matches /usr/lib/python2.5/site-packages/numpy/distutils/misc_util.py
import numpy.distutils.misc_util # precompiled from /usr/lib/python2.5/site-packages/numpy/distutils/misc_util.pyc
# /usr/lib/python2.5/atexit.pyc matches /usr/lib/python2.5/atexit.py
import atexit # precompiled from /usr/lib/python2.5/atexit.pyc
# /usr/lib/python2.5/tempfile.pyc matches /usr/lib/python2.5/tempfile.py
import tempfile # precompiled from /usr/lib/python2.5/tempfile.pyc
# /usr/lib/python2.5/random.pyc matches /usr/lib/python2.5/random.py
import random # precompiled from /usr/lib/python2.5/random.pyc
dlopen("/usr/lib/python2.5/lib-dynload/math.so", 2);
import math # dynamically loaded from /usr/lib/python2.5/lib-dynload/math.so
dlopen("/usr/lib/python2.5/lib-dynload/binascii.so", 2);
import binascii # dynamically loaded from /usr/lib/python2.5/lib-dynload/binascii.so
dlopen("/usr/lib/python2.5/lib-dynload/_random.so", 2);
import _random # dynamically loaded from /usr/lib/python2.5/lib-dynload/_random.so
dlopen("/usr/lib/python2.5/lib-dynload/fcntl.so", 2);
import fcntl # dynamically loaded from /usr/lib/python2.5/lib-dynload/fcntl.so
import thread # builtin
import curses # directory /usr/lib/python2.5/curses
# /usr/lib/python2.5/curses/__init__.pyc matches /usr/lib/python2.5/curses/__init__.py
import curses # precompiled from /usr/lib/python2.5/curses/__init__.pyc
dlopen("/usr/lib/python2.5/lib-dynload/_curses.so", 2);
import _curses # dynamically loaded from /usr/lib/python2.5/lib-dynload/_curses.so
# /usr/lib/python2.5/curses/wrapper.pyc matches /usr/lib/python2.5/curses/wrapper.py
import curses.wrapper # precompiled from /usr/lib/python2.5/curses/wrapper.pyc
# /usr/lib/python2.5/site-packages/numpy/distutils/exec_command.pyc matches /usr/lib/python2.5/site-packages/numpy/distutils/exec_command.py
import numpy.distutils.exec_command # precompiled from /usr/lib/python2.5/site-packages/numpy/distutils/exec_command.pyc
# /usr/lib/python2.5/site-packages/numpy/distutils/unixccompiler.pyc matches /usr/lib/python2.5/site-packages/numpy/distutils/unixccompiler.py
import numpy.distutils.unixccompiler # precompiled from /usr/lib/python2.5/site-packages/numpy/distutils/unixccompiler.pyc
# /usr/lib/python2.5/distutils/unixccompiler.pyc matches /usr/lib/python2.5/distutils/unixccompiler.py
import distutils.unixccompiler # precompiled from /usr/lib/python2.5/distutils/unixccompiler.pyc
# /usr/lib/python2.5/site-packages/numpy/distutils/info.pyc matches /usr/lib/python2.5/site-packages/numpy/distutils/info.py
import numpy.distutils.info # precompiled from /usr/lib/python2.5/site-packages/numpy/distutils/info.pyc
# /usr/lib/python2.5/site-packages/numpy/distutils/__config__.pyc matches /usr/lib/python2.5/site-packages/numpy/distutils/__config__.py
import numpy.distutils.__config__ # precompiled from /usr/lib/python2.5/site-packages/numpy/distutils/__config__.pyc
# /usr/lib/python2.5/site-packages/numpy/testing/parametric.pyc matches /usr/lib/python2.5/site-packages/numpy/testing/parametric.py
import numpy.testing.parametric # precompiled from /usr/lib/python2.5/site-packages/numpy/testing/parametric.pyc
import numpy.core # directory /usr/lib/python2.5/site-packages/numpy/core
# /usr/lib/python2.5/site-packages/numpy/core/__init__.pyc matches /usr/lib/python2.5/site-packages/numpy/core/__init__.py
import numpy.core # precompiled from /usr/lib/python2.5/site-packages/numpy/core/__init__.pyc
# /usr/lib/python2.5/site-packages/numpy/core/info.pyc matches /usr/lib/python2.5/site-packages/numpy/core/info.py
import numpy.core.info # precompiled from /usr/lib/python2.5/site-packages/numpy/core/info.pyc
dlopen("/usr/lib/python2.5/site-packages/numpy/core/multiarray.so", 2);
import numpy.core.multiarray # dynamically loaded from /usr/lib/python2.5/site-packages/numpy/core/multiarray.so
dlopen("/usr/lib/python2.5/site-packages/numpy/core/umath.so", 2);
import numpy.core.umath # dynamically loaded from /usr/lib/python2.5/site-packages/numpy/core/umath.so
# /usr/lib/python2.5/site-packages/numpy/core/_internal.pyc matches /usr/lib/python2.5/site-packages/numpy/core/_internal.py
import numpy.core._internal # precompiled from /usr/lib/python2.5/site-packages/numpy/core/_internal.pyc
# /usr/lib/python2.5/site-packages/numpy/core/numerictypes.pyc matches /usr/lib/python2.5/site-packages/numpy/core/numerictypes.py
import numpy.core.numerictypes # precompiled from /usr/lib/python2.5/site-packages/numpy/core/numerictypes.pyc
dlopen("/usr/lib/python2.5/site-packages/numpy/core/_sort.so", 2);
import numpy.core._sort # dynamically loaded from /usr/lib/python2.5/site-packages/numpy/core/_sort.so
# /usr/lib/python2.5/site-packages/numpy/core/numeric.pyc matches /usr/lib/python2.5/site-packages/numpy/core/numeric.py
import numpy.core.numeric # precompiled from /usr/lib/python2.5/site-packages/numpy/core/numeric.pyc
dlopen("/usr/lib/python2.5/site-packages/numpy/core/_dotblas.so", 2);
import numpy.core._dotblas # dynamically loaded from /usr/lib/python2.5/site-packages/numpy/core/_dotblas.so
# /usr/lib/python2.5/site-packages/numpy/core/arrayprint.pyc matches /usr/lib/python2.5/site-packages/numpy/core/arrayprint.py
import numpy.core.arrayprint # precompiled from /usr/lib/python2.5/site-packages/numpy/core/arrayprint.pyc
# /usr/lib/python2.5/site-packages/numpy/core/fromnumeric.pyc matches /usr/lib/python2.5/site-packages/numpy/core/fromnumeric.py
import numpy.core.fromnumeric # precompiled from /usr/lib/python2.5/site-packages/numpy/core/fromnumeric.pyc
dlopen("/usr/lib/python2.5/lib-dynload/cPickle.so", 2);
dlopen("/usr/lib/python2.5/lib-dynload/cStringIO.so", 2);
import cStringIO # dynamically loaded from /usr/lib/python2.5/lib-dynload/cStringIO.so
import cPickle # dynamically loaded from /usr/lib/python2.5/lib-dynload/cPickle.so
# /usr/lib/python2.5/site-packages/numpy/core/defmatrix.pyc matches /usr/lib/python2.5/site-packages/numpy/core/defmatrix.py
import numpy.core.defmatrix # precompiled from /usr/lib/python2.5/site-packages/numpy/core/defmatrix.pyc
# /usr/lib/python2.5/site-packages/numpy/core/ma.pyc matches /usr/lib/python2.5/site-packages/numpy/core/ma.py
import numpy.core.ma # precompiled from /usr/lib/python2.5/site-packages/numpy/core/ma.pyc
# /usr/lib/python2.5/site-packages/numpy/core/defchararray.pyc matches /usr/lib/python2.5/site-packages/numpy/core/defchararray.py
import numpy.core.defchararray # precompiled from /usr/lib/python2.5/site-packages/numpy/core/defchararray.pyc
# /usr/lib/python2.5/site-packages/numpy/core/records.pyc matches /usr/lib/python2.5/site-packages/numpy/core/records.py
import numpy.core.records # precompiled from /usr/lib/python2.5/site-packages/numpy/core/records.pyc
# /usr/lib/python2.5/site-packages/numpy/core/memmap.pyc matches /usr/lib/python2.5/site-packages/numpy/core/memmap.py
import numpy.core.memmap # precompiled from /usr/lib/python2.5/site-packages/numpy/core/memmap.pyc
dlopen("/usr/lib/python2.5/lib-dynload/mmap.so", 2);
import mmap # dynamically loaded from /usr/lib/python2.5/lib-dynload/mmap.so
dlopen("/usr/lib/python2.5/site-packages/numpy/core/scalarmath.so", 2);
import numpy.core.scalarmath # dynamically loaded from /usr/lib/python2.5/site-packages/numpy/core/scalarmath.so
import numpy.lib # directory /usr/lib/python2.5/site-packages/numpy/lib
# /usr/lib/python2.5/site-packages/numpy/lib/__init__.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/__init__.py
import numpy.lib # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/__init__.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/info.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/info.py
import numpy.lib.info # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/info.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/type_check.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/type_check.py
import numpy.lib.type_check # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/type_check.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/ufunclike.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/ufunclike.py
import numpy.lib.ufunclike # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/ufunclike.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/index_tricks.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/index_tricks.py
import numpy.lib.index_tricks # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/index_tricks.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/function_base.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/function_base.py
import numpy.lib.function_base # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/function_base.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/shape_base.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/shape_base.py
import numpy.lib.shape_base # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/shape_base.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/twodim_base.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/twodim_base.py
import numpy.lib.twodim_base # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/twodim_base.pyc
dlopen("/usr/lib/python2.5/site-packages/numpy/lib/_compiled_base.so", 2);
import numpy.lib._compiled_base # dynamically loaded from /usr/lib/python2.5/site-packages/numpy/lib/_compiled_base.so
# /usr/lib/python2.5/site-packages/numpy/lib/arraysetops.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/arraysetops.py
import numpy.lib.arraysetops # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/arraysetops.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/scimath.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/scimath.py
import numpy.lib.scimath # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/scimath.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/polynomial.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/polynomial.py
import numpy.lib.polynomial # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/polynomial.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/getlimits.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/getlimits.py
import numpy.lib.getlimits # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/getlimits.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/machar.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/machar.py
import numpy.lib.machar # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/machar.pyc
# /usr/lib/python2.5/site-packages/numpy/lib/utils.pyc matches /usr/lib/python2.5/site-packages/numpy/lib/utils.py
import numpy.lib.utils # precompiled from /usr/lib/python2.5/site-packages/numpy/lib/utils.pyc
# /usr/lib/python2.5/inspect.pyc matches /usr/lib/python2.5/inspect.py
import inspect # precompiled from /usr/lib/python2.5/inspect.pyc
# /usr/lib/python2.5/dis.pyc matches /usr/lib/python2.5/dis.py
import dis # precompiled from /usr/lib/python2.5/dis.pyc
# /usr/lib/python2.5/opcode.pyc matches /usr/lib/python2.5/opcode.py
import opcode # precompiled from /usr/lib/python2.5/opcode.pyc
# /usr/lib/python2.5/tokenize.pyc matches /usr/lib/python2.5/tokenize.py
import tokenize # precompiled from /usr/lib/python2.5/tokenize.pyc
# /usr/lib/python2.5/token.pyc matches /usr/lib/python2.5/token.py
import token # precompiled from /usr/lib/python2.5/token.pyc
import numpy.linalg # directory /usr/lib/python2.5/site-packages/numpy/linalg
# /usr/lib/python2.5/site-packages/numpy/linalg/__init__.pyc matches /usr/lib/python2.5/site-packages/numpy/linalg/__init__.py
import numpy.linalg # precompiled from /usr/lib/python2.5/site-packages/numpy/linalg/__init__.pyc
# /usr/lib/python2.5/site-packages/numpy/linalg/info.pyc matches /usr/lib/python2.5/site-packages/numpy/linalg/info.py
import numpy.linalg.info # precompiled from /usr/lib/python2.5/site-packages/numpy/linalg/info.pyc
# /usr/lib/python2.5/site-packages/numpy/linalg/linalg.pyc matches /usr/lib/python2.5/site-packages/numpy/linalg/linalg.py
import numpy.linalg.linalg # precompiled from /usr/lib/python2.5/site-packages/numpy/linalg/linalg.pyc
dlopen("/usr/lib/python2.5/site-packages/numpy/linalg/lapack_lite.so", 2);
import numpy.linalg.lapack_lite # dynamically loaded from /usr/lib/python2.5/site-packages/numpy/linalg/lapack_lite.so
import numpy.fft # directory /usr/lib/python2.5/site-packages/numpy/fft
# /usr/lib/python2.5/site-packages/numpy/fft/__init__.pyc matches /usr/lib/python2.5/site-packages/numpy/fft/__init__.py
import numpy.fft # precompiled from /usr/lib/python2.5/site-packages/numpy/fft/__init__.pyc
# /usr/lib/python2.5/site-packages/numpy/fft/info.pyc matches /usr/lib/python2.5/site-packages/numpy/fft/info.py
import numpy.fft.info # precompiled from /usr/lib/python2.5/site-packages/numpy/fft/info.pyc
# /usr/lib/python2.5/site-packages/numpy/fft/fftpack.pyc matches /usr/lib/python2.5/site-packages/numpy/fft/fftpack.py
import numpy.fft.fftpack # precompiled from /usr/lib/python2.5/site-packages/numpy/fft/fftpack.pyc
dlopen("/usr/lib/python2.5/site-packages/numpy/fft/fftpack_lite.so", 2);
import numpy.fft.fftpack_lite # dynamically loaded from /usr/lib/python2.5/site-packages/numpy/fft/fftpack_lite.so
# /usr/lib/python2.5/site-packages/numpy/fft/helper.pyc matches /usr/lib/python2.5/site-packages/numpy/fft/helper.py
import numpy.fft.helper # precompiled from /usr/lib/python2.5/site-packages/numpy/fft/helper.pyc
import numpy.random # directory /usr/lib/python2.5/site-packages/numpy/random
# /usr/lib/python2.5/site-packages/numpy/random/__init__.pyc matches /usr/lib/python2.5/site-packages/numpy/random/__init__.py
import numpy.random # precompiled from /usr/lib/python2.5/site-packages/numpy/random/__init__.pyc
# /usr/lib/python2.5/site-packages/numpy/random/info.pyc matches /usr/lib/python2.5/site-packages/numpy/random/info.py
import numpy.random.info # precompiled from /usr/lib/python2.5/site-packages/numpy/random/info.pyc
dlopen("/usr/lib/python2.5/site-packages/numpy/random/mtrand.so", 2);
import numpy.random.mtrand # dynamically loaded from /usr/lib/python2.5/site-packages/numpy/random/mtrand.so
# /usr/lib/python2.5/site-packages/numpy/ctypeslib.pyc matches /usr/lib/python2.5/site-packages/numpy/ctypeslib.py
import numpy.ctypeslib # precompiled from /usr/lib/python2.5/site-packages/numpy/ctypeslib.pyc
import ctypes # directory /usr/lib/python2.5/ctypes
# /usr/lib/python2.5/ctypes/__init__.pyc matches /usr/lib/python2.5/ctypes/__init__.py
import ctypes # precompiled from /usr/lib/python2.5/ctypes/__init__.pyc
dlopen("/usr/lib/python2.5/lib-dynload/_ctypes.so", 2);
import _ctypes # dynamically loaded from /usr/lib/python2.5/lib-dynload/_ctypes.so
# /usr/lib/python2.5/struct.pyc matches /usr/lib/python2.5/struct.py
import struct # precompiled from /usr/lib/python2.5/struct.pyc
dlopen("/usr/lib/python2.5/lib-dynload/_struct.so", 2);
import _struct # dynamically loaded from /usr/lib/python2.5/lib-dynload/_struct.so
# /usr/lib/python2.5/ctypes/_endian.pyc matches /usr/lib/python2.5/ctypes/_endian.py
import ctypes._endian # precompiled from /usr/lib/python2.5/ctypes/_endian.pyc
# /usr/lib/python2.5/site-packages/numpy/add_newdocs.pyc matches /usr/lib/python2.5/site-packages/numpy/add_newdocs.py
import numpy.add_newdocs # precompiled from /usr/lib/python2.5/site-packages/numpy/add_newdocs.pyc
>>> from FIAT import shapes, Lagrange, quadrature
import FIAT # directory /home/jed/usr/lib/python2.5/site-packages/FIAT
# /home/jed/usr/lib/python2.5/site-packages/FIAT/__init__.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/__init__.py
import FIAT # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/__init__.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/shapes.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/shapes.py
import FIAT.shapes # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/shapes.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/factorial.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/factorial.py
import FIAT.factorial # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/factorial.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/numbering.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/numbering.py
import FIAT.numbering # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/numbering.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/reference.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/reference.py
import FIAT.reference # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/reference.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/Lagrange.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/Lagrange.py
import FIAT.Lagrange # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/Lagrange.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/dualbasis.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/dualbasis.py
import FIAT.dualbasis # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/dualbasis.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/functional.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/functional.py
import FIAT.functional # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/functional.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/quadrature.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/quadrature.py
import FIAT.quadrature # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/quadrature.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/jacobi.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/jacobi.py
import FIAT.jacobi # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/jacobi.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/gamma.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/gamma.py
import FIAT.gamma # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/gamma.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/polynomial.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/polynomial.py
import FIAT.polynomial # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/polynomial.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/expansions.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/expansions.py
import FIAT.expansions # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/expansions.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/functionaltype.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/functionaltype.py
import FIAT.functionaltype # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/functionaltype.pyc
# /home/jed/usr/lib/python2.5/site-packages/FIAT/functionalset.pyc matches /home/jed/usr/lib/python2.5/site-packages/FIAT/functionalset.py
import FIAT.functionalset # precompiled from /home/jed/usr/lib/python2.5/site-packages/FIAT/functionalset.pyc
>>> exi
# clear __builtin__._
# clear sys.path
# clear sys.argv
# clear sys.ps1
# clear sys.ps2
# clear sys.exitfunc
# clear sys.exc_type
# clear sys.exc_value
# clear sys.exc_traceback
# clear sys.last_type
# clear sys.last_value
# clear sys.last_traceback
# clear sys.path_hooks
# clear sys.path_importer_cache
# clear sys.meta_path
# restore sys.stdin
# restore sys.stdout
# restore sys.stderr
# cleanup __main__
# cleanup[1] random
# cleanup[1] _bisect
# cleanup[1] _curses
# cleanup[1] struct
# cleanup[1] zipimport
# cleanup[1] signal
# cleanup[1] token
# cleanup[1] cStringIO
# cleanup[1] encodings
# cleanup[1] FIAT
# cleanup[1] numpy.distutils.__version__
# cleanup[1] _ctypes
# cleanup[1] numpy.lib.info
# cleanup[1] numpy.core.memmap
# cleanup[1] itertools
# cleanup[1] opcode
# cleanup[1] FIAT.Lagrange
# cleanup[1] _heapq
# cleanup[1] binascii
# cleanup[1] sre_constants
# cleanup[1] cPickle
# cleanup[1] _codecs
# cleanup[1] curses.wrapper
# cleanup[1] _struct
# cleanup[1] _types
# cleanup[1] posix
# cleanup[1] encodings.aliases
# cleanup[1] _random
# cleanup[1] site
# cleanup[1] strop
# cleanup[1] readline
# cleanup[1] mmap
# cleanup[1] encodings.utf_8
# cleanup[1] FIAT.functionalset
# cleanup[1] FIAT.dualbasis
# cleanup[1] curses
# cleanup[1] codecs
# cleanup[1] FIAT.functional
# cleanup[1] FIAT.quadrature
# cleanup[1] FIAT.gamma
# cleanup[1] FIAT.functionaltype
# cleanup[1] FIAT.factorial
# cleanup[1] FIAT.polynomial
# cleanup[1] FIAT.expansions
# cleanup[1] FIAT.jacobi
# cleanup[1] FIAT.shapes
# cleanup[1] exceptions
# cleanup[1] FIAT.numbering
# cleanup[1] FIAT.reference
# cleanup[2] numpy.distutils.misc_util
# cleanup[2] heapq
# cleanup[2] numpy.core.info
# cleanup[2] distutils
# cleanup[2] numpy.core.defchararray
# cleanup[2] distutils.sysconfig
# cleanup[2] ctypes._endian
# cleanup[2] numpy.core.numerictypes
# cleanup[2] numpy.random.mtrand
# cleanup[2] distutils.dep_util
# cleanup[2] numpy.random.info
# cleanup[2] tempfile
# cleanup[2] numpy.linalg
# cleanup[2] numpy.testing
# cleanup[2] numpy.core.umath
# cleanup[2] numpy.distutils.ccompiler
# cleanup[2] numpy.distutils.exec_command
# cleanup[2] numpy.core.scalarmath
# cleanup[2] string
# cleanup[2] numpy.core.fromnumeric
# cleanup[2] numpy.lib.arraysetops
# cleanup[2] numpy.version
# cleanup[2] numpy.distutils.info
# cleanup[2] numpy.lib.type_check
# cleanup[2] numpy.lib.twodim_base
# cleanup[2] numpy.core._internal
# cleanup[2] bisect
# cleanup[2] numpy.fft.fftpack_lite
# cleanup[2] math
# cleanup[2] numpy.core.multiarray
# cleanup[2] distutils.log
# cleanup[2] distutils.version
# cleanup[2] numpy.distutils
# cleanup[2] numpy.add_newdocs
# cleanup[2] numpy.lib.getlimits
# cleanup[2] atexit
# cleanup[2] numpy.core.ma
# cleanup[2] re
# cleanup[2] numpy.lib._compiled_base
# cleanup[2] new
# cleanup[2] numpy.fft.helper
# cleanup[2] fcntl
# cleanup[2] UserDict
# cleanup[2] inspect
# cleanup[2] ctypes
# cleanup[2] imp
# cleanup[2] numpy.core._sort
# cleanup[2] distutils.ccompiler
# cleanup[2] thread
# cleanup[2] numpy.lib.ufunclike
# cleanup[2] traceback
# cleanup[2] distutils.spawn
# cleanup[2] numpy.linalg.lapack_lite
# cleanup[2] os
# cleanup[2] _sre
# cleanup[2] unittest
# cleanup[2] numpy.random
# cleanup[2] distutils.dir_util
# cleanup[2] numpy.distutils.unixccompiler
# cleanup[2] operator
# cleanup[2] distutils.util
# cleanup[2] numpy.core.arrayprint
# cleanup[2] posixpath
# cleanup[2] errno
# cleanup[2] types
# cleanup[2] tokenize
# cleanup[2] numpy
# cleanup[2] numpy.core.defmatrix
# cleanup[2] dis
# cleanup[2] numpy.__config__
# cleanup[2] numpy.testing.parametric
# cleanup[2] numpy.testing.utils
# cleanup[2] copy
# cleanup[2] numpy.ctypeslib
# cleanup[2] numpy.lib.scimath
# cleanup[2] numpy.fft
# cleanup[2] numpy.lib
# cleanup[2] numpy.lib.function_base
# cleanup[2] fnmatch
# cleanup[2] sre_parse
# cleanup[2] numpy.distutils.__config__
# cleanup[2] copy_reg
# cleanup[2] sre_compile
# cleanup[2] numpy.lib.polynomial
# cleanup[2] numpy._import_tools
# cleanup[2] numpy.fft.info
# cleanup[2] numpy.core.records
# cleanup[2] numpy.core._dotblas
# cleanup[2] numpy.testing.numpytest
# cleanup[2] numpy.core.numeric
# cleanup[2] numpy.linalg.info
# cleanup[2] distutils.unixccompiler
# cleanup[2] numpy.fft.fftpack
# cleanup[2] numpy.core
# cleanup[2] numpy.testing.info
# cleanup[2] numpy.distutils.log
# cleanup[2] stat
# cleanup[2] numpy.lib.utils
# cleanup[2] numpy.lib.index_tricks
# cleanup[2] warnings
# cleanup[2] glob
# cleanup[2] numpy.lib.shape_base
# cleanup[2] distutils.file_util
# cleanup[2] os.path
# cleanup[2] difflib
# cleanup[2] distutils.errors
# cleanup[2] linecache
# cleanup[2] time
# cleanup[2] numpy.lib.machar
# cleanup[2] numpy.linalg.linalg
# cleanup sys
# cleanup __builtin__
# cleanup ints: 57 unfreed ints in 9 out of 17 blocks
# cleanup floats: 76 unfreed floats in 8 out of 10 blocks
k\14:45 jedbrakk10 ~$ exit

Script done on Tue 25 Mar 2008 02:45:45 PM CET
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 197 bytes
Desc: not available
URL: <https://lists.mcs.anl.gov/mailman/private/sieve-dev/attachments/20080325/e3db97ca/attachment.pgp>


More information about the sieve-dev mailing list