コード例 #1
0
ファイル: keys.py プロジェクト: xushuwei202/Vintageous
 def _expand_vars(self, c):
     return variables.get(c) if variables.is_key_name(c) else c
コード例 #2
0
ファイル: keys.py プロジェクト: gleamicus/Vintageous
 def _expand_vars(self, c):
     return variables.get(c) if variables.is_key_name(c) else c
コード例 #3
0
 def testCanGetSetValue(self):
     set_('dog', 'cat')
     self.assertEqual(get('dog'), 'cat')