コード例 #1
0
ファイル: dirstate.py プロジェクト: rybesh/mysite-lib
 def f(x):
     p = self._join(x)
     if os.path.islink(p):
         return 'l'
     if util.isexec(p):
         return 'x'
     return ''
コード例 #2
0
 def f(x):
     p = self._join(x)
     if os.path.islink(p):
         return 'l'
     if util.isexec(p):
         return 'x'
     return ''
コード例 #3
0
 def f(x):
     if 'l' in fallback(x):
         return 'l'
     if util.isexec(self._join(x)):
         return 'x'
     return ''
コード例 #4
0
ファイル: dirstate.py プロジェクト: CS76/ipo-galaxy
 def f(x):
     if 'l' in fallback(x):
         return 'l'
     if util.isexec(self._join(x)):
         return 'x'
     return ''