Create an empty file at the given path.
(path: PathBuf)
| 48 | |
| 49 | /// Create an empty file at the given path. |
| 50 | fn empty(path: PathBuf) -> io::Result<PathBuf> { |
| 51 | create(path, "") |
| 52 | } |
| 53 | |
| 54 | /// Create a partial `py.typed` file at the given path. |
| 55 | fn partial(path: PathBuf) -> io::Result<PathBuf> { |