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: mac build 3.0 no MacOS module
Type: compile error Stage:
Components: Build Versions: Python 3.0
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: barry-scott, benjamin.peterson
Priority: normal Keywords:

Created on 2008-07-17 21:52 by barry-scott, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg69910 - (view) Author: Barry Alan Scott (barry-scott) * Date: 2008-07-17 21:52
$ sw_vers 
ProductName:    Mac OS X
ProductVersion: 10.4.11
BuildVersion:   8S165

./configure --enable-framework
make
...
make install
...

DYLD_FRAMEWORK_PATH=/Users/barry/Work/Python-3.0b1: ../python.exe
./scripts/BuildApplet.py \
        --destroot "" \
        --python
/Library/Frameworks/Python.framework/Versions/3.0/Resources/Python.app/Contents/MacOS/Python
\
        --output "/Applications/Python 3.0/Build Applet.app" \
        ./scripts/BuildApplet.py
Traceback (most recent call last):
  File "./scripts/BuildApplet.py", line 14, in <module>
import MacOS
ImportError: No module named MacOS
make[1]: *** [install_BuildApplet] Error 1
make: *** [frameworkinstallapps] Error 2
msg69912 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-07-17 21:53
I assume this is only 3.0 beta 1. This has been fixed for beta 2.
msg69914 - (view) Author: Barry Alan Scott (barry-scott) * Date: 2008-07-17 22:00
I don't see beta 2 on python.org or I'd have used it...
msg69915 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-07-17 22:01
It's supposed to be release tonight. Sorry for the confusion. :)
History
Date User Action Args
2022-04-11 14:56:36adminsetgithub: 47648
2008-07-17 22:01:32benjamin.petersonsetmessages: + msg69915
2008-07-17 22:00:44barry-scottsetmessages: + msg69914
2008-07-17 21:53:45benjamin.petersonsetstatus: open -> closed
resolution: out of date
messages: + msg69912
nosy: + benjamin.peterson
2008-07-17 21:52:21barry-scottcreate