diff options
| author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-12-21 19:25:05 +0100 |
|---|---|---|
| committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-12-21 19:25:05 +0100 |
| commit | c96bab437f21aea116bfe5608bb43c9cd26fb904 (patch) | |
| tree | 316c8a131bb280b304182686f2034c43d029dcbc /src/report-python/io | |
| parent | 628fb1fbae2a9e3e8fc3add070bceb5557973029 (diff) | |
| download | abrt-c96bab437f21aea116bfe5608bb43c9cd26fb904.tar.gz abrt-c96bab437f21aea116bfe5608bb43c9cd26fb904.tar.xz abrt-c96bab437f21aea116bfe5608bb43c9cd26fb904.zip | |
src/report-python: add report package compatibility
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/report-python/io')
| -rw-r--r-- | src/report-python/io/GTKIO.py | 11 | ||||
| -rw-r--r-- | src/report-python/io/NewtIO.py | 7 | ||||
| -rw-r--r-- | src/report-python/io/TextIO.py | 6 | ||||
| -rw-r--r-- | src/report-python/io/__init__.py | 1 |
4 files changed, 25 insertions, 0 deletions
diff --git a/src/report-python/io/GTKIO.py b/src/report-python/io/GTKIO.py new file mode 100644 index 00000000..4cc8766e --- /dev/null +++ b/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/src/report-python/io/NewtIO.py b/src/report-python/io/NewtIO.py new file mode 100644 index 00000000..10eae284 --- /dev/null +++ b/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/src/report-python/io/TextIO.py b/src/report-python/io/TextIO.py new file mode 100644 index 00000000..6162fb8b --- /dev/null +++ b/src/report-python/io/TextIO.py @@ -0,0 +1,6 @@ +""" + Compatibility with report package +""" + +class TextIO: + pass diff --git a/src/report-python/io/__init__.py b/src/report-python/io/__init__.py new file mode 100644 index 00000000..2ae28399 --- /dev/null +++ b/src/report-python/io/__init__.py @@ -0,0 +1 @@ +pass |
