Rev 2513: Clean up and remove unused functions. in http://bzr.arbash-meinel.com/branches/bzr/0.17-dev/dirstate_pyrex
John Arbash Meinel
john at arbash-meinel.com
Sat May 5 06:02:14 BST 2007
At http://bzr.arbash-meinel.com/branches/bzr/0.17-dev/dirstate_pyrex
------------------------------------------------------------
revno: 2513
revision-id: john at arbash-meinel.com-20070505050202-hmi7l9smckjrf2pa
parent: john at arbash-meinel.com-20070505045753-1fwhap6q0jyb18vt
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: dirstate_pyrex
timestamp: Sat 2007-05-05 00:02:02 -0500
message:
Clean up and remove unused functions.
modified:
bzrlib/compiled/dirstate_helpers.pyx dirstate_helpers.pyx-20070503201057-u425eni465q4idwn-3
-------------- next part --------------
=== modified file 'bzrlib/compiled/dirstate_helpers.pyx'
--- a/bzrlib/compiled/dirstate_helpers.pyx 2007-05-05 04:57:53 +0000
+++ b/bzrlib/compiled/dirstate_helpers.pyx 2007-05-05 05:02:02 +0000
@@ -222,12 +222,6 @@
self.end_str = self.text_str + self.text_size
self.cur = self.text_str
- cdef int done(self):
- return self.cur >= self.end_str
-
- def isdone(self):
- return self.done()
-
cdef char *get_next(self, int *size):
"""Return a pointer to the start of the next field."""
cdef char *next
@@ -254,21 +248,11 @@
raise AssertionError('First character should be null not: %s'
% (first,))
- def get_entry(self, entry_size):
- cdef int i
-
- fields = []
- for i from 0 <= i < entry_size-1:
- PyList_Append(fields, self.get_next_str())
- # Ignore the trailing newline
- self.get_next(&i)
- return fields
-
def get_all_fields(self):
"""Get a list of all fields"""
self.init()
fields = []
- while not self.done():
+ while self.cur < self.end_str:
PyList_Append(fields, self.get_next_str())
return fields
@@ -340,7 +324,7 @@
current_dirname = <void*>obj
new_block = 0
- while not self.done():
+ while self.cur < self.end_str:
entry = self._get_entry_0_parents(¤t_dirname, &new_block)
if new_block:
# new block - different dirname
More information about the bazaar-commits
mailing list