[Python-bugs-list] [Bug #133790] [Irix] re package does not work.

noreply@sourceforge.net noreply@sourceforge.net
Fri, 23 Feb 2001 10:02:28 -0800


Bug #133790, was updated on 2001-Feb-23 10:02
Here is a current snapshot of the bug.

Project: Python
Category: Python Interpreter Core
Status: Open
Resolution: None
Bug Group: Platform-specific
Priority: 5
Submitted by: nobody
Assigned to : nobody
Summary: [Irix] re package does not work.

Details: The re package does not seem to work at all under Irix 6.5 + gcc
2.8.1 (either before or after the sre Misc Patch is applied)

Python 2.0 (#1, Feb 23 2001, 01:24:07) 
[GCC 2.8.1] on irix6
Type "copyright", "credits" or "license" for more information.
>>> import re
>>> m = re.compile("^ab$").match("ab")
>>> print m
None
>>> import pre
>>> m = pre.compile("^ab$").match("ab")
>>> print m
<pre.MatchObject instance at 10201d64>

pre serves as a reasonable substitute, but since earlier versions of Python
don't have it, one can't distribute a portable package easily.


For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=133790&group_id=5470