MCPcopy Index your code
hub / github.com/ipython/ipython / _find_ext

Method _find_ext

IPython/core/display.py:1127–1134  ·  view source on GitHub ↗
(self, s)

Source from the content-addressed store, hash-verified

1125 return self._data_and_metadata()
1126
1127 def _find_ext(self, s):
1128 base, ext = splitext(s)
1129
1130 if not ext:
1131 return base
1132
1133 # `splitext` includes leading period, so we skip it
1134 return ext[1:].lower()
1135
1136
1137class Video(DisplayObject):

Callers 1

__init__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected