MCPcopy Create free account
hub / github.com/ipython/ipython / _isexec_WIN

Method _isexec_WIN

IPython/core/magics/osm.py:79–83  ·  view source on GitHub ↗

Test for executable file on non POSIX system

(self, file)

Source from the content-addressed store, hash-verified

77
78 @skip_doctest
79 def _isexec_WIN(self, file):
80 """
81 Test for executable file on non POSIX system
82 """
83 return file.is_file() and self.execre.match(file.name) is not None
84
85 @skip_doctest
86 def isexec(self, file):

Callers 1

isexecMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected