File: foo.py

package info (click to toggle)
python-blockbuster 1.5.26-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 232 kB
  • sloc: python: 888; makefile: 8
file content (6 lines) | stat: -rw-r--r-- 116 bytes parent folder | download
1
2
3
4
5
6
from pathlib import Path


def bar(path: Path) -> None:
    with path.open(mode="wb") as f:
        f.write(b"foo")