Configure debugging information
The _debug_info variable controls whether or not extra code
should be generated for additional debugging and traceback
information. Currently, if _debug_info is zero, no extra code
will be generated; otherwise extra code will be inserted into the
compiled bytecode for additional debugging data.
The value of this variable is local to each compilation unit and
setting its value in one unit has no effect upon its value in other
units.
_debug_info = 1; % Enable debugging information
Setting this variable to a non-zero value may slow down the
interpreter somewhat.
|