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 sable
Recipients dickdunbar, loris, nnorwitz, pitrou, sable
Date 2010-09-10.21:09:33
SpamBayes Score 7.438349e-09
Marked as misclassified No
Message-id <1284152975.85.0.0753920283173.issue941346@psf.upfronthosting.co.za>
In-reply-to
Content
Great! Thanks Antoine.

I checked quickly and there is a small correction to do on the 2.7 branch: this branch is different because there has been a change between python 2.x and 3.x in pep-3121 concerning the name of the entry function in a module (init<modulname> to PyInit_<modulename>)

So you need to change this line in Modules/ld_so_aix.in from:
  entry=PyInit_`echo $filename | sed "s/module.*//"`
to
  entry=init`echo $filename | sed "s/module.*//"`

Except for that it looks fine.

I will continue to try to make all unitary tests pass on AIX. And I would like to setup a buildbot that will compile and test the trunk every day and post the log on a public web site, in order to help keep this platform well supported.
History
Date User Action Args
2010-09-10 21:09:35sablesetrecipients: + sable, nnorwitz, pitrou, dickdunbar, loris
2010-09-10 21:09:35sablesetmessageid: <1284152975.85.0.0753920283173.issue941346@psf.upfronthosting.co.za>
2010-09-10 21:09:34sablelinkissue941346 messages
2010-09-10 21:09:33sablecreate