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 wumpus
Recipients ezio.melotti, mrabarnett, wumpus
Date 2017-04-23.18:39:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1492972796.84.0.355071171235.issue30147@psf.upfronthosting.co.za>
In-reply-to
Content
The following script runs fine in python 3.6 and recently started failing the assertion in 3.7-dev and nightly

import re

r = re.compile(re.escape('/foo'))
print(r)
print(r.pattern)
assert r.pattern.startswith('\\/')
History
Date User Action Args
2017-04-23 18:39:56wumpussetrecipients: + wumpus, ezio.melotti, mrabarnett
2017-04-23 18:39:56wumpussetmessageid: <1492972796.84.0.355071171235.issue30147@psf.upfronthosting.co.za>
2017-04-23 18:39:56wumpuslinkissue30147 messages
2017-04-23 18:39:56wumpuscreate