(self)
| 267 | sysconfig._INSTALL_SCHEMES.update(saved[2]) |
| 268 | |
| 269 | def get_files(self): |
| 270 | # XXX: Maybe add an allow-list here? |
| 271 | return sorted(fn + ('/' if os.path.isdir(fn) else '') |
| 272 | for fn in os.listdir() |
| 273 | if not fn.startswith(".hypothesis")) |
| 274 | def restore_files(self, saved_value): |
| 275 | fn = os_helper.TESTFN |
| 276 | if fn not in saved_value and (fn + '/') not in saved_value: |
nothing calls this directly
no test coverage detected