diff --git a/VERSION b/VERSION index d0e19f04..4543880b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.4.6-stable+timestamp.2013.04.15.18.05.12 +Version 2.4.6-stable+timestamp.2013.04.15.22.57.21 diff --git a/gluon/dal.py b/gluon/dal.py index 3e6301d2..88ae5718 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -6851,6 +6851,9 @@ class Row(object): def __int__(self): return object.__getattribute__(self,'id') + def __long__(self): + return long(object.__getattribute__(self,'id')) + def __eq__(self,other): try: return self.as_dict() == other.as_dict()