(self)
| 765 | con.close() |
| 766 | |
| 767 | def test_setinputsizes(self): |
| 768 | con = self._connect() |
| 769 | try: |
| 770 | cur = con.cursor() |
| 771 | cur.setinputsizes( (25,) ) |
| 772 | self._paraminsert(cur) # Make sure cursor still works |
| 773 | finally: |
| 774 | con.close() |
| 775 | |
| 776 | def test_setoutputsize_basic(self): |
| 777 | # Basic test is to make sure setoutputsize doesn't blow up |
nothing calls this directly
no test coverage detected