Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'python/src/tcf/services/symbols.py')
-rw-r--r--python/src/tcf/services/symbols.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/src/tcf/services/symbols.py b/python/src/tcf/services/symbols.py
index 3976956d3..ccf77de22 100644
--- a/python/src/tcf/services/symbols.py
+++ b/python/src/tcf/services/symbols.py
@@ -78,6 +78,9 @@ class Symbol(object):
def __init__(self, props):
self._props = props or {}
+ def __str__(self):
+ return "[Symbol Context %s]" % self._props
+
def getID(self):
"""
Get symbol ID.

Back to the top