Skip to content

Commit

Permalink
convert some comments to docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Dec 21, 2012
1 parent 4cc320d commit 102baeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cython/Compiler/Symtab.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,11 +355,11 @@ def next_id(self, name=None):
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):
Expand Down

0 comments on commit 102baeb

Please sign in to comment.