| 166 | } // namespace |
| 167 | |
| 168 | Status DecimalFromPythonDecimal(PyObject* python_decimal, const DecimalType& arrow_type, |
| 169 | Decimal32* out) { |
| 170 | return InternalDecimalFromPythonDecimal(python_decimal, arrow_type, out); |
| 171 | } |
| 172 | |
| 173 | Status DecimalFromPyObject(PyObject* obj, const DecimalType& arrow_type, Decimal32* out) { |
| 174 | return InternalDecimalFromPyObject(obj, arrow_type, out); |