File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -340,8 +340,8 @@ def get_option(s):
340
340
'%(NAME_VERSION)s'
341
341
'$' % locals ()).match
342
342
343
- PLATS = re .compile ('^ (?P<platform>.*)$' ).match
344
- BUNDLED_WITH = re .compile ('^\s+(?P<version>(?:\d+.)+\d+)\s*$' ).match
343
+ PLATS = re .compile (r '^ (?P<platform>.*)$' ).match
344
+ BUNDLED_WITH = re .compile (r '^\s+(?P<version>(?:\d+.)+\d+)\s*$' ).match
345
345
346
346
347
347
class GemfileLockParser :
Original file line number Diff line number Diff line change 23
23
import re
24
24
25
25
ASCII_BYTE = (
26
- " !\" #\$%&\' \(\)\*\+,-\./0123456789:;<=>\?@ABCDEFGHIJKLMNOPQRSTUVWXYZ"
27
- "\[\]\^_`abcdefghijklmnopqrstuvwxyz\{\|\}\\ \~\t "
26
+ r " !\"#\$%&\'\(\)\*\+,-\./0123456789:;<=>\?@ABCDEFGHIJKLMNOPQRSTUVWXYZ"
27
+ r "\[\]\^_`abcdefghijklmnopqrstuvwxyz\{\|\}\\\~\t"
28
28
)
29
29
30
30
You can’t perform that action at this time.
0 commit comments