(go to: table of contents, index, list of vms_lib, prev: PUT_OUTPUT, next: RENAME_FILE)
vms_lib.radix_point() does not take any arguments.
Examples:
RADIX_POINT - Radix Point Symbol
Format:
30-SEP-1998 ZE.
radix_point_string = vms_lib.radix_point ()
Returns:
Arguments:
>>> import vms_lib
>>> radix_point_string = vms_lib.radix_point ()
>>> radix_point_string
'.'
$ DEFINE SYS$RADIX_POINT ","
>>> vms_lib.radix_point ()
','
$ DEFINE SYS$RADIX_POINT "XYZ"
>>> vms_lib.radix_point ()
'XYZ'
* don't forget to use '$ DEASSIGN SYS$RADIX_POINT' !
>>> vms_lib.radix_point ('S')
Traceback (innermost last):
File "<stdin>", line 1, in ?
TypeError: function requires exactly 0 arguments; 1 given
>>> vms_lib.radix_point (None)
Traceback (innermost last):
File "<stdin>", line 1, in ?
TypeError: function requires exactly 0 arguments; 1 given
>>>
(go to: table of contents,
index,
list of vms_lib,
prev: PUT_OUTPUT,
next: RENAME_FILE)