fixes for None values in QuerySet.values_list
This commit is contained in:
		| @@ -362,6 +362,9 @@ class ListResult(object): | |||||||
|             if data and isinstance(data, (dict, pymongo.dbref.DBRef)): |             if data and isinstance(data, (dict, pymongo.dbref.DBRef)): | ||||||
|                 return field_type.dereference(data) |                 return field_type.dereference(data) | ||||||
|          |          | ||||||
|  |         if data is None: | ||||||
|  |             return | ||||||
|  |          | ||||||
|         return field_type.to_python(data) |         return field_type.to_python(data) | ||||||
|  |  | ||||||
|     def next(self): |     def next(self): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user