MCPcopy Index your code
hub / github.com/mongodb/mongo-python-driver / at_least

Method at_least

pymongo/common.py:1140–1141  ·  view source on GitHub ↗
(self, *other_version: Any)

Source from the content-addressed store, hash-verified

1138 return Version(*version)
1139
1140 def at_least(self, *other_version: Any) -> bool:
1141 return self >= Version(*other_version)
1142
1143 def __str__(self) -> str:
1144 return ".".join(map(str, self))

Calls 1

VersionClass · 0.70

Tested by 15

test_aggregate_writeMethod · 0.64
test_scramMethod · 0.64
test_createMethod · 0.64
test_exhaustMethod · 0.64
test_whereMethod · 0.64