[issue18939] Venv docs regarding original python install

2013-09-05 Thread R. David Murray
R. David Murray added the comment: Hmm. It seems to me that that document is indeed not clear as to what is really going on. My understanding has always been that there is only one Python interpreter, but that it behaves differently when invoked through the symlink in the venv. I suppose th

[issue18940] TimedRotatingFileHandler and RotatingFileHandler fail to doRollover if a logger has delay=True and no logs in that time.

2013-09-05 Thread R. David Murray
Changes by R. David Murray : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue18941] RotatingFileHandler and TimedRotatingFileHandler do not respect delay on rollover

2013-09-05 Thread R. David Murray
Changes by R. David Murray : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue18924] Enum members are easily replaced

2013-09-05 Thread Ethan Furman
Ethan Furman added the comment: Heavy-handed would be having the metaclass turn all the enum members into read-only properties. The solution I have proposed is more like a wagging of one's finger saying, "No, no, that's not the right way!" ;) -- _

[issue18939] Venv docs regarding original python install

2013-09-05 Thread Graham Wideman
Graham Wideman added the comment: Thanks R. David for your comments. > It should also mention that the activation is per-shell-session, .. which also has implications (or lack of effect) for launching from Windows Explorer, for example. Seems like in practical use, one would need to set up a

[issue18942] _debugmallocstats() gibberish output on Windows

2013-09-05 Thread Tim Peters
New submission from Tim Peters: On Windows, _debugmallocstats() output ends with lines like this: 0 free 12-sized PyTupleObjects * zd bytes each =0 0 free 13-sized PyTupleObjects * zd bytes each =0 "zd" is senseless. Betting it's due to using a %zd f

[issue18942] _debugmallocstats() gibberish output on Windows

2013-09-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset d95cc29ea94e by Tim Peters in branch '3.3': Issue #18942: sys._debugmallocstats() output was damaged on Windows. http://hg.python.org/cpython/rev/d95cc29ea94e New changeset 43f772554872 by Tim Peters in branch 'default': Nerge 3.3 into default. http

[issue18942] _debugmallocstats() gibberish output on Windows

2013-09-05 Thread Tim Peters
Changes by Tim Peters : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue15350] {urllib,urllib.parse}.urlencode.__doc__ is unclear

2013-09-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 975d1e180689 by Senthil Kumaran in branch 'default': merge from 3.3 http://hg.python.org/cpython/rev/975d1e180689 -- nosy: +python-dev ___ Python tracker _

[issue15350] {urllib,urllib.parse}.urlencode.__doc__ is unclear

2013-09-05 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in 3.3 and cpython. 3.2 is security fix mode and patches are not backported. This does not apply to 2.7. Thanks for the patch. -- resolution: -> fixed status: open -> closed versions: -Python 2.7, Python 3.2 ___

[issue18808] Thread.join returns before PyThreadState is destroyed

2013-09-05 Thread Antoine Pitrou
Antoine Pitrou added the comment: Le vendredi 06 septembre 2013 à 00:19 +, Tim Peters a écrit : > Tim Peters added the comment: > > So you're not concerned about a now-private API (which used to be > advertised), but are concerned about a user mucking with a new private > lock in an exceedin

[issue18934] multiprocessing: use selectors module

2013-09-05 Thread Charles-François Natali
Charles-François Natali added the comment: > Richard Oudkerk added the comment: > > I remember wondering at one time why EPOLLNVAL did not exist, and realizing > that closed fds are just silently unregistered by epoll(). Exactly. > I guess the issue is that some of the selectors indicate a bad

<    1   2