Metadata-Version: 1.1
Name: MultipleReturn
Version: 0.1.0a1
Summary: An implementation of multiple return values.
Home-page: https://github.com/Gregory-Bell/MultipleReturn`
Author: Gregory Bell
Author-email: gregoryscottbell@gmail.com
License: GPLv3+
Description: Unlike Lisp's "values" function, Python lacks a way of creating a function that return multiple values where the caller by default only sees the first one. Simply add the @multiplereturn decorator to any function or method that return a tuple, and it will now return only the first item in that tuple to its callers. Wrap the call to a @multiplereturn decorated function with thevalues() function and the caller gets the original tuple.
Keywords: multiple return values decorator
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
