Stepping into the [original source][1], it's clear it was not used for anything: ``` $ cd datastore-ndb-python/ $ git grep -n '_creation_counter' RELEASE_NOTES:112:- Issue 175: Add _creation_counter. ndb/model.py:888: __creation_counter_global = 0 ndb/model.py:942: Property.__creation_counter_global += 1 ndb/model.py:943: self._creation_counter = Property.__creation_counter_global ndb/model_test.py:1230: self.assertTrue(MyModel.foo._creation_counter < ndb/model_test.py:1231: MyModel.bar._creation_counter < ndb/model_test.py:1232: MyModel.baz._creation_counter) ``` It seems the stated goal in https://github.com/GoogleCloudPlatform/datastore-ndb-python/issues/175 (when this was introduced) was never implemented. @tseaver @chrisrossi WDYT? @theacodes Do we have leeway to get rid of such a feature? [1]: https://github.com/GoogleCloudPlatform/datastore-ndb-python
Stepping into the original source, it's clear it was not used for anything:
It seems the stated goal in GoogleCloudPlatform/datastore-ndb-python#175 (when this was introduced) was never implemented.
@tseaver @chrisrossi WDYT?
@theacodes Do we have leeway to get rid of such a feature?