64-bit integer field. (Equivalent to IntField since the support to Python2 was dropped)
| 364 | |
| 365 | |
| 366 | class 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 | |
| 373 | class FloatField(BaseField): |
no outgoing calls
no test coverage detected
searching dependent graphs…