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 akineko
Recipients akineko, nnorwitz, theller
Date 2007-09-03.16:55:45
SpamBayes Score 0.023135878
Marked as misclassified No
Message-id <1188838546.56.0.706514912322.issue1777530@psf.upfronthosting.co.za>
In-reply-to
Content
Hello Thomas,

Thank you for creating the patch.
Unfortunately, it didn't work.
(I rerun the whole installation process)

You used the following to check if the os is Solaris:

if sys.platform.startswith("solaris"):

Under Solaris 2.x sys.platform returns "sunos5".
You could use ...startswith("sunos") but things may be different under
"sunos6" so I usually prefer to use sys.platform == "sunos5".

After fixing this, my application with ctypes works okay.

I'm happy to try out if you create another patch.

Thank you,
Aki-
History
Date User Action Args
2007-09-03 16:55:46akinekosetspambayes_score: 0.0231359 -> 0.023135878
recipients: + akineko, nnorwitz, theller
2007-09-03 16:55:46akinekosetspambayes_score: 0.0231359 -> 0.0231359
messageid: <1188838546.56.0.706514912322.issue1777530@psf.upfronthosting.co.za>
2007-09-03 16:55:46akinekolinkissue1777530 messages
2007-09-03 16:55:45akinekocreate