MCPcopy Create free account
hub / github.com/pydata/numexpr / wisdomFile

Method wisdomFile

numexpr3/ne3compiler.py:1452–1457  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1450
1451 @property
1452 def wisdomFile(self) -> str:
1453 if not bool(self.__wisdomFile):
1454 if not os.access('ne3_wisdom.pkl', os.W_OK):
1455 raise OSError('insufficient permissions to write to {}'.format('ne3_wisdom.pkl'))
1456 self.__wisdomFile = 'ne3_wisdom.pkl'
1457 return self.__wisdomFile
1458
1459 @wisdomFile.setter
1460 def wisdomFile(self, newName: str) -> None:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected