| 1132 | } |
| 1133 | |
| 1134 | static PyObject * |
| 1135 | construct_txn(PyObject *self, PyObject *args) |
| 1136 | { |
| 1137 | UpsTransaction *txn = PyObject_New(UpsTransaction, &UpsTransaction_Type); |
| 1138 | if (!txn) |
| 1139 | return (0); |
| 1140 | |
| 1141 | txn->txn = 0; |
| 1142 | return (txn_begin(txn, args)); |
| 1143 | } |
| 1144 | |
| 1145 | static PyObject * |
| 1146 | register_compare(PyObject *self, PyObject *args) |
nothing calls this directly
no test coverage detected