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

Method _auto_import

IPython/core/completer.py:1399–1404  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1397
1398 @property
1399 def _auto_import(self):
1400 if self.auto_import_method is None:
1401 return None
1402 if not hasattr(self, "_auto_import_func"):
1403 self._auto_import_func = import_item(self.auto_import_method)
1404 return self._auto_import_func
1405
1406
1407def get__all__entries(obj):

Callers

nothing calls this directly

Calls 1

import_itemFunction · 0.90

Tested by

no test coverage detected