[issue4248] "class in None" in html help keyword

2008-11-02 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks, committed as changeset 693fa9bb3b39. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue4247] Docs: Provide some examples of "pass" use in the tutorial.

2008-11-02 Thread Sean Reifschneider
Sean Reifschneider <[EMAIL PROTECTED]> added the comment: I originally had that, but then I realized that if I make it a comment I can then do something like "dw." on that line when I start filling in the code to keep the comment around. Because I find that when I fill in the high level comments

[issue4252] inactive item not shown in html help index pane

2008-11-02 Thread Hirokazu Yamamoto
Hirokazu Yamamoto <[EMAIL PROTECTED]> added the comment: I hope this can be fixed by attached patch. I learned this technique to create inactive link from HTML Help Workshop document. http://msdn.microsoft.com/en-us/library/ms669985.aspx http://go.microsoft.com/fwlink/?linkid=14581 # direct link

[issue4252] inactive item not shown in html help index pane

2008-11-02 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file11930/index_on_htmlhelp.png ___ Python tracker <[EMAIL PROTECTED]> ___

[issue4252] inactive item not shown in html help index pane

2008-11-02 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto <[EMAIL PROTECTED]>: Please see index_on_firefox.png and index_on_htmlhelp.png. "and" is inactive item not linking to any page, but this item is not shown in htmlhelp. -- assignee: georg.brandl components: Documentation tools (Sphinx) files: index_on

[issue4248] "class in None" in html help keyword

2008-11-02 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto <[EMAIL PROTECTED]>: -- components: +Documentation tools (Sphinx) -Documentation, Windows ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue4248] "class in None" in html help keyword

2008-11-02 Thread Hirokazu Yamamoto
Hirokazu Yamamoto <[EMAIL PROTECTED]> added the comment: I've received checkin-mail to notify http://svn.python.org/projects/doctools is outdated, but I don't have Mercurial now, so I'll submit a patch for outdated repo. (I hope not so outdated just now) Sorry for inconvenience. -- keywo

[issue4247] Docs: Provide some examples of "pass" use in the tutorial.

2008-11-02 Thread David W. Lambert
David W. Lambert <[EMAIL PROTECTED]> added the comment: I'd change the exceptions, replace comment with string. Instead of raise NotImplementedError # Set up dummy log back-end write raise NotImplementedError('Set up dummy log back-end') -- nosy: +LambertDW _

[issue4251] library.pdf documentation: "See also: Module " does not link to xxx inside the PDF File

2008-11-02 Thread Winfried Plappert
Changes by Winfried Plappert <[EMAIL PROTECTED]>: -- type: -> behavior ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list

[issue4251] library.pdf documentation: "See also: Module " does not link to xxx inside the PDF File

2008-11-02 Thread Winfried Plappert
New submission from Winfried Plappert <[EMAIL PROTECTED]>: I take chapter "19.12 base64—RFC 3548: Base16, Base32, Base64 Data Encodings" (Python 2.6) as an example. At the bottom of the chapter, you find references to other resouces, in this case: See Also: Module binascii Support module contain

[issue4250] urllib2.py: HTTPResponse instance has no attribute 'code'

2008-11-02 Thread Jon Perez
New submission from Jon Perez <[EMAIL PROTECTED]>: In http_response() in HTTPErrorProcessor in urllib2.py, the following line code, msg, hdrs = response.code, response.msg, response.info() results in an error because response.code is not a valid attribute, changing it to response.status works,

[issue4249] HTTPResponse instance has no attribute 'code'

2008-11-02 Thread Jon Perez
New submission from Jon Perez <[EMAIL PROTECTED]>: In http_response in HTTPErrorProcessor, the following line code, msg, hdrs = response.code, response.msg, response.info() results in an error because response.code is not a valid attribute, changing it to response.status works, but is this the