[issue6958] Add Python command line flags to configure logging

2011-02-04 Thread Éric Araujo
Éric Araujo added the comment: I think Antoine’s envvar idea was a good one, similar to PYTHONWARNINGS. -- nosy: +eric.araujo ___ Python tracker ___ _

[issue11125] csv documentation should not use open() without close()

2011-02-04 Thread Éric Araujo
Éric Araujo added the comment: Agreed. I have to take some time to update my patch on the other bug. Hope you won’t mind me closing this one as duplicate. -- nosy: +eric.araujo resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Use with sta

[issue11126] Wave.py does not always write proper length in header

2011-02-04 Thread jtidman
New submission from jtidman : wave.py does not always honor the sampwidth setting, especially on little endian machines. If sampwidth is not one and big_endian is not set, then datawritten will not be muliplied by sampwidth, causing the header to be incorrect, and the file to appear to contai

[issue9723] Add shlex.quote

2011-02-04 Thread Éric Araujo
Éric Araujo added the comment: A note from Ian Bicking in http://mail.python.org/pipermail/stdlib-sig/2010-May/000948.html: > I've had to do this sort of thing for similar reasons, like calling remote > ssh commands, where a shell command is embedded in a positional argument. I > implemented

[issue11122] bdist_rpm fails

2011-02-04 Thread Éric Araujo
Éric Araujo added the comment: This is a gray area between bugfix and bahavior change forbidden by the feature freeze. Would it be okay for you to add a note in the docs and close this report? -- versions: +Python 3.1, Python 3.2, Python 3.3 ___ P

[issue11122] bdist_rpm fails

2011-02-04 Thread Éric Araujo
Éric Araujo added the comment: > Would it be okay for you to add a note in the docs and close this report? I meant to ask whether you would agree with that outcome, not that you should do the work (you’re welcome to provide a patch if you want to, but that’s not required). -- __

[issue9504] signal.signal/signal.alarm not working as expected

2011-02-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: It seems that my patch for issue10956 also fixes this issue (although it doesn't try to fix FileIO). It also has tests and fixes read() as well as write(). I'm sorry for not noticing that the two issues were so similar. Suggest closing this issue as duplicate

[issue10956] file.write and file.read don't handle EINTR

2011-02-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: I hadn't noticed that issue9504 is similar. The patch there does less things, although it also touches FileIO.readall(). -- ___ Python tracker ___

[issue11077] Tkinter is not thread safe

2011-02-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: 'Thread' is not found in the somewhat skimpy tkinter doc. Given the general state of Python with threads, I think it reasonable to take 'not thread-safe' as the default, making this a feature request. In any case, the point is moot until there is a tested fix

[issue11085] expose _abcoll as collections.abc

2011-02-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: However done, I would prefer separation also. -- nosy: +terry.reedy ___ Python tracker ___ ___ Pyth

[issue9504] signal.signal/signal.alarm not working as expected

2011-02-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Sorry, bad analysis. The patch in issue10956 only seemed to work because my system is too fast and "find /" in the script returned in less than 5 seconds. Replacing it with "yes" shows that the two issued are actually independent. -- resolution: dupli

[issue10956] file.write and file.read don't handle EINTR

2011-02-04 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> pitrou nosy: +neologix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue11085] expose _abcoll as collections.abc

2011-02-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Regarding the implementation, knowing your reluctance to turn modules > into packages, I guess you’re talking about exposing collections.abc in > a similar manner to os.path, which is fine IMO. That makes things confusing: >>> import os.path >>> os.path.__n

[issue7108] test_commands.py failing on OS X 10.5.7 due to '@' in ls output

2011-02-04 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11096] Multiple turtle tracers

2011-02-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: 2.6 is only open for security fixes. In 3.x "The methods Turtle.tracer(), Turtle.window_width() and Turtle.window_height() have been eliminated. Methods with these names and functionality are now available only as methods of Screen." So it seems that perhaps

[issue1252236] Simplying Tkinter's event loop

2011-02-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: See 11077 for motivation for reopening. -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-b

[issue11103] Python 3.2 installer doesn't register file extensions on Windows 7

2011-02-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: On my winxp system, 'open' opens with notepad, perhaps because I set that several years ago. I would like the installer to change that (and not change other stuff that it does change ;-). The 'open with' submenu does include idle. -- nosy: +loewis, t

[issue11085] expose _abcoll as collections.abc

2011-02-04 Thread Éric Araujo
Éric Araujo added the comment: Okay, I plead guilty of premature implementation talk. The clean solution is just moving collections.py to collections/__init__.py and _abcoll.py to collections/abc.py, but I will defer to Raymond here. -- ___ Python

[issue11116] mailbox and email errors

2011-02-04 Thread R. David Murray
R. David Murray added the comment: Again, can you provide example input data and a short program that demonstrates the problem? There's nothing I can reproduce in your report/question. As far as I noticed, the caught exceptions all occur at places where no output has yet been done to the m

[issue7074] Turtle module crashes python

2011-02-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: This is not a duplicate because this issue is about the stdlib turtle module doing something wrong and needing to be fixed. Also, this issue does not involve threads, at least none that I starting. "It is not safe to call graphic primitives in event callbacks

[issue11077] Tkinter is not thread safe

2011-02-04 Thread Christoph Gohlke
Changes by Christoph Gohlke : -- nosy: +cgohlke ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue11109] socketserver.ForkingMixIn leaves zombies

2011-02-04 Thread Justin
Justin added the comment: I guess I didn't really explain the issue much. The problem is that if the server receives say, 10 requests at once, and then forks a process for each, after those processes finish they will sit as zombies until process_request() is called again, which calls collect_

[issue11119] Passing a socket to a process (multiprocessing module)

2011-02-04 Thread R. David Murray
Changes by R. David Murray : -- components: +Library (Lib) -None nosy: +asksol, jnoller type: crash -> behavior ___ Python tracker ___ ___

[issue9364] some problems with the documentation of pydoc

2011-02-04 Thread Eli Bendersky
Eli Bendersky added the comment: Éric - your suggestions look good to me. The correspondence with Terry was on July 16th, 2010 - maybe he can remember which thread in pydev it was exactly. -- ___ Python tracker

[issue10911] cgi: add more tests

2011-02-04 Thread Pierre Quentel
Pierre Quentel added the comment: I opened issue #11066 for the code refactoring -- ___ Python tracker ___ ___ Python-bugs-list maili

<    1   2