コード例 #1
0
ファイル: root.py プロジェクト: monte-language/typhon
 def auditorStamps(self):
     from typhon.objects.auditors import deepFrozenStamp, selfless
     from typhon.objects.collections.helpers import asSet
     return asSet([deepFrozenStamp, selfless])
コード例 #2
0
ファイル: root.py プロジェクト: monte-language/typhon
 def auditorStamps(self):
     from typhon.objects.auditors import (deepFrozenStamp, selfless,
                                          transparentStamp)
     from typhon.objects.collections.helpers import asSet
     return asSet([deepFrozenStamp, selfless, transparentStamp])
コード例 #3
0
ファイル: auditors.py プロジェクト: zarutian/typhon
 def auditorStamps(self):
     return asSet([deepFrozenStamp])
コード例 #4
0
ファイル: root.py プロジェクト: monte-language/typhon
 def auditorStamps(self):
     from typhon.objects.collections.helpers import asSet
     return asSet(_stamps)
コード例 #5
0
 def auditorStamps(self):
     # Pass on DF-ness if we got it from our value.
     if self.value.auditedBy(deepFrozenStamp):
         return asSet([deepFrozenStamp, selfless, transparentStamp])
     else:
         return asSet([selfless, transparentStamp])
コード例 #6
0
ファイル: auditors.py プロジェクト: zarutian/typhon
 def auditorStamps(self):
     # Have you ever felt that sense of mischief and wonder as much as when
     # looking at this line? ~ C.
     return asSet([self])
コード例 #7
0
 def auditorStamps(self):
     from typhon.objects.auditors import deepFrozenStamp, selfless
     from typhon.objects.collections.helpers import asSet
     return asSet([deepFrozenStamp, selfless])
コード例 #8
0
ファイル: nodes.py プロジェクト: dckc/typhon
 def auditorStamps(self):
     return asSet([selfless, transparentStamp, kernelAstStamp])
コード例 #9
0
ファイル: safe.py プロジェクト: dckc/typhon
 def auditorStamps(self):
     if self.guard.auditedBy(deepFrozenStamp):
         return asSet([deepFrozenStamp])
     else:
         return emptySet
コード例 #10
0
 def auditorStamps(self):
     from typhon.objects.collections.helpers import asSet
     return asSet(_stamps)
コード例 #11
0
ファイル: nodes.py プロジェクト: zarutian/typhon
 def auditorStamps(self):
     return asSet([selfless, transparentStamp, kernelAstStamp])
コード例 #12
0
ファイル: auditors.py プロジェクト: dckc/typhon
 def auditorStamps(self):
     return asSet([deepFrozenStamp])
コード例 #13
0
ファイル: auditors.py プロジェクト: dckc/typhon
 def auditorStamps(self):
     # Have you ever felt that sense of mischief and wonder as much as when
     # looking at this line? ~ C.
     return asSet([self])
コード例 #14
0
ファイル: root.py プロジェクト: monte-language/typhon
 def auditorStamps(self):
     from typhon.objects.auditors import selfless, transparentStamp
     from typhon.objects.collections.helpers import asSet
     return asSet([selfless, transparentStamp])
コード例 #15
0
 def auditorStamps(self):
     from typhon.objects.auditors import (deepFrozenStamp, selfless,
                                          transparentStamp)
     from typhon.objects.collections.helpers import asSet
     return asSet([deepFrozenStamp, selfless, transparentStamp])
コード例 #16
0
ファイル: safe.py プロジェクト: zarutian/typhon
 def auditorStamps(self):
     if self.guard.auditedBy(deepFrozenStamp):
         return asSet([deepFrozenStamp])
     else:
         return emptySet
コード例 #17
0
 def auditorStamps(self):
     from typhon.objects.auditors import selfless, transparentStamp
     from typhon.objects.collections.helpers import asSet
     return asSet([selfless, transparentStamp])
コード例 #18
0
 def auditorStamps(self):
     return asSet([selfless, semitransparentStamp])
コード例 #19
0
 def auditorStamps(self):
     if self.valueGuard.auditedBy(deepFrozenStamp):
         return asSet([deepFrozenStamp, selfless, transparentStamp])
     else:
         return asSet([selfless, transparentStamp])