Commit 102baeb3 authored by Stefan Behnel's avatar Stefan Behnel

convert some comments to docstrings

parent 4cc320d2
......@@ -355,11 +355,11 @@ class Scope(object):
return '%d' % count
def global_scope(self):
# Return the module-level scope containing this scope.
""" Return the module-level scope containing this scope. """
return self.outer_scope.global_scope()
def builtin_scope(self):
# Return the module-level scope containing this scope.
""" Return the module-level scope containing this scope. """
return self.outer_scope.builtin_scope()
def declare(self, name, cname, type, pos, visibility, shadow = 0, is_type = 0):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment