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