diff mercurial/match.py @ 48941:fd5b8e696b75

py3: stop using util.iterfile() The Python 3 implementation is a no-op. So this is equivalent. We still keep util.iterfile() around for backwards API compatibility to help the Python 3 migration. It can be deleted in a future release. Differential Revision: https://phab.mercurial-scm.org/D12347
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 21 Feb 2022 12:42:48 -0700
parents f254fc73d956
children 642e31cb55f0
line wrap: on
line diff
--- a/mercurial/match.py	Thu Mar 03 07:56:47 2022 -0800
+++ b/mercurial/match.py	Mon Feb 21 12:42:48 2022 -0700
@@ -1611,7 +1611,7 @@
     patterns = []
 
     fp = open(filepath, b'rb')
-    for lineno, line in enumerate(util.iterfile(fp), start=1):
+    for lineno, line in enumerate(fp, start=1):
         if b"#" in line:
             global _commentre
             if not _commentre: