Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
don't change the base class
  • Loading branch information
tungol committed Nov 12, 2024
commit fc4d593b9479ba055c443bef939f459715dd78f8
2 changes: 1 addition & 1 deletion Lib/os.py
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ def _fspath(path):
fspath.__name__ = "fspath"


class PathLike(metaclass=abc.ABCMeta):
class PathLike(abc.ABC):

"""Abstract base class for implementing the file system path protocol."""

Expand Down