Changes between Initial Version and Version 1 of Ticket #23462, comment 2
- Timestamp:
- Sep 10, 2014, 2:34:38 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23462, comment 2
initial v1 42 42 try: 43 43 self._close() 44 print('3') 44 45 finally: 45 print(' 3')46 print('4') 46 47 if self.in_atomic_block: 47 print(' 4')48 print('5') 48 49 self.closed_in_transaction = True 49 50 self.needs_rollback = True 50 51 else: 51 print(' 5')52 print('6') 52 53 self.connection = None 54 print('7') 53 55 self.set_clean() 54 56 … … 56 58 }}} 57 59 58 The aplication print, 1,3, 5. Is that right?60 The aplication print, 1,3,4,6. Is that right?