summaryrefslogtreecommitdiff
path: root/demo3/utils.py
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2014-02-21 04:46:49 +0000
committer <>2014-08-04 21:38:17 +0000
commitf3765db04b903b3671733e07cf1541a51966dd14 (patch)
treedefcc3c47d9b8bd78b97dcc04ee779a758d37b1c /demo3/utils.py
downloadposix-ipc-tarball-master.tar.gz
Imported from /home/lorry/working-area/delta_python-packages_posix-ipc-tarball/posix_ipc-0.9.8.tar.gz.HEADposix_ipc-0.9.8master
Diffstat (limited to 'demo3/utils.py')
-rw-r--r--demo3/utils.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/demo3/utils.py b/demo3/utils.py
new file mode 100644
index 0000000..67e066f
--- /dev/null
+++ b/demo3/utils.py
@@ -0,0 +1,15 @@
+# Python modules
+import sys
+
+
+QUEUE_NAME = "/my_message_queue"
+
+
+PY_MAJOR_VERSION = sys.version_info[0]
+
+def get_input():
+ """Get input from user, Python 2.x and 3.x compatible"""
+ if PY_MAJOR_VERSION > 2:
+ return input()
+ else:
+ return raw_input()