MCPcopy Create free account
hub / github.com/PierreGode/Ragnar / Scope

Class Scope

pager_lib/pyasn1/debug.py:133–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131
132
133class Scope(object):
134 def __init__(self):
135 self._list = []
136
137 def __str__(self): return '.'.join(self._list)
138
139 def push(self, token):
140 self._list.append(token)
141
142 def pop(self):
143 return self._list.pop()
144
145
146scope = Scope()

Callers 1

debug.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected