Skip to content

Commit 102baeb

Browse files
committed
convert some comments to docstrings
1 parent 4cc320d commit 102baeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cython/Compiler/Symtab.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,11 +355,11 @@ def next_id(self, name=None):
355355
return '%d' % count
356356

357357
def global_scope(self):
358-
# Return the module-level scope containing this scope.
358+
""" Return the module-level scope containing this scope. """
359359
return self.outer_scope.global_scope()
360360

361361
def builtin_scope(self):
362-
# Return the module-level scope containing this scope.
362+
""" Return the module-level scope containing this scope. """
363363
return self.outer_scope.builtin_scope()
364364

365365
def declare(self, name, cname, type, pos, visibility, shadow = 0, is_type = 0):

0 commit comments

Comments
 (0)