Mercurial > public > mercurial-scm > hg
comparison mercurial/revlogutils/rewrite.py @ 52654:f19a3f1437f3
pyupgrade: drop `coding=UTF-8` comments
PEP-3120[1] (Python 3.0 in 2007) says that UTF-8 is the default encoding. That
should be long enough ago that no reasonable editor would trip over this, and
certainly any supported version of Python won't.
The comments were probably harmless, but as `pyupgrade` has no mechanism to
disable this change, omitting this change makes it unusable as a code checking
tool, and makes it a pain to use occasionally to upgrade the source (since these
changes would need to be manually reverted).
[1] https://peps.python.org/pep-3120/
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Tue, 07 Jan 2025 16:46:21 -0500 |
parents | f066fc0bdc7a |
children |
comparison
equal
deleted
inserted
replaced
52653:b3e68fd7864b | 52654:f19a3f1437f3 |
---|---|
1 # censor code related to censoring revision | 1 # censor code related to censoring revision |
2 # coding: utf8 | |
3 # | 2 # |
4 # Copyright 2021 Pierre-Yves David <pierre-yves.david@octobus.net> | 3 # Copyright 2021 Pierre-Yves David <pierre-yves.david@octobus.net> |
5 # Copyright 2015 Google, Inc <martinvonz@google.com> | 4 # Copyright 2015 Google, Inc <martinvonz@google.com> |
6 # | 5 # |
7 # This software may be used and distributed according to the terms of the | 6 # This software may be used and distributed according to the terms of the |