summaryrefslogtreecommitdiffstats
path: root/src/report-python/test_crash_data2
blob: 2594f8634c58034425c7a4d732e592bc783bf97d (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/python

from report import *

cd = crash_data()
cd.add("foo", "bar")

print "foo:", cd.get("foo")
print "nonexistent:", cd.get("nonexistent")
print "done"