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.

classification
Title: OSX framework make error: ld: duplicate symbol _PyExc_BlockingIOError in libpython3.1.a(_iobase.o) and libpython3.1.a(io.o)
Type: Stage:
Components: Build Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: MLModel, benjamin.peterson
Priority: normal Keywords:

Created on 2009-03-05 18:36 by MLModel, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg83211 - (view) Author: Mitchell Model (MLModel) Date: 2009-03-05 18:36
Trying to build 3.1 in recent 'svn update's on OSX 10.5 after
    make clean
    configure --enable-framework
I get the following error near the end of the build:
    ld: duplicate symbol _PyExc_BlockingIOError in 
libpython3.1.a(_iobase.o) and libpython3.1.a(io.o)

I even tried deleting all the files and checking them out again, but I got 
the same error.
msg83226 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-03-05 22:59
This should be fixed as of r70198. Make sure to run "make clean."
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49677
2009-03-05 22:59:16benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg83226
nosy: + benjamin.peterson
2009-03-05 18:36:16MLModelcreate