comparison mercurial/urllibcompat.py @ 48946:642e31cb55f0

py3: use class X: instead of class X(object): The inheritance from object is implied in Python 3. So this should be equivalent. This change was generated via an automated search and replace. So there may have been some accidental changes. Differential Revision: https://phab.mercurial-scm.org/D12352
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 21 Feb 2022 13:08:28 -0700
parents 4286ec1d9842
children 18c8c18993f0
comparison
equal deleted inserted replaced
48945:55d132525155 48946:642e31cb55f0
15 from . import pycompat 15 from . import pycompat
16 16
17 _sysstr = pycompat.sysstr 17 _sysstr = pycompat.sysstr
18 18
19 19
20 class _pycompatstub(object): 20 class _pycompatstub:
21 def __init__(self): 21 def __init__(self):
22 self._aliases = {} 22 self._aliases = {}
23 23
24 def _registeraliases(self, origin, items): 24 def _registeraliases(self, origin, items):
25 """Add items that will be populated at the first access""" 25 """Add items that will be populated at the first access"""