trove-dashboard/trove_dashboard/utils/common.py
Akihiro Motoki 06f7b483a8 Remove six usage
This repo does not support Python 2 anymore, so we don't need
six for compatibility between Python2 and 3, convert six usage to Python
3 code.

Change-Id: I3edab6e67ac79d14fe9d38f6f75abfd50030fa1e
Needed-By: https://review.opendev.org/701743
2020-01-12 02:42:29 +09:00

26 lines
875 B
Python

#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import binascii
def hexlify(text):
"""Hexlify raw text, return hexlified text."""
text = text.encode('utf-8')
return binascii.hexlify(text).decode('utf-8')
def unhexlify(text):
"""Unhexlify raw text, return unhexlified text."""
return binascii.unhexlify(text).decode('utf-8')