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 serhiy.storchaka
Recipients Noah Petherbridge, ezio.melotti, mrabarnett, r.david.murray, serhiy.storchaka
Date 2016-07-09.05:23:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468041784.31.0.685006325986.issue27471@psf.upfronthosting.co.za>
In-reply-to
Content
It is a deprection warning in 3.5.

$ python3.5 -Wd
>>> import re
>>> re.sub(re.escape(r'(\d+?)'), '(?:\d+?)', r'(\d+?)')
/usr/lib/python3.5/re.py:182: DeprecationWarning: bad escape \d
  return _compile(pattern, flags).sub(repl, string, count)
'(?:\\d+?)'

The warning was added in issue23622, and turned into exception in issue27030.
History
Date User Action Args
2016-07-09 05:23:04serhiy.storchakasetrecipients: + serhiy.storchaka, ezio.melotti, mrabarnett, r.david.murray, Noah Petherbridge
2016-07-09 05:23:04serhiy.storchakasetmessageid: <1468041784.31.0.685006325986.issue27471@psf.upfronthosting.co.za>
2016-07-09 05:23:04serhiy.storchakalinkissue27471 messages
2016-07-09 05:23:03serhiy.storchakacreate