[Python-bugs-list] [Bug #126587] sre matchobject,groupdict() seems to memory leak

noreply@sourceforge.net noreply@sourceforge.net
Thu, 21 Dec 2000 04:21:56 -0800


Bug #126587, was updated on 2000-Dec-21 04:21
Here is a current snapshot of the bug.

Project: Python
Category: Python Library
Status: Open
Resolution: None
Bug Group: None
Priority: 5
Submitted by: nobody
Assigned to : nobody
Summary: sre matchobject,groupdict() seems to memory leak

Details: """
This script grinds Windows NT to a halt because of excessive memory usage. The problem disappears if pre is used instead of sre.
"""

import re
r=re.compile(r"(?P<alpha>...)")

while 1:
  mo=r.match("blabla")
  mo.groupdict()





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