[issue4287] Broken URL in documentation style guide

2008-11-08 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks! Fixed in r67175. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> __

[issue4286] Discrepancy in format string documentation

2008-11-08 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks for the report! Fixed in r67174. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___

[issue4287] Broken URL in documentation style guide

2008-11-08 Thread Fernando Correia
New submission from Fernando Correia <[EMAIL PROTECTED]>: The documentation Style Guide [http://docs.python.org/dev/documenting/style.html] has a broken link to http://developer.apple.com/documentation/UserExperience/Conceptual/APStyleGuide/AppleStyleGuide2006.pdf. This link should be updated to:

[issue4286] Discrepancy in format string documentation

2008-11-08 Thread dlfjessup
New submission from dlfjessup <[EMAIL PROTECTED]>: In the documentation for Format Strings (http://docs.python.org/dev/3.0/library/string.html#formatstrings), the grammar has the following rule: > conversion::= "r" | "s" However, the documentation later reads: > Three conversion flags

[issue4285] Use a named tuple for sys.version_info

2008-11-08 Thread Brett Cannon
New submission from Brett Cannon <[EMAIL PROTECTED]>: sys.version_info is just asking for a named tuple consisting of major, minor, micro, releaselevel, and serial. This is assuming, of course, that bootstrapping doesn't get in the way. -- assignee: brett.cannon components: Extension Mo

[issue4284] Python 2.6 64-bit + Vista 64 = Bad MSVCRT

2008-11-08 Thread Martin v. Löwis
Changes by Martin v. Löwis <[EMAIL PROTECTED]>: -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-lis

[issue4284] Python 2.6 64-bit + Vista 64 = Bad MSVCRT

2008-11-08 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: This is a duplicate of Issue4018. You need to install Python "for all users"; "just for me" installation is not supported. -- nosy: +loewis resolution: -> duplicate superseder: -> "for me" installer problem on x64 Vista __

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

2008-11-08 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: It doesn't directly translate. I'm going to switch the Python docs' build setup to checkout from Hg soon. ___ Python tracker <[EMAIL PROTECTED]>

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

2008-11-08 Thread Winfried Plappert
Winfried Plappert <[EMAIL PROTECTED]> added the comment: Hi, I just checked out sphinx version 67171. It still seems not to procduce a link to the module. How does Sphinx rev 735:a4019921bdf4 translate into a Python revision? This is what I did: $ make update svn update tools/sphinx At revision

[issue4284] Python 2.6 64-bit + Vista 64 = Bad MSVCRT

2008-11-08 Thread Anthony Awtrey
New submission from Anthony Awtrey <[EMAIL PROTECTED]>: Here is the reproduction process. Get Windows box running Vista 64-bit. Download the Python 2.6 64-bit version. Write a script that imports escape from saxutils. See this: C:\Python26>python.exe example_xml_script.py > out.xml Traceback (mo

[issue4281] Idle - incorrectly displaying a character (Latin capital letter sharp s)

2008-11-08 Thread Martin v. Löwis
Changes by Martin v. Löwis <[EMAIL PROTECTED]>: -- resolution: -> works for me status: open -> closed versions: +3rd party -Python 2.6, Python 3.0 ___ Python tracker <[EMAIL PROTECTED]> _

[issue4271] conversion tool does not fix "from Tkinter import N,E"

2008-11-08 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: The other problem is fixed in r67170. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> __

[issue4281] Idle - incorrectly displaying a character (Latin capital letter sharp s)

2008-11-08 Thread Vlastimil Brom
Vlastimil Brom <[EMAIL PROTECTED]> added the comment: I can confirm, that TCL displays the same character as Idle, hence it itsn't a bug in Python (cf. the screenshot). Unfortunately, I couldn't identify the font used here; I'm not able to modify and recompile Tk, as suggested, but I tried to c

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

2008-11-08 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-l

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

2008-11-08 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- status: pending -> open ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-

[issue4275] socketserver example code not correctly ported to py3k

2008-11-08 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks! Fixed in r67168. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> __

[issue4118] Built-in compile() and ast module doc issues

2008-11-08 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks for the suggestions! Changed in r67162. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> _

[issue4283] "python3.0 setup.py install --user" raises AttributeError

2008-11-08 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks, fixed in r67160. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue4275] socketserver example code not correctly ported to py3k

2008-11-08 Thread Brad Miller
Brad Miller <[EMAIL PROTECTED]> added the comment: Here's a combined patch that fixes: Doc/library/socketserver.rst examples tested and working Demo/sockets/udpecho.py Demo/sockets/unixclient.py Added file: http://bugs.python.org/file11967/socketpatches.patch _

[issue4275] socketserver example code not correctly ported to py3k

2008-11-08 Thread Brad Miller
Brad Miller <[EMAIL PROTECTED]> added the comment: For the example in unixclient.py using b'Hello World' works fine. But for the example in the socketserver documentation the strings to convert come from argv[1:] On Sat, Nov 8, 2008 at 5:48 AM, STINNER Victor <[EMAIL PROTECTED]>wrote: > > STIN

[issue4246] execution model - clear and complete example in documentation

2008-11-08 Thread robwolfe
robwolfe <[EMAIL PROTECTED]> added the comment: People seem to understand that they can not use variable before definition. But this dramatically change when they come across nested functions. They don't understand when variable can be resolved from outer scope and when can not, e.g: def outer()

[issue4283] "python3.0 setup.py install --user" raises AttributeError

2008-11-08 Thread Hagen Fürstenau
New submission from Hagen Fürstenau <[EMAIL PROTECTED]>: A simple left-over "dict.iteritems". Patch is attached. -- components: Distutils files: distutils.patch keywords: patch messages: 75634 nosy: hagen severity: normal status: open title: "python3.0 setup.py install --user" raises Att

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

2008-11-08 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Should be fixed in Sphinx rev 735:a4019921bdf4. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> _

[issue4281] Idle - incorrectly displaying a character (Latin capital letter sharp s)

2008-11-08 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: On my system, a square box is drawn indeed. First, I would like to confirm that this is not a bug in Python. Can you please install Tcl 8.5 separately, run wish, and execute label .l -text "\u1e9e" pack .l IIUC, Tk will try to find a

[issue2433] Merge audio modules

2008-11-08 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: Which modules? And where is the patch? :-) -- nosy: +haypo stage: -> needs patch ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue4275] socketserver example code not correctly ported to py3k

2008-11-08 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: Why not using bytes() instead of bytearray()? Eg. replace s.send('Hello, world') by s.send(b'Hello, world'). -- nosy: +haypo ___ Python tracker <[EMAIL PROTECTED]>

[issue4281] Idle - incorrectly displaying a character (Latin capital letter sharp s)

2008-11-08 Thread Vlastimil Brom
Vlastimil Brom <[EMAIL PROTECTED]> added the comment: I'm aware, that it isn't an issue of unicodedata, it was just the way I came to try such a "modern" unicode character. I also see, that tk works pretty well in finding an appropriate font (e.g. compared to wx, which I use more often) - it to