Documentation: we have an index iterator now

This commit is contained in:
J. David Ibáñez
2011-07-21 12:36:12 +02:00
parent 802015246d
commit d4ca441c5b

View File

@@ -49,8 +49,7 @@ Index read:
Iterate over all entries of the index:
>>> for i in xrange(len(index)):
... entry = index[i]
>>> for entry in index:
... print entry.path, entry.sha
Index write: