Skip to content
Snippets Groups Projects
Commit 1419f780 authored by Augie Fackler's avatar Augie Fackler
Browse files

remotefilelog: fix various minor py3 problems

# skip-blame b prefixes and pycompat.long, nothing remotely interesting

Differential Revision: https://phab.mercurial-scm.org/D5223
parent 43318915
No related branches found
No related tags found
No related merge requests found
......@@ -512,8 +512,8 @@
self.idxfp.write(struct.pack('!BB', self.VERSION, config))
class indexparams(object):
__slots__ = ('fanoutprefix', 'fanoutstruct', 'fanoutcount', 'fanoutsize',
'indexstart')
__slots__ = (r'fanoutprefix', r'fanoutstruct', r'fanoutcount',
r'fanoutsize', r'indexstart')
def __init__(self, prefixsize, version):
self.fanoutprefix = prefixsize
......
......@@ -753,8 +753,8 @@
class repackentry(object):
"""Simple class representing a single revision entry in the repackledger.
"""
__slots__ = ['filename', 'node', 'datasource', 'historysource',
'datarepacked', 'historyrepacked', 'gced']
__slots__ = (r'filename', r'node', r'datasource', r'historysource',
r'datarepacked', r'historyrepacked', r'gced')
def __init__(self, filename, node):
self.filename = filename
self.node = node
......
......@@ -158,8 +158,8 @@
return metabuf
_metaitemtypes = {
constants.METAKEYFLAG: (int, long),
constants.METAKEYSIZE: (int, long),
constants.METAKEYFLAG: (int, pycompat.long),
constants.METAKEYSIZE: (int, pycompat.long),
}
def buildpackmeta(metadict):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment