From: Zac Medico Date: Mon, 17 Jan 2011 20:55:33 +0000 (-0800) Subject: Use r'' for regex. X-Git-Tag: v2.1.9.32~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b6ab3ea34544e96523febc4bff024c5a2cdeaa48;p=portage.git Use r'' for regex. --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index b7ce82391..ccf239ff1 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -1196,7 +1196,7 @@ class dblink(object): r'(?P(dev|dir|fif) (.+))|' + \ r'(?P(obj) (.+) (\S+) (\d+))|' + \ r'(?P(sym) (.+) -> (.+) ((\d+)|(?P(' + \ - '\(\d+, \d+L, \d+L, \d+, \d+, \d+, \d+L, \d+, (\d+), \d+\)))))' + \ + r'\(\d+, \d+L, \d+L, \d+, \d+, \d+, \d+L, \d+, (\d+), \d+\)))))' + \ r')$' )