[issue6731] Non-zero exit status of setup.py when building of extensions has failed

2009-08-18 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- versions: -Python 2.4, Python 2.5, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue6731] Non-zero exit status of setup.py when building of extensions has failed

2009-08-18 Thread Martin v . Löwis
Martin v. Löwis added the comment: It is deliberate that building Python succeeds even if building an extension has failed. -- nosy: +loewis ___ Python tracker ___ __

[issue6724] r74463 causes failures in test_xmlrpc

2009-08-18 Thread Gregory P. Smith
Gregory P. Smith added the comment: reverted in r74522 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue6724] r74463 causes failures in test_xmlrpc

2009-08-18 Thread Gregory P. Smith
Gregory P. Smith added the comment: hmm apparently the bug i was fixing in r74463 is not actually a bug, the httplib module does not support streaming requests in any way so even with a new socket buffer being constructed per request, the buffer is guaranteed to be empty at the end of complet

[issue6716] Windows install error when choosing to compile .py files

2009-08-18 Thread pds
pds added the comment: The same problems I reported persist in python-3.1.1.msi, too. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue6733] curses line wrap broken when mixing full- and half-width unicode characters

2009-08-18 Thread fugounashi
New submission from fugounashi : when printing a full width unicode character near the end of a line when only a single (half-width) space remains, the character is printed at the start of the current line rather than the start of the next line. the following character is printed in the followin

[issue6732] PyInit_shoddy() in shoddy.c does not return anything on success

2009-08-18 Thread KAJIYAMA, Tamito
New submission from KAJIYAMA, Tamito : Section 2.1.4, "Subclassing other types", of "Extending and Embedding the Python Interpreter" (Release: 3.1, Date: June 26, 2009) has a complete list of shoddy.c, in which PyInit_shoddy() does not have a return statement at the end to return a pointer to

[issue5528] Unable to launch IDLE on Windows

2009-08-18 Thread Sridhar Ratnakumar
Changes by Sridhar Ratnakumar : -- nosy: +srid ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue6731] Non-zero exit status of setup.py when building of extensions has failed

2009-08-18 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis : sharedmods rule of Makefile calls setup.py which doesn't fail even building of extensions has failed. -- components: Build files: python-non-zero_exit_status_on_failure.patch keywords: patch messages: 91719 nosy: Arfrever severit

[issue6730] dict.fromkeys() should not cross reference mutable value by default

2009-08-18 Thread R. David Murray
R. David Murray added the comment: The docs very clearly say the second argument is the value that will be assigned to the keys. It doesn't matter whether or not that object is mutable, it is that object that gets assigned. This is just the way that Python works: >>> a = b = [] >>> a.append(1

[issue6730] dict.fromkeys() should not cross reference mutable value by default

2009-08-18 Thread Maxime Lemonnier
Maxime Lemonnier added the comment: It does not suits my needs. what if keys are passed as an argument? I have to add this ugly loop : for key in keys: d[key] = [] I really think that : 1) The doc should warn about it, since it is a very weird behaviour 2) There could at least be a

[issue6730] dict.fromkeys() should not cross reference mutable value by default

2009-08-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: I concur. -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue6730] dict.fromkeys() should not cross reference mutable value by default

2009-08-18 Thread Benjamin Peterson
Benjamin Peterson added the comment: This behavior will never change. Use collections.defaultdict for your case. -- nosy: +benjamin.peterson resolution: -> wont fix status: open -> closed ___ Python tracker __

[issue6730] dict.fromkeys() should not cross reference mutable value by default

2009-08-18 Thread Maxime Lemonnier
New submission from Maxime Lemonnier : Consider the following code sample : keys = ['x', 'y', 'z'] d = dict.fromkeys(keys, []) d['x'].append('dont') d['y'].append('mix') d['z'].append('me!') print d['x'] >>> ['dont', 'mix', 'me!'] It is very unatural and dangerous to have all dict keys poining

[issue6729] Add support for ssize_t

2009-08-18 Thread Nikolaus Rath
New submission from Nikolaus Rath : ctypes currently has a datatype c_size_t which corresponds to size_t in C, but there is no datatype for the C ssize_t. -- assignee: theller components: ctypes messages: 91713 nosy: Nikratio, theller severity: normal status: open title: Add support for

[issue6724] r74463 causes failures in test_xmlrpc

2009-08-18 Thread Brett Cannon
Brett Cannon added the comment: David, care to just revert r74463? If it breaks tests should be reverted until it can be fixed by whomever made the commit. -- nosy: +brett.cannon ___ Python tracker ___

[issue4661] email.parser: impossible to read messages encoded in a different encoding

2009-08-18 Thread Timothy Farrell
Changes by Timothy Farrell : -- nosy: +tercero12 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue4953] cgi module cannot handle POST with multipart/form-data in 3.0

2009-08-18 Thread Timothy Farrell
Timothy Farrell added the comment: I thought I'd take a crack at this today. I soon figured out the real issue. It is the email.parser module that handles the decoding of Multipart/form-data things...and it is also still quote broken w.r.t. handling Bytes. So this issue is dependent on http:/

[issue6726] pyuic4.bat has bad path to python.exe and pyuic.py

2009-08-18 Thread Benjamin Peterson
Benjamin Peterson added the comment: Please report this to the _PyQt_ maintainers. -- nosy: +benjamin.peterson resolution: -> invalid status: open -> closed ___ Python tracker _

[issue5961] Missing labelside option for Tix option menu (fix included)

2009-08-18 Thread Guilherme Polo
Changes by Guilherme Polo : -- resolution: -> fixed status: open -> closed type: feature request -> ___ Python tracker ___ ___ Python

[issue5961] Missing labelside option for Tix option menu (fix included)

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: > That is the manual I am referencing and the last time I looked it was > the most recent. > Thanks for clarifying that. > I'm not to familiar with the Python port of Tix, but I am using the > command, label, state, and variable options and they already work f

[issue5961] Missing labelside option for Tix option menu (fix included)

2009-08-18 Thread Cary R.
Cary R. added the comment: That is the manual I am referencing and the last time I looked it was the most recent. I'm not to familiar with the Python port of Tix, but I am using the command, label, state, and variable options and they already work fine. I could try the other options if that wou

[issue6728] To avoid hang up in using CGIXMLRPCRequestHandler under IIS 7.x

2009-08-18 Thread Yang
New submission from Yang : The mismatched content length will cause hang up in sys.stdin.read(). The reason is probably described in Issue 1214 as well as 1725295. length = int(os.environ.get('CONTENT_LENGTH', None)) """Length fix for IIS 7.x to avoid hang up""" length=length-2 I would appreci

[issue1356969] Tix.py class HList missing info_bbox, info_dragsite and info_dropsite

2009-08-18 Thread Guilherme Polo
Changes by Guilherme Polo : -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman

[issue1522587] Tix.Grid patch

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: py3k branch: r74518. -- resolution: accepted -> fixed ___ Python tracker ___ ___ Python-bugs-list

[issue1356969] Tix.py class HList missing info_bbox, info_dragsite and info_dropsite

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: py3k branch: r74518. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue1356969] Tix.py class HList missing info_bbox, info_dragsite and info_dropsite

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: py3k branch: r74518. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue1259434] Tix CheckList 'radio' option cannot be changed

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: py3k branch: r74518. -- resolution: accepted -> fixed ___ Python tracker ___ ___ Python-bugs-list

[issue1250469] Tix: PanedWindow.panes nonfunctional

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: py3k branch: r74518. -- resolution: accepted -> fixed ___ Python tracker ___ ___ Python-bugs-list

[issue1119673] ScrolledText allows Frame.bbox to hide Text.bbox

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: > This has been fixed on r74507 now. py3k branch: r74518. -- ___ Python tracker ___ ___ Python-b

[issue1119673] ScrolledText allows Frame.bbox to hide Text.bbox

2009-08-18 Thread Guilherme Polo
Changes by Guilherme Polo : -- resolution: accepted -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1578269] Add os.link() and os.symlink() and os.path.islink() support for Windows

2009-08-18 Thread Jason R. Coombs
Jason R. Coombs added the comment: Can this fix be considered for inclusion in 3.1.2? -- ___ Python tracker ___ ___ Python-bugs-lis

[issue6727] ImportError when package is symlinked on Windows

2009-08-18 Thread Jason R. Coombs
New submission from Jason R. Coombs : Python reports an import error, even when a valid package exists on sys.path, if that package is a symlink directory and would otherwise be importable. The attached test script demonstrates the limitation on Python 2.6.2 and 3.1.0. I suspect that the underl

[issue5961] Missing labelside option for Tix option menu (fix included)

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: Hi Cary, Where can I find the most up-to-date Tix manual ? Would it be http://tix.sourceforge.net/man/html/contents.htm ? I don't know much about Tix so maybe you can help me a bit here. Are all of these widget specific options considered as static options by

[issue6726] pyuic4.bat has bad path to python.exe and pyuic.py

2009-08-18 Thread Marcin
New submission from Marcin : I have found bug in pyuic4.bat. I have installed python to directory c:\programs. The path to 'python.exe' is c:\programs\python.exe. Content of file pyuic4.bat is: @"C:\Python25\python.exe" "C:\Python25\Lib\site-packages\PyQt4\uic\pyuic.py" %1 %2 %3 %4 %5 %6 %7 %8 %

[issue6725] Inconsistency in Documentation: "Name Spaces" vs "Namespaces"

2009-08-18 Thread CarGuy37
New submission from CarGuy37 : Why is there an inconsistency in the usage of "Name Spaces" vs "Namespaces"? After "import this", Python returns "...Namespaces are ..." I would suggest conjoining the two words and being consistent (9.2 Title and beginning sentence of the 6th paragraph thereof).

[issue1356969] Tix.py class HList missing info_bbox, info_dragsite and info_dropsite

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: Committed on r74517. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ P

[issue6723] csv.writer: example does not work

2009-08-18 Thread Skip Montanaro
Skip Montanaro added the comment: 3.1 corrected as well. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Py

[issue6723] csv.writer: example does not work

2009-08-18 Thread Skip Montanaro
Skip Montanaro added the comment: figured out my checkout problem. will have 3.1 fixed shortly. -- assignee: georg.brandl -> skip.montanaro ___ Python tracker ___ __

[issue6722] collections.namedtuple: confusing example

2009-08-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: It seems that it is the API you don't like, not the example. What is your suggested improvement to the docs? -- assignee: georg.brandl -> rhettinger nosy: +rhettinger ___ Python tracker

[issue6723] csv.writer: example does not work

2009-08-18 Thread Skip Montanaro
Skip Montanaro added the comment: Thanks for the report. Fixed for 2.6, 2.7, 3.0, 3.2. Can't seem to check out a 3.1 branch (tried release31-maint but was rebuffed by svn). -- nosy: +skip.montanaro ___ Python tracker

[issue1522587] Tix.Grid patch

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: New constants and methods have been commited on r74510. I've added only the tix commands that are actually supported by tix. The fixes for some of the methods have been committed on r74511. -- resolution: -> accepted status: open -> closed __

[issue1259434] Tix CheckList 'radio' option cannot be changed

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: Committed on r74509. -- resolution: -> accepted status: open -> closed ___ Python tracker ___ __

[issue1250469] Tix: PanedWindow.panes nonfunctional

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: Fix has been committed on r74508. -- resolution: -> accepted status: open -> closed ___ Python tracker ___ _

[issue1119673] ScrolledText allows Frame.bbox to hide Text.bbox

2009-08-18 Thread Guilherme Polo
Guilherme Polo added the comment: This has been fixed on r74507 now. -- resolution: -> accepted status: open -> closed ___ Python tracker ___

[issue6720] multiprocessing logging

2009-08-18 Thread Jesse Noller
Jesse Noller added the comment: Christian is managing the back port. -- assignee: jnoller -> christian.heimes nosy: +christian.heimes ___ Python tracker ___ _

[issue6724] r74463 causes failures in test_xmlrpc

2009-08-18 Thread R. David Murray
New submission from R. David Murray : The title says it all. -- assignee: gregory.p.smith components: Library (Lib), Tests messages: 91685 nosy: gregory.p.smith, r.david.murray priority: high severity: normal stage: needs patch status: open title: r74463 causes failures in test_xmlrpc ty

[issue4879] Allow buffering for HTTPResponse

2009-08-18 Thread R. David Murray
R. David Murray added the comment: I think I'll open a new ticket instead. -- stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue4879] Allow buffering for HTTPResponse

2009-08-18 Thread R. David Murray
Changes by R. David Murray : -- priority: -> normal stage: -> commit review status: closed -> open ___ Python tracker ___ ___ Python-

[issue4879] Allow buffering for HTTPResponse

2009-08-18 Thread R. David Murray
R. David Murray added the comment: And that update causes failures in test_xmlrpc. -- nosy: +r.david.murray ___ Python tracker ___ ___

[issue6723] csv.writer: example does not work

2009-08-18 Thread Nicolas Goutte
New submission from Nicolas Goutte : In the documentation for csv.writer, the example spamWriter = csv.writer(open('eggs.csv', 'w'), delimiter=' ', quotechar='|', quoting=QUOTE_MINIMAL) does not work, as Python complains about "SyntaxError: invalid syntax", as QUOTE_MINIMAL is not a global identi

Re: [issue3566] httplib persistent connections violate MUST in RFC2616 sec 8.1.4.

2009-08-18 Thread Jeremy Hylton
Not that we've removed the try one more time branch of the code, because it was causing other problems. Jeremy On Sun, Aug 16, 2009 at 6:24 PM, Gregory P. Smith wrote: > > Gregory P. Smith added the comment: > > btw, when using async io (poll, select, etc) I -think- your socket will > see a read

[issue6722] collections.namedtuple: confusing example

2009-08-18 Thread Alexey Shamrin
New submission from Alexey Shamrin : Maybe it's just me, but it took me several attempts to understand namedtuple example in the documentation [1]. The problem is that the first example uses verbose=True. It's very unusual to get Python source as the output in Python shell. At first I thought th

[issue6648] codecs documentation does not mention surrogateescape

2009-08-18 Thread Alexey Shamrin
Alexey Shamrin added the comment: Georg, it would also be nice to give a link to 'surrogateescape' information in os module [1]. Yes, you gave a link to PEP 383, but PEP harder to follow and more lengthy. [1]: http://docs.python.org/3.1/library/os.html#file-names-command-line-arguments-and-envi