Promoted BaseDynamicField to DynamicField

closes mongoengine/mongoengine#22
This commit is contained in:
Ross Lawley
2012-05-17 21:54:17 +01:00
parent 376b9b1316
commit 8840680303
5 changed files with 52 additions and 46 deletions

View File

@@ -1,4 +1,5 @@
import pymongo
from bson.dbref import DBRef
from mongoengine import signals
@@ -359,7 +360,7 @@ class DynamicDocument(Document):
way as an ordinary document but has expando style properties. Any data
passed or set against the :class:`~mongoengine.DynamicDocument` that is
not a field is automatically converted into a
:class:`~mongoengine.BaseDynamicField` and data can be attributed to that
:class:`~mongoengine.DynamicField` and data can be attributed to that
field.
..note::