<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -452,7 +452,7 @@ Query results, at the minimum, must support iteration::
   &gt;&gt;&gt; results = person_name()
   &gt;&gt;&gt; i = iter(results)
   &gt;&gt;&gt; i #doctest: +ELLIPSIS
-  &lt;generator object at ...&gt;
+  &lt;generator object ...&gt;
 
 To cache the query results, use whatever tools you like.  For example,
 you can get a list of results in order to retrieve the length or</diff>
      <filename>doc/source/reference/database-usage.txt</filename>
    </modified>
    <modified>
      <diff>@@ -76,6 +76,9 @@ class EntityFields(object):
     def __iter__(self):
         return iter(self._i._field_spec)
 
+    def __length_hint__(self):
+        return len(self._i._field_spec)
+
     def __repr__(self):
         return '&lt;%r namespace on %r&gt;' % (self._n, self._i)
 </diff>
      <filename>schevo/entityns.py</filename>
    </modified>
    <modified>
      <diff>@@ -91,6 +91,9 @@ class Fields(object):
     def __iter__(self):
         return iter(self._i._field_map)
 
+    def __length_hint__(self):
+        return len(self._i._field_map)
+
     def __repr__(self):
         return '&lt;%r namespace on %r&gt;' % (self._n, self._i)
 </diff>
      <filename>schevo/namespace.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>27d1416c3ef85b56397e59eb23a4207c60e0665d</id>
    </parent>
  </parents>
  <author>
    <name>Matthew R. Scott</name>
    <email>gldnspud@gmail.com</email>
  </author>
  <url>http://github.com/11craft/schevo/commit/954fa2c81825571f15e2975a5988251cd3877998</url>
  <id>954fa2c81825571f15e2975a5988251cd3877998</id>
  <committed-date>2009-05-07T09:44:49-07:00</committed-date>
  <authored-date>2009-05-07T09:44:49-07:00</authored-date>
  <message>Add __length_hint__ methods as appropriate to fix Python 2.6 compatibility.</message>
  <tree>7486d3985b2a0cf4088dbd72a6bb4c24fee39bc6</tree>
  <committer>
    <name>Matthew R. Scott</name>
    <email>gldnspud@gmail.com</email>
  </committer>
</commit>
