~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/atomicfile.py

(gz) Truncate stat fields to 4 bytes in dirstate.pack_stat implementations
 (Martin Packman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
from __future__ import absolute_import
18
17
 
19
18
import os
20
19
 
79
78
            # the common case is that we won't, though.
80
79
            st = os.fstat(self._fd)
81
80
            if stat.S_IMODE(st.st_mode) != new_mode:
82
 
                osutils.chmod_if_possible(self.tmpfilename, new_mode)
 
81
                os.chmod(self.tmpfilename, new_mode)
83
82
 
84
83
    def __repr__(self):
85
84
        return '%s(%r)' % (self.__class__.__name__,