Mercurial > public > mercurial-scm > hg
comparison mercurial/hgweb/webutil.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 | f254fc73d956 |
children | d44e3c45f0e4 |
comparison
equal
deleted
inserted
replaced
48945:55d132525155 | 48946:642e31cb55f0 |
---|---|
97 yield 1 * step | 97 yield 1 * step |
98 yield 3 * step | 98 yield 3 * step |
99 step *= 10 | 99 step *= 10 |
100 | 100 |
101 | 101 |
102 class revnav(object): | 102 class revnav: |
103 def __init__(self, repo): | 103 def __init__(self, repo): |
104 """Navigation generation object | 104 """Navigation generation object |
105 | 105 |
106 :repo: repo object we generate nav for | 106 :repo: repo object we generate nav for |
107 """ | 107 """ |