* The default source encoding is implictly UTF-8 in Python 3.
No need to explictly declare the encoding.
* In Python 3, `print` is a function. Do not attempt to force that.
#!/usr/bin/env python3
-# -*- coding: utf-8 -*-
# Copyright 2019 NetworkRADIUS SARL (legal@networkradius.com)
# This work is licensed under CC-BY version 4.0 https://creativecommons.org/licenses/by/4.0
#
# - check if we could call dhcpv6_tp_decode_pair direct from libfreeradius-dhcpv6.{so,dylib}
#
-from __future__ import print_function
-
import argparse
import os
import re
# Copyright 2023 The FreeRADIUS Project
#
-from __future__ import print_function
-
import argparse
import binascii
import configparser