This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skip.montanaro
Recipients brett.cannon, eric.araujo, ezio.melotti, georg.brandl, pitrou, python-dev, r.david.murray, skip.montanaro, vstinner
Date 2011-03-24.03:48:54
SpamBayes Score 3.1896226e-07
Marked as misclassified No
Message-id <19850.48930.420760.362779@montanaro.dyndns.org>
In-reply-to <1300928553.61.0.801530018491.issue11653@psf.upfronthosting.co.za>
Content
Brett> The import failures are because you didn't rebuild (I added a new
    Brett> function to imp). Re-build and the import issues will go away.

An easy mistake to make.  I'm used to running "make test" which would have
guaranteed python.exe was up-to-date.

I just executed

    hg pull -u
    make
    ./python.exe -m test -j2 -W

and I am seeing the same AttributeError exceptions.  So:

    make distclean
    ./configure ...
    make
    ./python.exe -m test -j2 -W

and I still get the AttributeError exceptions.  According to hg id I am
using this:

    changeset:   68889:f09f7ab40ce6
    tag:         tip
    user:        Raymond Hettinger <python@rcn.com>
    date:        Wed Mar 23 20:33:30 2011 -0700
    summary:     Add tests for _source to importable and exec'able.

Is that what I should be using?

Skip
History
Date User Action Args
2011-03-24 03:48:55skip.montanarosetrecipients: + skip.montanaro, brett.cannon, georg.brandl, pitrou, vstinner, ezio.melotti, eric.araujo, r.david.murray, python-dev
2011-03-24 03:48:55skip.montanarolinkissue11653 messages
2011-03-24 03:48:54skip.montanarocreate