def __check_rpy(): """Check either rpy is available and also set it for the sane execution """ import rpy if not cfg.getboolean('rpy', 'interactive', default=True) \ and (rpy.get_rpy_input() is rpy.rpy_io.rpy_input): if __debug__: debug('EXT_', "RPy: providing dummy callback for input to return '1'") def input1(*args): return "1" # which is "1: abort (with core dump, if enabled)" rpy.set_rpy_input(input1)
def __check_rpy(): """Check either rpy is available and also set it for the sane execution """ #import rpy_options #rpy_options.set_options(VERBOSE=False, SETUP_READ_CONSOLE=False) # SETUP_WRITE_CONSOLE=False) #rpy_options.set_options(VERBOSE=False, SETUP_WRITE_CONSOLE=False) # SETUP_WRITE_CONSOLE=False) # if not cfg.get('rpy', 'read_console', default=False): # print "no read" # rpy_options.set_options(SETUP_READ_CONSOLE=False) # if not cfg.get('rpy', 'write_console', default=False): # print "no write" # rpy_options.set_options(SETUP_WRITE_CONSOLE=False) import rpy if not cfg.getboolean('rpy', 'interactive', default=True) \ and (rpy.get_rpy_input() is rpy.rpy_io.rpy_input): if __debug__: debug('EXT_', "RPy: providing dummy callback for input to return '1'") def input1(*args): return "1" # which is "1: abort (with core dump, if enabled)" rpy.set_rpy_input(input1)