Opened 12 years ago

Closed 12 years ago

#17832 closed Cleanup/optimization (fixed)

setup.py - purelib comment

Reported by: Matthias Kestenholz Owned by: nobody
Component: Core (Other) Version: dev
Severity: Normal Keywords: setup.py
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

A comment in django/setup.py regarding purelib is exactly the wrong way around. This problem exists since Oct 16, 2006.

The following change fixes the comment:

diff --git a/setup.py b/setup.py
index fa42cac..72a38d0 100644
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,7 @@ def fullsplit(path, result=None):
         return result
     return fullsplit(head, [tail] + result)
 
-# Tell distutils to put the data_files in platform-specific installation
+# Tell distutils to not put the data_files in platform-specific installation
 # locations. See here for an explanation:
 # http://groups.google.com/group/comp.lang.python/browse_thread/thread/35ec7b2fed36eaec/2105ee4d9e8042cb
 for scheme in INSTALL_SCHEMES.values():

Change History (2)

comment:1 by Claude Paroz, 12 years ago

Triage Stage: UnreviewedReady for checkin
Type: BugCleanup/optimization

comment:2 by Aymeric Augustin, 12 years ago

Resolution: fixed
Status: newclosed

In [17667]:

Fixed #17832 -- Missing negation in a comment. Thanks mk for the report.

Note: See TracTickets for help on using tickets.
Back to Top