Everything

csplus.disconnect


Disconnect the socket communication between the Python 3 execution environment and CS+.

[Specification format]

csplus.disconnect()

[Argument(s)]

None

[Return value]

None

[Detailed description]

-

If the disconnection fails, an exception will be thrown.

-

To re-establish socket communication after disconnection, you must call csplus.connect again.

[Example of use]

>>> import sys
>>> sys.path.append("C:\Program Files (x86)\Renesas Electronics\CS+\CC\Plugins\PythonConsole\integration_service")
>>> import csplus
>>> csplus.connect()
>>> csplus.disconnect()
>>>