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 martin.panter
Recipients David.Edelsohn, Michael.Felt, aixtools@gmail.com, martin.panter
Date 2016-09-04.04:11:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472962314.86.0.0797350826334.issue26439@psf.upfronthosting.co.za>
In-reply-to
Content
Regarding the regular expressions, I (or someone else unfamiliar with AIX) may be able to adjust them if you can explain what you are trying to achieve. Take the first one I commented on <https://bugs.python.org/review/26439/diff/17689/Lib/ctypes/_aixutil.py#newcode132> for example. You added a comment:

# '\[%s_*64\.so\]' % name, -> has either _64 or 64 added to name

As written, this will match many strings including

[<NAME>___64.so]

However the annotation leads me to belive you want it to match two cases only:

[<NAME>64.so]
[<NAME>_64.so]

I do not know whether to fix the annotation (has 64 preceded by any number of underscores), or whether to fix the regular expression (_?64).
History
Date User Action Args
2016-09-04 04:11:54martin.pantersetrecipients: + martin.panter, David.Edelsohn, Michael.Felt, aixtools@gmail.com
2016-09-04 04:11:54martin.pantersetmessageid: <1472962314.86.0.0797350826334.issue26439@psf.upfronthosting.co.za>
2016-09-04 04:11:54martin.panterlinkissue26439 messages
2016-09-04 04:11:54martin.pantercreate