<< pyNpWrap Python Interaction Mechanism in Scilab pyRepr >>

Python Interaction Mechanism in Scilab >> Python Interaction Mechanism in Scilab > pyRemove

pyRemove

Remove a Python object from the Scilab environment.

Calling Sequence

pyRemove(obj_1 [, obj_2 [, ... ]])

Arguments

obj_i

A Python object or a string.

Description

Make a Python object unavailable. In the Python environment, the main effet is to decrement the reference counter of the object.

When a string is given the variable having this name is removed if it is a Python object.

Examples

a = pyWrap(123)

// pyRemove(a) or pyRemove('a') are also possible
pyRemove a

See Also

History

VersionDescription
5.4.0 Python module.

Report an issue
<< pyNpWrap Python Interaction Mechanism in Scilab pyRepr >>