jaraco.functools

4.4.0 · active · verified Sat Mar 28

Provides additional functools in the spirit of Python's standard library's functools. Current version: 4.4.0, released on December 21, 2025. Maintained by Jason R. Coombs. Requires Python 3.9 or higher. Release cadence: approximately every 3-4 months.

Warnings

Install

Imports

Quickstart

Demonstrates importing and using FunctionType from jaraco.functools.

from jaraco.functools import FunctionType

# Example usage of FunctionType
def example_function():
    pass

print(isinstance(example_function, FunctionType))  # Output: True

view raw JSON →