[issue5208] urllib2.build_opener([handler, ...]) incorrect signature in docs

2009-02-13 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Why is that ambiguous? Can you come up with a better short form? ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5208 ___

[issue5208] urllib2.build_opener([handler, ...]) incorrect signature in docs

2009-02-11 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: I believe those square brackets mean supplying handlers is optional, but even so it'd be very ambiguous. -- nosy: +ajaksu2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5208

[issue5208] urllib2.build_opener([handler, ...]) incorrect signature in docs

2009-02-10 Thread Max
New submission from Max m...@research-net.de: The build_opener() function of urllib2 is speciofied as: urllib2.build_opener([handler, ...]) I think it should be: urllib2.build_opener(handler, ...) see http://docs.python.org/library/urllib2.html?highlight=build_opener -- assignee: