MCPcopy Create free account
hub / github.com/PyTables/PyTables / move

Method move

tables/link.py:127–140  ·  view source on GitHub ↗

Move or rename this link. See :meth:`Node._f_move` for a complete explanation of the arguments.

(
        self,
        newparent: Group | None = None,
        newname: str | None = None,
        overwrite: bool = False,
    )

Source from the content-addressed store, hash-verified

125 return newnode
126
127 def move(
128 self,
129 newparent: Group | None = None,
130 newname: str | None = None,
131 overwrite: bool = False,
132 ) -> None:
133 """Move or rename this link.
134
135 See :meth:`Node._f_move` for a complete explanation of the arguments.
136
137 """
138 return self._f_move(
139 newparent=newparent, newname=newname, overwrite=overwrite
140 )
141
142 def remove(self) -> None:
143 """Remove this link from the hierarchy."""

Callers

nothing calls this directly

Calls 1

_f_moveMethod · 0.45

Tested by

no test coverage detected