pydoc - axes

Segmentation fault

me too -- does the stat64 call ring a bell with anyone? Or does the
output below indicate the stat64 call succeeded and a subsequent
unknown followup call failed. I'm an strace baby....

peds-pc311:~> strace pydoc matplotlib.axes

...snip....

read(3, "e:\n rowColours = \'w\' "..., 4096) = 4096
read(3, ", x.typecode())\n if len(y"..., 4096) = 4096
read(3, "numRows, numCols, plotNum)\n\n "..., 4096) = 4096
read(3, "nit_bbox(), self.bbox)\n\n\n def"..., 4096) = 4096
read(3, "\')\n t.set_transform(s"..., 4096) = 4096
read(3, "for polar axes (yet)\')\n\n\n def"..., 4096) = 2678
read(3, "", 4096) = 0
close(3) = 0
munmap(0x40ba0000, 4096) = 0
stat64("/usr/local/lib/python2.3/site-packages/matplotlib/axes.py", {st_mode=S_IFREG|0644, st_size=129654, ...}) = 0
--- SIGSEGV (Segmentation fault) @ 0 (0) ---

peds-pc311:~> uname -a
Linux peds-pc311.bsd.uchicago.edu 2.4.21-15.0.2.ELsmp #1 SMP Wed Jun 16 22:52:07 EDT 2004 i686 i686 i386 GNU/Linux
peds-pc311:~>

I'm looking through axes.py trying to find a badly formatted docstring (or
something) and found this:

    def connect(self, s, func):
        """
        Register observers to be notified when certain events occur. Register
        with callback functions with the following signatures. The function
        has the following signature

            func(ax) # where ax is the instance making the callback.

        The following events can be connected to: %s

        The connection id is is returned - you can use this with
        disconnect to disconnect from the axes event

        """ % ', '.join(Axes._events) # <---Whats that doing there?

···

On Thursday 31 March 2005 09:56 am, John Hunter wrote:

    > Segmentation fault

--

Darren

Disregard that last email, I just learned something new. Sorry.

···

--

Darren

John Hunter wrote:

"Darren" == Darren Dale <dd55@...163...> writes:

    > Segmentation fault

me too -- does the stat64 call ring a bell with anyone? Or does the
output below indicate the stat64 call succeeded and a subsequent
unknown followup call failed. I'm an strace baby....

peds-pc311:~> strace pydoc matplotlib.axes

FWIW, identical output here, Fedora 3 box. Python bug, me says.

Best,

f