Ejemplo n.º 1
0
def temp_png(suffix=""):
    if suffix:
        suffix = "-{}".format(suffix)
    fname = iutil.create_temp_filename(suffix + ".png")
    try:
        yield fname
    finally:
        os.remove(fname)
Ejemplo n.º 2
0
def temp_png(suffix=''):
    if suffix:
        suffix = '-{}'.format(suffix)
    fname = iutil.create_temp_filename(suffix + '.png')
    try:
        yield fname
    finally:
        os.remove(fname)
Ejemplo n.º 3
0
Archivo: idiff.py Proyecto: zak-k/iris
def temp_png(suffix=''):
    if suffix:
        suffix = '-{}'.format(suffix)
    fname = iutil.create_temp_filename(suffix+'.png')
    try:
        yield fname
    finally:
        os.remove(fname)