[issue5825] Patch to add remove method to tempfile.NamedTemporaryFile

2010-08-08 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Closing as no response to msg85. -- resolution: - rejected status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5825

[issue5825] Patch to add remove method to tempfile.NamedTemporaryFile

2010-07-22 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can be closed unless someone can justify this change. -- nosy: +BreamoreBoy status: open - pending versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org

[issue5825] Patch to add remove method to tempfile.NamedTemporaryFile

2010-01-15 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +needs review nosy: +ezio.melotti priority: - normal stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5825

[issue5825] Patch to add remove method to tempfile.NamedTemporaryFile

2010-01-15 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: You should use assertFalse in your test, as failIf is deprecated starting in 2.7. -- nosy: +brian.curtin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5825

[issue5825] Patch to add remove method to tempfile.NamedTemporaryFile

2010-01-15 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: What is the point besides to reduce the need to import os.unlink, which sounds a bit futile to me? -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5825

[issue5825] Patch to add remove method to tempfile.NamedTemporaryFile

2009-04-23 Thread Miki Tebeka
New submission from Miki Tebeka miki.teb...@gmail.com: Adding remove method to NamedTemporaryFile will reduce the need to import os.unlink when creating a NamedTemporaryFile with delete=False. -- components: Library (Lib) files: tempfile.diff keywords: patch messages: 86387 nosy: tebeka