[issue5990] Memory leak in os.rename() and other functions

2009-05-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- dependencies: +enhance getargs O& to accept cleanup function ___ Python tracker ___ ___ Python-bugs-list

[issue5990] Memory leak in os.rename() and other functions

2009-05-13 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I opened #6012 to handle O& memory leak issue. -- nosy: +ocean-city ___ Python tracker ___ ___ Py

[issue5990] Memory leak in os.rename() and other functions

2009-05-10 Thread Martin v. Löwis
Martin v. Löwis added the comment: The problem is more general. It can always happen that another argument conversion fails after the O& conversion had failed. Instead of going through the code and fixing each and every usage of the FSConverter callback, I'd rather want to discuss a more general

[issue5990] Memory leak in os.rename() and other functions

2009-05-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r72556. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Pyth

[issue5990] Memory leak in os.rename() and other functions

2009-05-10 Thread Antoine Pitrou
New submission from Antoine Pitrou : A small memory leak appeared in test_os with the PEP 383 checkins. The leak occurs in test_rename and is due to posix_2str. Here is a patch. -- components: Library (Lib) files: os_leak.patch keywords: patch messages: 87543 nosy: loewis, pitrou priorit