PHP 8.2.31
Preview: connections.py Size: 666 B
/lib/python3.6/site-packages/rhn/connections.py

#
# Connection objects
#
# Copyright (c) 2002--2020 Red Hat, Inc.
#
# Author: Mihai Ibanescu <misa@redhat.com>

from rhn import i18n

def idn_puny_to_unicode(hostname):
    """ Convert Internationalized domain name from Punycode (RFC3492) to Unicode """
    if hostname is None:
        return None
    else:
        hostname = i18n.bstr(hostname)
        return hostname.decode('idna')

def idn_ascii_to_puny(hostname):
    """ Convert domain name to Punycode (RFC3492). Hostname can be instance of string or Unicode """
    if hostname is None:
        return None
    else:
        hostname = i18n.ustr(hostname)
        return i18n.ustr(hostname.encode('idna'))

Directory Contents

Dirs: 2 × Files: 6

Name Size Perms Modified Actions
actions DIR
- drwxr-xr-x 2026-05-29 07:17:07
Edit Download
- drwxr-xr-x 2026-05-29 07:17:07
Edit Download
666 B lrw-r--r-- 2026-04-24 15:42:37
Edit Download
1.73 KB lrw-r--r-- 2026-04-24 15:42:37
Edit Download
3.35 KB lrw-r--r-- 2026-04-24 15:42:37
Edit Download
4.60 KB lrw-r--r-- 2026-04-27 12:46:07
Edit Download
3.98 KB lrw-r--r-- 2026-04-27 12:46:07
Edit Download
132 B lrw-r--r-- 2026-04-24 15:42:37
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).