diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2011-06-08 17:27:42 +0200 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2011-06-08 17:27:42 +0200 |
| commit | 0e74f780545b1aa8f6a5277b3cfdc9887c37ed5e (patch) | |
| tree | b1249b7b96c908931f2c29f48f016da8be450429 /libreport/src/report-python/io | |
| parent | 7ac32c68dea1fe0c6efa6ac9bb0e8ad8716d7f7d (diff) | |
split libreport to a separate package
Diffstat (limited to 'libreport/src/report-python/io')
| -rw-r--r-- | libreport/src/report-python/io/GTKIO.py | 11 | ||||
| -rw-r--r-- | libreport/src/report-python/io/NewtIO.py | 7 | ||||
| -rw-r--r-- | libreport/src/report-python/io/TextIO.py | 6 | ||||
| -rw-r--r-- | libreport/src/report-python/io/__init__.py | 1 |
4 files changed, 25 insertions, 0 deletions
diff --git a/libreport/src/report-python/io/GTKIO.py b/libreport/src/report-python/io/GTKIO.py new file mode 100644 index 00000000..4cc8766e --- /dev/null +++ b/libreport/src/report-python/io/GTKIO.py @@ -0,0 +1,11 @@ +""" + Compatibility with report package +""" + +class GTKIO: + def __init__(self, loginManager = None): + pass + +#class FailDialog(): +# def __init__(self, title, message): +# pass diff --git a/libreport/src/report-python/io/NewtIO.py b/libreport/src/report-python/io/NewtIO.py new file mode 100644 index 00000000..10eae284 --- /dev/null +++ b/libreport/src/report-python/io/NewtIO.py @@ -0,0 +1,7 @@ +""" + Compatibility with report package +""" + +class NewtIO: + def __init__(self, screen = None): + pass diff --git a/libreport/src/report-python/io/TextIO.py b/libreport/src/report-python/io/TextIO.py new file mode 100644 index 00000000..6162fb8b --- /dev/null +++ b/libreport/src/report-python/io/TextIO.py @@ -0,0 +1,6 @@ +""" + Compatibility with report package +""" + +class TextIO: + pass diff --git a/libreport/src/report-python/io/__init__.py b/libreport/src/report-python/io/__init__.py new file mode 100644 index 00000000..2ae28399 --- /dev/null +++ b/libreport/src/report-python/io/__init__.py @@ -0,0 +1 @@ +pass |
