From fe5cc78d9aeb5ca3a8d443aae8137fabca9bcb8d Mon Sep 17 00:00:00 2001 From: Mike Dirolf Date: Tue, 10 Feb 2009 10:43:18 -0500 Subject: [PATCH] outdated TODO --- pymongo/objectid.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pymongo/objectid.py b/pymongo/objectid.py index cad610390..36a463e1a 100644 --- a/pymongo/objectid.py +++ b/pymongo/objectid.py @@ -40,7 +40,6 @@ class ObjectId(object): def __generate(self): """Generate a new value for this ObjectId. """ - # TODO for now, just generate 12 random bytes. this will change when we decide on an _id algorithm... oid = "" for _ in range(12): oid += chr(random.randint(0, 255))