Metadata-Version: 1.0
Name: typecheck
Version: 0.3.3
Summary: A runtime type-checking module for Python
Home-page: http://www.ilowe.net/software/typecheck
Author: Collin Winter, Iain Lowe
Author-email: collinw@gmail.com, ilowe@cryogen.com
License: MIT License
Description: A runtime type-checking module for Python supporting both parameter-type checking and return-type checking for functions, methods and generators.
        
        The main workhorses of this module, the functions typecheck_args and typecheck_return, are used as function/method decorators. A typecheck_yield decorator provides a mechanism to typecheck the values yielded by generators.
        
        Four utility classes, And(), Or(), Not() and Xor() are provided to assist in building more complex signatures by creating boolean expressions based on classes and/or types.
        
        A number of other utility classes exist to aid in type signature creation; for a full list, see the README.txt file or the project's website.
        
        The module also includes support for type variables, a concept borrowed from languages such as Haskell.
Keywords: python decorator type-check typesafe typesafety type typing static
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
