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

2010-08-08 Thread Mark Lawrence
Mark Lawrence added the comment: Closing as no response to msg85. -- resolution: -> rejected status: pending -> closed ___ Python tracker ___ ___

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

2010-07-22 Thread Mark Lawrence
Mark Lawrence 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

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

2010-01-15 Thread Antoine Pitrou
Antoine Pitrou 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 ___ __

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

2010-01-15 Thread Brian Curtin
Brian Curtin added the comment: You should use assertFalse in your test, as failIf is deprecated starting in 2.7. -- nosy: +brian.curtin ___ Python tracker ___ _

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

2010-01-15 Thread Ezio Melotti
Changes by Ezio Melotti : -- keywords: +needs review nosy: +ezio.melotti priority: -> normal stage: -> patch review ___ Python tracker ___ __

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

2009-04-23 Thread Miki Tebeka
New submission from Miki Tebeka : 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 severity: normal st