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


Ignore:
Timestamp:
Sep 10, 2014, 2:34:38 PM (10 years ago)
Author:
Mauro Alexandre

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23462, comment 2

    initial v1  
    4242        try:
    4343            self._close()
     44            print('3')
    4445        finally:
    45             print('3')
     46            print('4')
    4647            if self.in_atomic_block:
    47                 print('4')
     48                print('5')
    4849                self.closed_in_transaction = True
    4950                self.needs_rollback = True
    5051            else:
    51                 print('5')
     52                print('6')
    5253                self.connection = None
     54        print('7')
    5355        self.set_clean()
    5456
     
    5658}}}
    5759
    58 The aplication print, 1,3,5. Is that right?
     60The aplication print, 1,3,4,6. Is that right?
Back to Top