[issue2679] email.feedparser regex duplicate

2020-10-25 Thread Irit Katriel
Change by Irit Katriel : -- type: behavior -> versions: +Python 3.10, Python 3.8, Python 3.9 -Python 2.6, Python 2.7, Python 3.1, Python 3.2, Python 3.3 ___ Python tracker ___

[issue2679] email.feedparser regex duplicate

2014-01-04 Thread moijes12
Changes by moijes12 : -- nosy: -moijes12 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue2679] email.feedparser regex duplicate

2012-09-05 Thread moijes12
moijes12 added the comment: Hi I've attached a patch. Its a simple one wherein NLCRE_crack = NLCRE_bol. I found this in Python 3.3.0b2+ and so I've added version 3.3. I executed "./python -m test" after making the change and no failures were reported (340-OK, 30-Skip). Looking forward to you

[issue2679] email.feedparser regex duplicate

2012-09-05 Thread moijes12
Changes by moijes12 : -- keywords: +patch Added file: http://bugs.python.org/file27132/2679.patch ___ Python tracker ___ ___ Python-bug

[issue2679] email.feedparser regex duplicate

2012-09-05 Thread moijes12
Changes by moijes12 : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue2679] email.feedparser regex duplicate

2012-09-05 Thread moijes12
Changes by moijes12 : -- nosy: +moijes12 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue2679] email.feedparser regex duplicate

2010-01-12 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue2679] email.feedparser regex duplicate

2010-01-11 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> low stage: -> needs patch versions: +Python 2.7, Python 3.1, Python 3.2 -Python 3.0 ___ Python tracker ___

[issue2679] email.feedparser regex duplicate

2008-04-24 Thread Jim Jewett
New submission from Jim Jewett <[EMAIL PROTECTED]>: feedparser defines four regexs for end-of-line, but two are redundant. NLCRE checks for the three common line endings. NLCRE_crack also captures the line ending. NLCRE_eol also adds a $ to ensure it is at the end. NLCRE_bol ... is identical to