Home | History | Annotate | Download | only in bugzilla
      1 # Required for Python to search this directory for module files
      2 
      3 # We only export public API here.
      4 # FIXME: parse_bug_id should not be a free function.
      5 from .bugzilla import Bugzilla, parse_bug_id, parse_bug_id_from_changelog
      6 # Unclear if Bug and Attachment need to be public classes.
      7 from .bug import Bug
      8 from .attachment import Attachment
      9