We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a66761 + d10a35d commit 0f6a86eCopy full SHA for 0f6a86e
pusher/util.py
@@ -12,10 +12,10 @@
12
import sys
13
import base64
14
15
-channel_name_re = re.compile('\A[-a-zA-Z0-9_=@,.;]+\Z')
16
-app_id_re = re.compile('\A[0-9]+\Z')
17
-pusher_url_re = re.compile('\A(http|https)://(.*):(.*)@(.*)/apps/([0-9]+)\Z')
18
-socket_id_re = re.compile('\A\d+\.\d+\Z')
+channel_name_re = re.compile(r'\A[-a-zA-Z0-9_=@,.;]+\Z')
+app_id_re = re.compile(r'\A[0-9]+\Z')
+pusher_url_re = re.compile(r'\A(http|https)://(.*):(.*)@(.*)/apps/([0-9]+)\Z')
+socket_id_re = re.compile(r'\A\d+\.\d+\Z')
19
20
21
if sys.version_info < (3,):
0 commit comments