Changes between Initial Version and Version 1 of Ticket #24437
- Timestamp:
- Mar 2, 2015, 8:51:11 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24437 – Description
initial v1 27 27 28 28 29 2. Break existing applications / projects using Mongoengine.29 break existing applications / projects using Mongoengine. 30 30 31 31 Mongoengine installs a custom MongoUser that is a shim around the actual model, which is a mongoengine document. The actual user id is a hexadecimal number / string and might not be validated using int(), causing the following exception … … 44 44 Python Version: 2.7.8 45 45 }}} 46 47 48 I do not know whether django.contrib.auth should make any assumption on the actual type of the id, or whether mongoengine should reimplement the pk property and delegate to its own version of the Auto field.