##// END OF EJS Templates
typing: fix the hint for the `mode` argument of `platform.copymode()`...
Matt Harbison -
r52692:1888846a default
parent child Browse files
Show More
@@ -213,7 +213,7 b' def setflags(f: bytes, l: bool, x: bool)'
213 def copymode(
213 def copymode(
214 src: bytes,
214 src: bytes,
215 dst: bytes,
215 dst: bytes,
216 mode: Optional[bytes] = None,
216 mode: Optional[int] = None,
217 enforcewritable: bool = False,
217 enforcewritable: bool = False,
218 ) -> None:
218 ) -> None:
219 """Copy the file mode from the file at path src to dst.
219 """Copy the file mode from the file at path src to dst.
@@ -297,7 +297,7 b' def setflags(f: bytes, l: bool, x: bool)'
297 def copymode(
297 def copymode(
298 src: bytes,
298 src: bytes,
299 dst: bytes,
299 dst: bytes,
300 mode: Optional[bytes] = None,
300 mode: Optional[int] = None,
301 enforcewritable: bool = False,
301 enforcewritable: bool = False,
302 ) -> None:
302 ) -> None:
303 pass
303 pass
General Comments 0
You need to be logged in to leave comments. Login now