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 Guruprasad Venkataramaiah
Recipients Guruprasad Venkataramaiah, ezio.melotti, mrabarnett
Date 2019-09-01.10:55:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567335351.74.0.503338420306.issue37998@roundup.psfhosted.org>
In-reply-to
Content
On Python 3.5:
s = re.sub(r'\\', r'\\\\', s)
  File "/pyuniti/venvs/guruv/lib/python3.5/re.py", line 182, in sub
    return _compile(pattern, flags).sub(repl, string, count)
MemoryError

On Python 3.7
    s = re.sub(r'\\', r'\\\\', s)  
  File "C:\Python\Python37-32\lib\re.py", line 192, in sub
    return _compile(pattern, flags).sub(repl, string, count)
MemoryError
History
Date User Action Args
2019-09-01 10:55:51Guruprasad Venkataramaiahsetrecipients: + Guruprasad Venkataramaiah, ezio.melotti, mrabarnett
2019-09-01 10:55:51Guruprasad Venkataramaiahsetmessageid: <1567335351.74.0.503338420306.issue37998@roundup.psfhosted.org>
2019-09-01 10:55:51Guruprasad Venkataramaiahlinkissue37998 messages
2019-09-01 10:55:51Guruprasad Venkataramaiahcreate