私がこれを理解するのを手伝ってください:
v1.6.6では、次の2744行目にありgoogle/appengine/ext/db/__init__.py
ます。
class UnindexedProperty(Property):
"""A property that isn't indexed by either built-in or composite indices.
TextProperty and BlobProperty derive from this class.
"""
def __init__(self, *args, **kwds):
"""Construct property. See the Property class for details.
Raises:
ConfigurationError if indexed=True.
"""
self._require_parameter(kwds, 'indexed', False)
kwds['indexed'] = True
super(UnindexedProperty, self).__init__(*args, **kwds)
.
.
.
インデックス付きパラメーターをFalseに制約した後、Trueに設定しました。