Re: python memory leak only in x86 64 linux

2008-04-20 Thread Gabriel Genellina
En Wed, 16 Apr 2008 13:10:42 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> escribió: > This is the code that is causing memory leak in 64 bit python [but not > in 32 bit python].. is something wrong in the code? > > [... Python code using the datetime module ...] >> the memory usage of a python a

Re: python memory leak only in x86 64 linux

2008-04-16 Thread [EMAIL PROTECTED]
This is the code that is causing memory leak in 64 bit python [but not in 32 bit python].. is something wrong in the code? now = datetime.datetime.now() oneday = datetime.timedelta(days=1) def birthdaycompare(a, b): if a is None and b: return 1 if a and b is None: return -1