MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / joinpath

Method joinpath

tools/python-3.11.9-amd64/Lib/pathlib.py:757–763  ·  view source on GitHub ↗

Combine this path with one or several arguments, and return a new path representing either a subpath (if all arguments are relative paths) or a totally different path (if one of the arguments is anchored).

(self, *args)

Source from the content-addressed store, hash-verified

755 return self._pparts
756
757 def joinpath(self, *args):
758 """Combine this path with one or several arguments, and return a
759 new path representing either a subpath (if all arguments are relative
760 paths) or a totally different path (if one of the arguments is
761 anchored).
762 """
763 return self._make_child(args)
764
765 def __truediv__(self, key):
766 try:

Callers

nothing calls this directly

Calls 1

_make_childMethod · 0.95

Tested by

no test coverage detected