| Server IP : 172.67.134.114 / Your IP : 162.159.115.42 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/python2.7/site-packages/leapp/ |
Upload File : |
import gettext # noqa: F401; pylint: disable=unused-import
import locale
import sys
__all__ = ('string_types', 'IS_PYTHON2', 'IS_PYTHON3', 'httplib', 'unicode_type', 'raise_with_traceback')
IS_PYTHON2 = sys.version_info < (3,)
IS_PYTHON3 = not IS_PYTHON2
string_types = ()
# Python 2 code
if IS_PYTHON2:
import httplib
string_types = (str, globals()['__builtins__']['unicode'])
unicode_type = string_types[1]
from leapp.compatpy2only import raise_with_traceback
builtins_dict = globals()['__builtins__']
def gettext_setup(t):
def us(u):
if isinstance(u, globals()['__builtins__']['unicode']):
return u
return unicode_type(u)
def singular(msg):
return t.ugettext(us(msg))
def plural(msg1, msg2, n):
return t.ungettext(us(msg1), us(msg2), n)
return singular, plural
def setlocale(category, loc=None):
locale.setlocale(category, loc.encode('utf-8') if loc else None)
# Python 3 code
else:
import http.client as httplib
import builtins
string_types = (str,)
unicode_type = str
builtins_dict = builtins.__dict__
def gettext_setup(t):
singular = t.gettext
plural = t.ngettext
return singular, plural
def setlocale(category, loc=None):
locale.setlocale(category, loc)
def raise_with_traceback(exc, tb):
"""
This is a helper function to raise exceptions with a traceback.
This is function is required to workaround the syntax changes between Python 2 and 3
Python 3.4 introduced a with_traceback method to Exception classes and Python 3 removed the syntax
which used to be used in Python 2.
:param exc: Exception to raise
:param tb: Traceback to use
:return: Nothing
"""
raise exc.with_traceback(tb)