Lines Matching refs:open
29 __all__ = ["error", "open"]
83 f = _io.open(self._datfile, 'r', encoding="Latin-1")
87 with _io.open(self._datfile, 'w', encoding="Latin-1") as f:
97 f = _io.open(self._dirfile, 'r', encoding="Latin-1")
130 with self._io.open(self._dirfile, 'w', encoding="Latin-1") as f:
149 with _io.open(self._datfile, 'rb') as f:
159 with _io.open(self._datfile, 'rb+') as f:
173 with _io.open(self._datfile, 'rb+') as f:
183 with _io.open(self._dirfile, 'a', encoding="Latin-1") as f:
291 def open(file, flag='c', mode=0o666):