From: Guido van Rossum Date: Sat, 10 Sep 2016 04:39:10 +0000 (-0700) Subject: Use raw string for regexp X-Git-Tag: v3.6.0b1~111^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e617521b0d17a9bda9c4ecd5248257c482d6f82c;p=python Use raw string for regexp --- diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py index 1783d5f630..35557c3ce4 100644 --- a/Lib/test/test_asyncio/test_streams.py +++ b/Lib/test/test_asyncio/test_streams.py @@ -831,7 +831,7 @@ os.close(fd) stream._waiter = asyncio.Future(loop=self.loop) self.assertRegex( repr(stream), - ">") + r">") stream._waiter.set_result(None) self.loop.run_until_complete(stream._waiter) stream._waiter = None