[New-bugs-announce] [issue5174] xmlrpclib docs include incorrect file closing

Calvin Spealman report at bugs.python.org
Fri Feb 6 23:19:27 CET 2009


New submission from Calvin Spealman <ironfroggy at users.sourceforge.net>:

The following example from the xmlrpclib docs has an obviously erronous 
call to close() after the actual return. 
(http://docs.python.org/library/xmlrpclib.html)

def python_logo():
     handle = open("python_logo.jpg")
     return xmlrpclib.Binary(handle.read())
     handle.close()

The patch included also makes the whitespace PEP-8 compliant.

----------
assignee: georg.brandl
components: Documentation
files: xmlrpc_doc.patch
keywords: patch
messages: 81309
nosy: georg.brandl, ironfroggy
severity: normal
status: open
title: xmlrpclib docs include incorrect file closing
versions: Python 2.5, Python 2.6, Python 2.7, Python 3.0, Python 3.1
Added file: http://bugs.python.org/file12961/xmlrpc_doc.patch

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue5174>
_______________________________________


More information about the New-bugs-announce mailing list