summaryrefslogtreecommitdiffstats
path: root/src/report-python/io
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2011-03-01 12:08:36 +0100
committerKarel Klic <kklic@redhat.com>2011-03-01 12:08:36 +0100
commit85f639b7fe277ba327e5013e5b101b4a67f14e1d (patch)
tree7caa3999e8c987e3ddbc26f4bfbbdc73defca73f /src/report-python/io
parentfb52104af74bbf6eeda394880666df40b4354aba (diff)
parent77468fcdd7cc05db52320c373a24a5490ff32f52 (diff)
merge changes from master
Diffstat (limited to 'src/report-python/io')
-rw-r--r--src/report-python/io/GTKIO.py11
-rw-r--r--src/report-python/io/NewtIO.py7
-rw-r--r--src/report-python/io/TextIO.py6
-rw-r--r--src/report-python/io/__init__.py1
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