(self, t, key, val)
| 85 | self._data += "&" + data |
| 86 | |
| 87 | def addKV(self, t, key, val): |
| 88 | if self._data == "": |
| 89 | self._data = "{}={}".format(key, val) |
| 90 | else: |
| 91 | self._data += "&{}={}".format(key, val) |
| 92 | |
| 93 | def complete(self, t): |
| 94 | t = ccat.newTransaction(_(self._mtype), _(self._mname)) |