MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / Entry

Class Entry

tests_python/my_django_proj_21/my_app/views.py:9–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7
8
9class Entry(object):
10
11 def __init__(self, key, val):
12 self.key = key
13 self.val = val
14
15 def __unicode__(self):
16 return u'%s:%s' % (self.key, self.val)
17
18 def __str__(self):
19 return u'%s:%s' % (self.key, self.val)
20
21
22def index(request):

Callers 2

indexFunction · 0.70
template_errorFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected