[Python-3000-checkins] r58446 - in python/branches/py3k: PC/VC6/pythoncore.dsp PC/config.c PC/os2emx/Makefile PC/os2emx/config.c PCbuild8/pythoncore/pythoncore.vcproj Tools/scripts/README

2007-10-13 Thread neal.norwitz
Author: neal.norwitz Date: Sat Oct 13 20:56:00 2007 New Revision: 58446 Modified: python/branches/py3k/PC/VC6/pythoncore.dsp python/branches/py3k/PC/config.c python/branches/py3k/PC/os2emx/Makefile python/branches/py3k/PC/os2emx/config.c python/branches/py3k/PCbuild8/pythoncore/pyth

[Python-3000-checkins] r58447 - python/branches/py3k/Modules/arraymodule.c

2007-10-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Sat Oct 13 23:01:08 2007 New Revision: 58447 Modified: python/branches/py3k/Modules/arraymodule.c Log: Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA. Modified: python/branches/py3k/Modules/arraymodule.c

[Python-3000-checkins] r58448 - in python/branches/py3k: Include/object.h Modules/arraymodule.c Objects/abstract.c Objects/unicodeobject.c Python/getargs.c

2007-10-13 Thread travis.oliphant
Author: travis.oliphant Date: Sat Oct 13 23:03:27 2007 New Revision: 58448 Modified: python/branches/py3k/Include/object.h python/branches/py3k/Modules/arraymodule.c python/branches/py3k/Objects/abstract.c python/branches/py3k/Objects/unicodeobject.c python/branches/py3k/Python/geta

[Python-3000-checkins] r58452 - python/branches/py3k/Lib/bsddb/dbshelve.py

2007-10-13 Thread gregory.p.smith
Author: gregory.p.smith Date: Sun Oct 14 01:23:58 2007 New Revision: 58452 Modified: python/branches/py3k/Lib/bsddb/dbshelve.py Log: Merge 58450: fix uncollectable reference caused by bsddb.db.DBShelf.append Adds a DBShelf __repr__ method to not raise an exception when the DB is closed. Modi

[Python-3000-checkins] r58455 - in python/branches/py3k: Modules/_sre.c Modules/posixmodule.c Objects/unicodeobject.c Python/getargs.c

2007-10-13 Thread alexandre.vassalotti
Author: alexandre.vassalotti Date: Sun Oct 14 04:05:51 2007 New Revision: 58455 Modified: python/branches/py3k/Modules/_sre.c python/branches/py3k/Modules/posixmodule.c python/branches/py3k/Objects/unicodeobject.c python/branches/py3k/Python/getargs.c Log: Remove the buffer API from Py

Re: [Python-3000-checkins] r58455 - in python/branches/py3k: Modules/_sre.c Modules/posixmodule.c Objects/unicodeobject.c Python/getargs.c

2007-10-13 Thread Neal Norwitz
On Oct 13, 2007 7:05 PM, alexandre.vassalotti wrote: > Author: alexandre.vassalotti > Date: Sun Oct 14 04:05:51 2007 > New Revision: 58455 > > > Modified: python/branches/py3k/Modules/posixmodule.c > == > --- python/branch

[Python-3000-checkins] r58456 - python/branches/py3k/Modules/posixmodule.c

2007-10-13 Thread alexandre.vassalotti
Author: alexandre.vassalotti Date: Sun Oct 14 04:54:41 2007 New Revision: 58456 Modified: python/branches/py3k/Modules/posixmodule.c Log: Fix the memory leak introduced in r58455. The buffer reference returned by 'et' need to be freed after use. Modified: python/branches/py3k/Modules/posixmod

Re: [Python-3000-checkins] r58455 - in python/branches/py3k: Modules/_sre.c Modules/posixmodule.c Objects/unicodeobject.c Python/getargs.c

2007-10-13 Thread Alexandre Vassalotti
On 10/13/07, Neal Norwitz <[EMAIL PROTECTED]> wrote: > I think this creates a memory leak. name needs to be deallocated when > using et. See the section below for an example. > Thanks Neal! Fixed in r58456. -- Alexandre ___ Python-3000-checkins mailin

[Python-3000-checkins] r58457 - python/branches/py3k/Modules/posixmodule.c

2007-10-13 Thread neal.norwitz
Author: neal.norwitz Date: Sun Oct 14 05:23:09 2007 New Revision: 58457 Modified: python/branches/py3k/Modules/posixmodule.c Log: Fix some more memory leaks (in error conditions) introduced in r58455. Also fix some indentation. Modified: python/branches/py3k/Modules/posixmodule.c