MCPcopy Index your code
hub / github.com/PyTables/PyTables / move

Method move

tables/leaf.py:783–795  ·  view source on GitHub ↗

Move or rename this node. This method has the behavior described in :meth:`Node._f_move`

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

Source from the content-addressed store, hash-verified

781 self._f_rename(newname)
782
783 def move(
784 self,
785 newparent: Group | None = None,
786 newname: str | None = None,
787 overwrite: bool = False,
788 createparents: bool = False,
789 ) -> None:
790 """Move or rename this node.
791
792 This method has the behavior described in :meth:`Node._f_move`
793
794 """
795 self._f_move(newparent, newname, overwrite, createparents)
796
797 def copy(
798 self,

Callers 8

test04_moveMethod · 0.45
test04_moveMethod · 0.45
test10a_moveIndexMethod · 0.45
test10b_moveIndexMethod · 0.45
test10c_moveIndexMethod · 0.45
test10d_moveIndexMethod · 0.45
test00_hierarchyMethod · 0.45
add-column.pyFile · 0.45

Calls 1

_f_moveMethod · 0.45

Tested by 7

test04_moveMethod · 0.36
test04_moveMethod · 0.36
test10a_moveIndexMethod · 0.36
test10b_moveIndexMethod · 0.36
test10c_moveIndexMethod · 0.36
test10d_moveIndexMethod · 0.36
test00_hierarchyMethod · 0.36