##// END OF EJS Templates
global: use raw strings for namedtuple()...
Gregory Szorc -
r42000:7f63ec69 default
parent child Browse files
Show More
@@ -194,8 +194,8 b' def unsharejournal(orig, ui, repo, repop'
194 return orig(ui, repo, repopath)
194 return orig(ui, repo, repopath)
195
195
196 class journalentry(collections.namedtuple(
196 class journalentry(collections.namedtuple(
197 u'journalentry',
197 r'journalentry',
198 u'timestamp user command namespace name oldhashes newhashes')):
198 r'timestamp user command namespace name oldhashes newhashes')):
199 """Individual journal entry
199 """Individual journal entry
200
200
201 * timestamp: a mercurial (time, timezone) tuple
201 * timestamp: a mercurial (time, timezone) tuple
@@ -3211,9 +3211,9 b' def finddirs(path):'
3211 SERVERROLE = 'server'
3211 SERVERROLE = 'server'
3212 CLIENTROLE = 'client'
3212 CLIENTROLE = 'client'
3213
3213
3214 compewireprotosupport = collections.namedtuple(u'compenginewireprotosupport',
3214 compewireprotosupport = collections.namedtuple(r'compenginewireprotosupport',
3215 (u'name', u'serverpriority',
3215 (r'name', r'serverpriority',
3216 u'clientpriority'))
3216 r'clientpriority'))
3217
3217
3218 class compressormanager(object):
3218 class compressormanager(object):
3219 """Holds registrations of various compression engines.
3219 """Holds registrations of various compression engines.
General Comments 0
You need to be logged in to leave comments. Login now