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 T Trindad
Recipients T Trindad, ezio.melotti, mrabarnett
Date 2017-07-20.04:41:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1500525718.61.0.130114594968.issue30973@psf.upfronthosting.co.za>
In-reply-to
Content
The following code "hangs" the interpreter:

    import re
    re.search(r"/\*\*((?:[^*]+|\*[^/])*)\*/", """	/** Copy Constructor **/
	private EvaluationContext (EvaluationContext base) {""")



Changing the regex to r"/\*\*((?:[^*]|\*[^/])*)\*/" makes it work normally.
History
Date User Action Args
2017-07-20 04:41:58T Trindadsetrecipients: + T Trindad, ezio.melotti, mrabarnett
2017-07-20 04:41:58T Trindadsetmessageid: <1500525718.61.0.130114594968.issue30973@psf.upfronthosting.co.za>
2017-07-20 04:41:58T Trindadlinkissue30973 messages
2017-07-20 04:41:57T Trindadcreate