(self)
| 772 | con.close() |
| 773 | |
| 774 | def test_setinputsizes(self): |
| 775 | con = self._connect() |
| 776 | try: |
| 777 | cur = con.cursor() |
| 778 | cur.setinputsizes((25,)) |
| 779 | self._paraminsert(cur) # Make sure cursor still works |
| 780 | finally: |
| 781 | con.close() |
| 782 | |
| 783 | def test_setoutputsize_basic(self): |
| 784 | # Basic test is to make sure setoutputsize doesn't blow up |
nothing calls this directly
no test coverage detected