MCPcopy Index your code
hub / github.com/MongoEngine/mongoengine / LongField

Class LongField

mongoengine/fields.py:366–370  ·  view source on GitHub ↗

64-bit integer field. (Equivalent to IntField since the support to Python2 was dropped)

Source from the content-addressed store, hash-verified

364
365
366class LongField(IntField):
367 """64-bit integer field. (Equivalent to IntField since the support to Python2 was dropped)"""
368
369 def to_mongo(self, value):
370 return Int64(value)
371
372
373class FloatField(BaseField):

Callers 3

PersonClass · 0.85
TestDocumentClass · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…