changeset 51712 | f3b34386d3e0 |
parent 51282 | 9d3721552b6c |
child 51716 | e618a1756b08 |
51711:7601978f9e9f | 51712:f3b34386d3e0 |
---|---|
673 def isexec(f: bytes) -> bool: |
673 def isexec(f: bytes) -> bool: |
674 return False |
674 return False |
675 |
675 |
676 |
676 |
677 class cachestat: |
677 class cachestat: |
678 stat: Optional[os.stat_result] |
|
679 |
|
678 def __init__(self, path: bytes) -> None: |
680 def __init__(self, path: bytes) -> None: |
679 pass |
681 self.stat = None |
680 |
682 |
681 def cacheable(self) -> bool: |
683 def cacheable(self) -> bool: |
682 return False |
684 return False |
683 |
685 |
684 |
686 |