Rev 4572: (robertc) Fix repr() of C readdir Stat results. (Robert Collins) in file:///home/pqm/archives/thelove/bzr/%2Btrunk/

Canonical.com Patch Queue Manager pqm at pqm.ubuntu.com
Mon Jul 27 08:32:28 BST 2009


At file:///home/pqm/archives/thelove/bzr/%2Btrunk/

------------------------------------------------------------
revno: 4572 [merge]
revision-id: pqm at pqm.ubuntu.com-20090727073227-no0xwxw2i11oadqt
parent: pqm at pqm.ubuntu.com-20090727062257-im0nsixc2e9ua9ac
parent: robertc at robertcollins.net-20090727042436-dvr4bpwie5sk3cfn
committer: Canonical.com Patch Queue Manager <pqm at pqm.ubuntu.com>
branch nick: +trunk
timestamp: Mon 2009-07-27 08:32:27 +0100
message:
  (robertc) Fix repr() of C readdir Stat results. (Robert Collins)
modified:
  bzrlib/_readdir_pyx.pyx        readdir.pyx-20060609152855-rm6v321vuaqyh9tu-1
=== modified file 'bzrlib/_readdir_pyx.pyx'
--- a/bzrlib/_readdir_pyx.pyx	2009-03-23 14:59:43 +0000
+++ b/bzrlib/_readdir_pyx.pyx	2009-07-27 04:24:36 +0000
@@ -155,7 +155,7 @@
         (mode, ino, dev, nlink, uid, gid, size, None(atime), mtime, ctime)
         """
         return repr((self.st_mode, 0, 0, 0, 0, 0, self.st_size, None,
-                     self._mtime, self._ctime))
+                     self.st_mtime, self.st_ctime))
 
 
 from bzrlib import osutils




More information about the bazaar-commits mailing list