Ticket #11857: quickfix patch for 11857 against Django 1.2 pre-alpha SVN-11477.diff

File quickfix patch for 11857 against Django 1.2 pre-alpha SVN-11477.diff, 497 bytes (added by Petar Marić, 15 years ago)
  • django/core/files/temp.py

     
    3434        # as self.unlink only
    3535        unlink = os.unlink
    3636
     37        def _get_closed(self):
     38            return self.close_called
     39        closed = property(_get_closed)
     40
    3741        def close(self):
    3842            if not self.close_called:
    3943                self.close_called = True
Back to Top