Changes between Initial Version and Version 1 of Ticket #17671, comment 2


Ignore:
Timestamp:
May 30, 2012, 4:10:36 AM (12 years ago)
Author:
Aymeric Augustin

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #17671, comment 2

    initial v1  
    1 To fix this add following methods to django.db.backends.CursorWrapper
     1To fix this add following methods to `django.db.backends.CursorWrapper`
    22
     3{{{
    34def __enter__(self):
    45    return self
     
    67def __exit__(self, type, value, traceback):
    78    return self.cursor.__exit__(type, value, traceback)
     9}}}
Back to Top