1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
######
#
# HX-2014-08:
# for Python code translated from ATS
#
######
######
#beg of [print_cats.py]
######
############################################
#
def ats2pypre_print_int(i):
return ats2pypre_fprint_int(sys.__stdout__, i)
def ats2pypre_prerr_int(i):
return ats2pypre_fprint_int(sys.__stderr__, i)
#
def ats2pypre_fprint_int(out, i): return ats2pypre_fprint_obj(out, i)
#
############################################
#
def ats2pypre_print_bool(b):
return ats2pypre_fprint_bool(sys.__stdout__, b)
def ats2pypre_prerr_bool(b):
return ats2pypre_fprint_bool(sys.__stderr__, b)
#
def ats2pypre_fprint_bool(out, b): return ats2pypre_fprint_obj(out, b)
#
############################################
#
def ats2pypre_print_char(c):
return ats2pypre_fprint_char(sys.__stdout__, c)
def ats2pypre_prerr_char(c):
return ats2pypre_fprint_char(sys.__stderr__, c)
#
def ats2pypre_fprint_char(out, c): return ats2pypre_fprint_obj(out, c)
#
############################################
#
def ats2pypre_print_double(i):
return ats2pypre_fprint_double(sys.__stdout__, i)
def ats2pypre_prerr_double(i):
return ats2pypre_fprint_double(sys.__stderr__, i)
#
def ats2pypre_fprint_double(out, i): return ats2pypre_fprint_obj(out, i)
#
############################################
#
def ats2pypre_print_string(x):
return ats2pypre_fprint_string(sys.__stdout__, x)
def ats2pypre_prerr_string(x):
return ats2pypre_fprint_string(sys.__stderr__, x)
#
def ats2pypre_fprint_string(out, x): return ats2pypre_fprint_obj(out, x)
#
############################################
#
def ats2pypre_print_obj(x):
out = sys.__stdout__
ats2pypre_fprint_obj(out, x); return
def ats2pypre_println_obj(x):
out = sys.__stdout__
ats2pypre_fprintln_obj(out, x); return
#
def ats2pypre_prerr_obj(x):
out = sys.__stderr__
ats2pypre_fprint_obj(out, x); return
def ats2pypre_prerrln_obj(x):
out = sys.__stderr__
ats2pypre_fprintln_obj(out, x); return
#
def ats2pypre_fprint_obj(out, x):
print(x, file=out, end=''); return
def ats2pypre_fprintln_obj(out, x):
print(x, file=out, end='\n'); return
#
############################################
#
def ats2pypre_print_newline():
out = sys.__stdout__
ats2pypre_fprint_newline(out); return
def ats2pypre_prerr_newline():
out = sys.__stderr__
ats2pypre_fprint_newline(out); return
#
def ats2pypre_fprint_newline(out):
print(file=out, end='\n'); sys.stdout.flush(); return
#
############################################
###### end of [print_cats.py] ######
|