Implements ``callable`` using ctypes (useful on CPython 3.0 and 3.1).
Project description
Implements callable using ctypes (useful on CPython 3.0 and 3.1, which is missing the callable function).
Versioning
This library’s version numbers follow the SemVer 2.0.0 specification.
Installation
pip install ctypes-callable
Usage
The use-case for using this module is if:
You are using an early CPython 3 release missing callable.
You cannot upgrade to a newer CPython 3 for some reason.
You want to use code which uses the callable builtin.
To do this, run this before any code that uses callable (for example, usercustomize or sitecustomize might be good places):
import ctypes_callable
import builtins
builtins.callable = ctypes_callable.callable
Portability
This module will fail on import on Jython, IronPython, PyPy, MicroPython, PyPy.js, Brython, Transcrypt, and probably any other implementation besides CPython, because it relies on accessing the Python C API through ctypes.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for ctypes_callable-1.0.4-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce259c3a980e0cd772bbe74bfb70a005f83ab223f3fdad1a7ab0216bb44bf0ce |
|
MD5 | 19be5fcb2fcfd93f6d1b5d14cc6685a5 |
|
BLAKE2b-256 | 6e1c24d90fb5f8ca010209dca0dc9e9fd818fb74f8056dd4c4559604e69ce17a |