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: Spurious Install Warning
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: akuchling, kbk
Priority: normal Keywords: patch

Created on 2001-05-14 01:48 by kbk, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
install.py.010513.diff kbk, 2001-05-14 01:48
Messages (2)
msg36583 - (view) Author: Kurt B. Kaiser (kbk) * (Python committer) Date: 2001-05-14 01:48
During installation setup.py install is generating a
warning that the lib-dynload directory is not in
sys.path. While that is true for the instance of Python
doing the installation, the installed Python will have
the correct path. Suppress the warning during
installation.

Ref: Bug 232619, Bug 417472
msg36584 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2001-05-21 20:32
Logged In: YES 
user_id=11375

This has been fixed in a different way.  I don't want to 
add more magical behaviour to the install command by 
making it initialize differently depending on whether 
we're building Python or not. 

Instead, Python's setup.py has been changed to suppress the
message.

Thanks anyway!
History
Date User Action Args
2022-04-10 16:04:03adminsetgithub: 34503
2001-05-14 01:48:05kbkcreate