From: Zac Medico Date: Mon, 17 Jan 2011 20:55:33 +0000 (-0800) Subject: Use r'' for regex. X-Git-Tag: v2.2.0_alpha16~1 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=e17be71d9d76ece195fec81ccc885808dd7a9ac5;p=portage.git Use r'' for regex. --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 4f415a111..e0f17544b 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -1197,7 +1197,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')$' )