summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2Py3k.py
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2012-03-24 11:20:07 -0500
committerSol Jerome <sol.jerome@gmail.com>2012-03-24 11:20:07 -0500
commitdab1d03d81c538966d03fb9318a4588a9e803b44 (patch)
treef51e27fa55887e9fb961766805fe43f0da56c5b9 /src/lib/Bcfg2Py3k.py
parent5cd6238df496a3cea178e4596ecd87967cce1ce6 (diff)
downloadbcfg2-dab1d03d81c538966d03fb9318a4588a9e803b44.tar.gz
bcfg2-dab1d03d81c538966d03fb9318a4588a9e803b44.tar.bz2
bcfg2-dab1d03d81c538966d03fb9318a4588a9e803b44.zip
Allow to run directly from a git checkout (#1037)
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'src/lib/Bcfg2Py3k.py')
-rw-r--r--src/lib/Bcfg2Py3k.py92
1 files changed, 0 insertions, 92 deletions
diff --git a/src/lib/Bcfg2Py3k.py b/src/lib/Bcfg2Py3k.py
deleted file mode 100644
index ee05b7e41..000000000
--- a/src/lib/Bcfg2Py3k.py
+++ /dev/null
@@ -1,92 +0,0 @@
-import sys
-
-try:
- from email.Utils import formatdate
-except ImportError:
- from email.utils import formatdate
-
-# urllib imports
-try:
- from urlparse import urljoin, urlparse
- from urllib2 import HTTPBasicAuthHandler
- from urllib2 import HTTPPasswordMgrWithDefaultRealm
- from urllib2 import build_opener
- from urllib2 import install_opener
- from urllib2 import urlopen
- from urllib2 import HTTPError
-except ImportError:
- from urllib.parse import urljoin, urlparse
- from urllib.request import HTTPBasicAuthHandler
- from urllib.request import HTTPPasswordMgrWithDefaultRealm
- from urllib.request import build_opener
- from urllib.request import install_opener
- from urllib.request import urlopen
- from urllib.error import HTTPError
-
-try:
- from cStringIO import StringIO
-except ImportError:
- from io import StringIO
-
-try:
- import ConfigParser
-except ImportError:
- import configparser as ConfigParser
-
-try:
- import cPickle
-except ImportError:
- import pickle as cPickle
-
-try:
- from Queue import Queue, Empty, Full
-except ImportError:
- from queue import Queue, Empty, Full
-
-# xmlrpc imports
-try:
- import xmlrpclib, SimpleXMLRPCServer
-except ImportError:
- import xmlrpc.client as xmlrpclib
- import xmlrpc.server as SimpleXMLRPCServer
-
-# socketserver import
-try:
- import SocketServer
-except ImportError:
- import socketserver as SocketServer
-
-# httplib imports
-try:
- import httplib
-except ImportError:
- import http.client as httplib
-
-# print to file compatibility
-def u_str(string, encoding=None):
- if sys.hexversion >= 0x03000000:
- if encoding is not None:
- return string.encode(encoding)
- else:
- return string
- else:
- if encoding is not None:
- return unicode(string, encoding)
- else:
- return unicode(string)
-
-"""
-In order to use the new syntax for printing to a file, we need to do
-a conditional import because there is a syntax incompatibility between
-the two versions of python.
-"""
-if sys.hexversion >= 0x03000000:
- from Bcfg2.Bcfg2Py3Incompat import fprint
-else:
- def fprint(s, f):
- print >> f, s
-
-if sys.hexversion >= 0x03000000:
- from io import FileIO as file
-else:
- file = file