/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/_readdir_pyx.pyx

  • Committer: Jonathan Lange
  • Date: 2009-12-09 09:20:42 UTC
  • mfrom: (4881 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4907.
  • Revision ID: jml@canonical.com-20091209092042-s2zgqcf8f39yzxpj
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
        (mode, ino, dev, nlink, uid, gid, size, None(atime), mtime, ctime)
156
156
        """
157
157
        return repr((self.st_mode, 0, 0, 0, 0, 0, self.st_size, None,
158
 
                     self._mtime, self._ctime))
 
158
                     self.st_mtime, self.st_ctime))
159
159
 
160
160
 
161
161
from bzrlib import osutils
343
343
                            raise OSError(errno, "lstat: " + strerror(errno),
344
344
                                path + "/" + entry.d_name)
345
345
                        else:
346
 
                            kind = _missing
347
 
                            statvalue = None
 
346
                            # the file seems to have disappeared after being
 
347
                            # seen by readdir - perhaps a transient temporary
 
348
                            # file.  there's no point returning it.
 
349
                            continue
348
350
                    # We append a 5-tuple that can be modified in-place by the C
349
351
                    # api:
350
352
                    # inode to sort on (to replace with top_path)