The workaround isn't all that bad:
    
    
    var didRaise = false
    try:
      a
      b
      c
    except:
      didRaise = true
    if not didRaise:
      discard "Python's else part here"
    
    
    Run

Reply via email to