#!/usr/bin/env python2 # vim:fileencoding=utf-8 # License: GPL v3 Copyright: 2018, Kovid Goyal from __future__ import absolute_import, division, print_function, unicode_literals from polyglot.builtins import is_py3 if is_py3: from http.server import BaseHTTPServer, SimpleHTTPRequestHandler else: import BaseHTTPServer # noqa from SimpleHTTPServer import SimpleHTTPRequestHandler # noqa