From c96bab437f21aea116bfe5608bb43c9cd26fb904 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 21 Dec 2010 19:25:05 +0100 Subject: src/report-python: add report package compatibility Signed-off-by: Denys Vlasenko --- src/report-python/io/GTKIO.py | 11 +++++++++++ src/report-python/io/NewtIO.py | 7 +++++++ src/report-python/io/TextIO.py | 6 ++++++ src/report-python/io/__init__.py | 1 + 4 files changed, 25 insertions(+) create mode 100644 src/report-python/io/GTKIO.py create mode 100644 src/report-python/io/NewtIO.py create mode 100644 src/report-python/io/TextIO.py create mode 100644 src/report-python/io/__init__.py (limited to 'src/report-python/io') 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 -- cgit