Revision 223dd713a5c61d14ce676500a8cfde338bc91de4 authored by Alon Zakai on 06 March 2014, 00:45:19 UTC, committed by Alon Zakai on 06 March 2014, 00:45:19 UTC
Fix for full screen closing immediately
2 parent s 7442be3 + a7aa19e
Raw File
parse_unaligned.py
import os, sys
from subprocess import Popen, PIPE, STDOUT

shown = set()

for line in open(sys.argv[1]).readlines():
  try:
    x = line.split(' in ')[1].split(':')[0]
    #output = str([x, Popen(['c++filt', x], stdout=PIPE).communicate()])
    output = Popen(['c++filt', x], stdout=PIPE).communicate()[0]
    if output not in shown:
      shown.add(output)
      print output,
  except:
    pass


back to top