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: fix distutils.install.dump_dirs() with negated options
Type: Stage:
Components: Distutils Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: theller Nosy List: calvin, theller
Priority: normal Keywords: patch

Created on 2005-01-17 12:33 by calvin, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
distutils_install_dump_dirs.diff calvin, 2005-01-17 12:33
Messages (2)
msg47564 - (view) Author: Bastian Kleineidam (calvin) Date: 2005-01-17 12:33
The dump_dirs() method does not honor negated options,
resulting in a possible AttributeError crash.
The attached patch against current CSV fixes it by
looking in the self.negativ_opt dict for the real
option name.
msg47565 - (view) Author: Thomas Heller (theller) * (Python committer) Date: 2005-01-20 19:17
Logged In: YES 
user_id=11105

Fixed in distutils/command/install.py, revisions 1.73,
1.72.2.1, and 1.67.14.1.

Thanks!
History
Date User Action Args
2022-04-11 14:56:09adminsetgithub: 41452
2005-01-17 12:33:47calvincreate