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 aixian le
Recipients aixian le, ezio.melotti, mrabarnett
Date 2019-06-18.06:17:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1560838631.6.0.225714277918.issue37327@roundup.psfhosted.org>
In-reply-to
Content
the code is:
banner = "HTTP/1.0 404 Not Found\r\nDate: Mon, 17 Jun 2019 13:15:44 GMT\r\nServer:                \r\nConnection: close\r\nContent-Type: text/html\r\n\r\n<HTML><HEAD><TITLE>404 Not Found</TITLE></HEAD>\r\n<BODY><H1>404 Not Found</H1>\r\nThe requested URL /PSIA/index was not found on this server.\r\n</BODY></HTML>\r\n"
        regex = "^HTTP/1\\.0 404 Not Found\\r\\n(?:[^<]+|<(?!/head>))*?<style>"
        print("start")
        regex_re = re.compile(regex)
        print("start1")
        regex_re.search(banner)
        print("end")
when I execute this code ,python cannot finished.
History
Date User Action Args
2019-06-18 06:17:11aixian lesetrecipients: + aixian le, ezio.melotti, mrabarnett
2019-06-18 06:17:11aixian lesetmessageid: <1560838631.6.0.225714277918.issue37327@roundup.psfhosted.org>
2019-06-18 06:17:11aixian lelinkissue37327 messages
2019-06-18 06:17:11aixian lecreate