请帮助我理解这一点:
在 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!