diff python/ppci/c3/scope.py @ 394:988f3fb861e4

c3 code generator rewrite
author Windel Bouwman
date Thu, 22 May 2014 08:14:12 +0200
parents 2ec730e45ea1
children
line wrap: on
line diff
--- a/python/ppci/c3/scope.py	Sat May 17 21:17:40 2014 +0200
+++ b/python/ppci/c3/scope.py	Thu May 22 08:14:12 2014 +0200
@@ -16,6 +16,7 @@
 
     @property
     def Syms(self):
+        """ Get all the symbols defined in this scope """
         syms = self.symbols.values()
         return sorted(syms, key=lambda v: v.name)