9 lines
185 B
Python
9 lines
185 B
Python
# -*- coding=utf-8 -*-
|
|
from __future__ import absolute_import, print_function
|
|
|
|
|
|
class InvalidPythonVersion(Exception):
|
|
"""Raised when parsing an invalid python version"""
|
|
|
|
pass
|