view pytouhou/formats/__init__.py @ 605:d6ead6f0ba80

Mention Python 3 in the READMEā€¦
author Thibaut Girka <thib@sitedethib.com>
date Tue, 11 Nov 2014 17:06:50 +0100
parents 70e2ed71b09c
children
line wrap: on
line source

"""Touhou games file formats handling.

This package provides modules to handle the various proprietary file formats
used by Touhou games.
"""

class WrongFormatError(Exception):
    pass

class ChecksumError(Exception):
    pass