# HG changeset patch
# User Matt Harbison <matt_harbison@yahoo.com>
# Date 2024-12-05 03:13:05
# Node ID c921c23a96812e113444088593bb80c6f93548e5
# Parent  e1f0125bb8c629eb098ac5f269279ef99212c5b6

patch: stop using the `pycompat.open()` shim

diff --git a/mercurial/patch.py b/mercurial/patch.py
--- a/mercurial/patch.py
+++ b/mercurial/patch.py
@@ -22,7 +22,6 @@ from .node import (
     sha1nodeconstants,
     short,
 )
-from .pycompat import open
 from . import (
     copies,
     diffhelper,
@@ -2382,7 +2381,7 @@ def patchbackend(
 
     store = filestore()
     try:
-        fp = open(patchobj, b'rb')
+        fp = open(patchobj, 'rb')
     except TypeError:
         fp = patchobj
     try:
@@ -2458,7 +2457,7 @@ def patch(
 def changedfiles(ui, repo, patchpath, strip=1, prefix=b''):
     backend = fsbackend(ui, repo.root)
     prefix = _canonprefix(repo, prefix)
-    with open(patchpath, b'rb') as fp:
+    with open(patchpath, 'rb') as fp:
         changed = set()
         for state, values in iterhunks(fp):
             if state == b'file':