mirror of
https://github.com/rembo10/headphones.git
synced 2026-01-10 07:07:59 -05:00
Mostly just updating libraries, removing string encoding/decoding, fixing some edge cases. No new functionality was added in this commit.
16 lines
334 B
Python
16 lines
334 B
Python
"""High-performance, pure-Python HTTP server used by CherryPy."""
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
__metaclass__ = type
|
|
|
|
try:
|
|
import pkg_resources
|
|
except ImportError:
|
|
pass
|
|
|
|
|
|
try:
|
|
__version__ = pkg_resources.get_distribution('cheroot').version
|
|
except Exception:
|
|
__version__ = 'unknown'
|