[issue5966] unnecessary hardlink

2009-05-08 Thread Kandalintsev Alexandre
New submission from Kandalintsev Alexandre : Hello! After installing py3k:72466 I found that python3 is hardlink to python3.1: $ ls -lai python* 34614 -rwxr-xr-x 2 root root 3625145 2009-05-08 11:10 python3 34614 -rwxr-xr-x 2 root root 3625145 2009-05-08 11:10 python3.1 38299 -rwxr-xr-x 1 root

[issue5752] xml.dom.minidom does not handle newline characters in attribute values

2009-05-08 Thread Tomalak
Tomalak added the comment: Hmm... I thought toxml() is the part that needs to be fixed, not the parsing/reading. I mentioned the reading only to outline the data loss that occurs eventually. My point is: The toxml() (i.e. _write_data) *actually writes* the newline to the output. And within para

[issue5963] Doc error: integer precision in formats

2009-05-08 Thread Eric Smith
Eric Smith added the comment: "integer presentation types" is still not exactly correct, because there are presentation types that work across value types. Specifically, 'n' works on integers and floats. Precision is allowed for floats, but not ints: >>> format(10.0, '.4n') '10' >>> format(10,

[issue5752] xml.dom.minidom does not handle newline characters in attribute values

2009-05-08 Thread Tomalak
Tomalak added the comment: Attaching a patch that fixes the problem. -- keywords: +patch Added file: http://bugs.python.org/file13919/minidom.patch ___ Python tracker ___ ___

[issue5752] xml.dom.minidom does not handle newline characters in attribute values

2009-05-08 Thread Tomalak
Tomalak added the comment: Attaching a test file that outlines the problem. Output on my system (Windows / Python 3.0) is: Without the patch: C:\Python30>python.exe c:\minidom_test.py False 1 -->"multiline value" 2 -->"multiline value" With the patch: C:\Python30>python.exe c:\minidom_test.py

[issue5752] xml.dom.minidom does not handle newline characters in attribute values

2009-05-08 Thread Tomalak
Changes by Tomalak : Removed file: http://bugs.python.org/file13920/toxml_test.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue5752] xml.dom.minidom does not handle newline characters in attribute values

2009-05-08 Thread Tomalak
Changes by Tomalak : Added file: http://bugs.python.org/file13921/minidom_test.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue5959] PyCode_NewEmpty

2009-05-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: Good idea. The patch lacks some documentation. -- nosy: +pitrou versions: +Python 3.1 ___ Python tracker ___ ___

[issue5959] PyCode_NewEmpty

2009-05-08 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> jyasskin resolution: -> accepted stage: patch review -> commit review ___ Python tracker ___

[issue5954] PyFrame_GetLineNumber

2009-05-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: Please add doc to the patch, it looks ok otherwise. -- assignee: -> jyasskin nosy: +pitrou resolution: -> accepted stage: patch review -> commit review versions: +Python 3.1 ___ Python tracker

[issue2178] Problems with Belarusian Latin locale

2009-05-08 Thread Jeroen Ruigrok van der Werven
Jeroen Ruigrok van der Werven added the comment: Interesting. I'll see if I can dig into this. -- nosy: +asmodai ___ Python tracker ___ __

[issue4787] Curses Unicode Support

2009-05-08 Thread Jeroen Ruigrok van der Werven
Jeroen Ruigrok van der Werven added the comment: On FreeBSD there's no need for the ncurses package in most case. Since somewhere along 6.x and 7.x line Rong-En Fan switched FreeBSD to do what I did for DragonFly BSD a long time: to have both normal and wide curses available. As far as Python i

[issue5955] aifc: close() does not close the underlying file

2009-05-08 Thread Georg Brandl
Changes by Georg Brandl : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue5958] Typo in documentation of shelve.sync

2009-05-08 Thread Georg Brandl
Georg Brandl added the comment: That's not a bug -- what is documented there is a method of the Shelf classes. -- resolution: -> works for me status: open -> closed ___ Python tracker _

[issue5965] Format Specs: doc 's' and implicit conversions

2009-05-08 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> eric.smith nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing

[issue5967] PyList_GetSlice does not indicate negative ranges dont work as in python.

2009-05-08 Thread Campbell Barton
New submission from Campbell Barton : simple patch, docs say that PyList_GetSlice() works like list[high:low], but does not say that negative indices's dont work as with python slicing. -- assignee: georg.brandl components: Documentation files: slice.diff keywords: patch messages: 87438

[issue5967] PyList_GetSlice does not indicate negative ranges dont work as in python.

2009-05-08 Thread Retro
Retro added the comment: You have mispelled a word in the patch. The sentence should be Negative indices not supported. Please make another patch without the "indicies" typo. -- nosy: +Retro ___ Python tracker __

[issue5968] Generator expression bug?

2009-05-08 Thread Sven Rahmann
New submission from Sven Rahmann : Lists from list comprehensions and generator objects from generator expressions behave differently when we repeatedly want to iterate over them. This may or may not be a bug, but it is certainly not clear from the documentation (see documentation of "for" state

[issue5958] Typo in documentation of shelve.sync

2009-05-08 Thread Mitchell Model
Mitchell Model added the comment: Sorry. Careless again. -- -- --- Mitchell -- Added file: http://bugs.python.org/file13924/unnamed ___ Python tracker ___