(self, name, flags, mode=0o666)
| 1227 | raise ValueError("I/O operation on closed path") |
| 1228 | |
| 1229 | def _opener(self, name, flags, mode=0o666): |
| 1230 | # A stub for the opener argument to built-in open() |
| 1231 | return self._accessor.open(self, flags, mode) |
| 1232 | |
| 1233 | def _raw_open(self, flags, mode=0o777): |
| 1234 | """ |