ReadWriteSigmaFiles.py 文件源码

python
阅读 22 收藏 0 点赞 0 评论 0

项目:adtree-py 作者: uraplutonium 项目源码 文件源码
def save_sigma_file():
  """Brings up a file dialog box, so the user can choose a
  file for saving the current SIGMA diagram. Then converts
  the diagram to XML and saves it."""
  import tkFileDialog
  savefile = tkFileDialog.asksaveasfilename(
    filetypes=[("SIGMA Diagram files", ".igm")],
    defaultextension=".igm")
  if savefile:
    dom = makeSigmaDOM()
    try:
      f = open(savefile, "w")
      dom.writexml(f)
      f.close()
      #global DIRTY; DIRTY = False
    except:
        print "Couldn't write the file: ", savefile
        raise
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号