We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some objects might represent integers, and implement basic arithmetic operations with integers (+1 and //2) through https://docs.python.org/3/reference/datamodel.html#emulating-numeric-types
While they are not python numbers, they could still be paired with this library.
E.g. objects representing database columns, futurized integer results, arbitrary formula engines, etc, etc.
Simply removing the integer cast in the pairing function should do the trick.
The usage should be documented to call the pairing function with the safe=False flag, since depairing will generally be not possible.
The text was updated successfully, but these errors were encountered:
#3 would solve this (except for the documentation concern)
Sorry, something went wrong.
No branches or pull requests
Some objects might represent integers, and implement basic arithmetic operations with integers (+1 and //2) through https://docs.python.org/3/reference/datamodel.html#emulating-numeric-types
While they are not python numbers, they could still be paired with this library.
E.g. objects representing database columns, futurized integer results, arbitrary formula engines, etc, etc.
Simply removing the integer cast in the pairing function should do the trick.
The usage should be documented to call the pairing function with the safe=False flag, since depairing will generally be not possible.
The text was updated successfully, but these errors were encountered: