summaryrefslogtreecommitdiffstats
path: root/Tools/Scripts/webkitpy/common/net/bugzilla/__init__.py
blob: cfaf3b10624a534126ee502939ad6762fd80cc56 (plain)
1
2
3
4
5
6
7
8
# Required for Python to search this directory for module files

# We only export public API here.
# FIXME: parse_bug_id should not be a free function.
from .bugzilla import Bugzilla, parse_bug_id
# Unclear if Bug and Attachment need to be public classes.
from .bug import Bug
from .attachment import Attachment