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.

Author neologix
Recipients adiroiban, neologix
Date 2012-04-12.11:28:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334230084.71.0.907632507014.issue14557@psf.upfronthosting.co.za>
In-reply-to
Content
Hello Adi,

Thanks for your patch.

Just a detail:

"""
         if platform == 'hp-ux11':
             lib_dirs += ['/usr/lib/hpux64', '/usr/lib/hpux32']
"""

Wouldn't it be more robust as:
"""
         if platform.startswith('hp-ux'):
             lib_dirs += ['/usr/lib/hpux64', '/usr/lib/hpux32']
"""

So that it works with older and (potenttially) future HP-UX releases?
History
Date User Action Args
2012-04-12 11:28:04neologixsetrecipients: + neologix, adiroiban
2012-04-12 11:28:04neologixsetmessageid: <1334230084.71.0.907632507014.issue14557@psf.upfronthosting.co.za>
2012-04-12 11:28:04neologixlinkissue14557 messages
2012-04-12 11:28:04neologixcreate