File: foo.py

package info (click to toggle)
pytest-golden 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 216 kB
  • sloc: python: 412; makefile: 2
file content (4 lines) | stat: -rw-r--r-- 82 bytes parent folder | download | duplicates (2)
1
2
3
4
import re

def find_words(text: str) -> list:
    return re.findall(r"\w+", text)