-
skarabeus committed revision 8 to the pyspy SVN repository, changing 1 files.
2007-03-16 09:25:48 UTC in pyspy
-
skarabeus committed revision 7 to the pyspy SVN repository, changing 1 files.
2007-03-15 12:30:42 UTC in pyspy
-
skarabeus committed revision 6 to the pyspy SVN repository, changing 2 files.
2007-03-15 12:20:58 UTC in pyspy
-
skarabeus committed revision 5 to the pyspy SVN repository, changing 1 files.
2007-03-13 11:40:09 UTC in pyspy
-
skarabeus committed revision 4 to the pyspy SVN repository, changing 1 files.
2007-03-13 11:19:18 UTC in pyspy
-
skarabeus committed revision 3 to the pyspy SVN repository, changing 1 files.
2007-03-05 16:53:11 UTC in pyspy
-
skarabeus committed revision 2 to the pyspy SVN repository, changing 1 files.
2007-03-02 18:05:42 UTC in pyspy
-
skarabeus committed revision 1 to the pyspy SVN repository, changing 8 files.
2007-03-02 17:24:27 UTC in pyspy
-
skarabeus registered the pyspy project.
2007-02-28 21:05:42 UTC in pyspy
-
The Bug is in e32dbm.py módule in function get (line 179)
def get(self,key,defaultvalue=None):
if self.has_key(key):
return key
else:
return defaultvalue
Must be:
def get(self,key,defaultvalue=None):
if self.has_key(key):
return self.__getitem__(key):
else:
return defaultvalue
Bye.
2007-01-31 13:18:24 UTC in PyS60