[issue814253] Grouprefs in lookbehind assertions

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 2.7 -Python 2.3, Python 2.4, Python 2.5 ___ Python tracker ___ ___ Python-bugs-list

[issue2944] asyncore doesn't handle connection refused correctly

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 2.7 -Python 2.5, Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue9444] argparse does not honor prefix_chars when adding default options

2010-08-03 Thread Doug Hellmann
Doug Hellmann added the comment: Thanks, everyone! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue9458] xml.etree.ElementTree.ElementTree.write(): encoding handling problems

2010-08-03 Thread Uli Kunitz
Uli Kunitz added the comment: Here is a patch that handles all 4 examples in the last comment correctly and survives the Python test suite on Linux (Ubuntu 9.04 x86-64). -- keywords: +patch Added file: http://bugs.python.org/file18350/ElementTree.patch

[issue8447] buildbot: test_httpservers failure (No module named operator)

2010-08-03 Thread Mark Dickinson
Mark Dickinson added the comment: I can reproduce this locally; it appears to have something to do with distutils and symlinks: If I do: ln -s /Users/dickinsm/python/svn/release26-maint/python.exe /Users/dickinsm/Documents/python.exe and then try to execute the symlink, I get: newton:~ d

[issue9495] argparse unittest tracebacks are confusing if an error is raised when not expected

2010-08-03 Thread R. David Murray
R. David Murray added the comment: See issue 6210. The attached patch uses the workaround from that issue. -- keywords: +patch Added file: http://bugs.python.org/file18351/argparse_test_raise.patch ___ Python tracker

[issue5578] unqualified exec in class body

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Is there any currently relevant discrepancy between doc and behavior claimed in this issue. As far as I can see, the 2.7 docs for exec and def make no mention of exec being prohibited in def, let alone class statements. Ditto for exec() in 3.x. Anything earli

[issue3169] email/header.py doesn't handle Base64 headers that have been insufficiently padded.

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: In the absence of a specific doc citation saying otherwise, this strikes me as a feature request to be considered for the 3.2 email update. Patch includes a test. -- nosy: +r.david.murray, tjreedy stage: -> patch review type: behavior -> feature requ

[issue6210] Exception Chaining missing method for suppressing context

2010-08-03 Thread Raghuram Devarakonda
Changes by Raghuram Devarakonda : -- nosy: +draghuram ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue5710] ctypes should return composite types from callbacks

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed type: -> feature request versions: +Python 3.2 -Python 2.5, Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker

[issue5717] os.defpath includes unix /bin on windows

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: 3.1.2 still has defpath and gives same erroneous result Patch is a trivial revision of one line in os.py. -- keywords: +easy -patch nosy: +tjreedy stage: -> commit review versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 __

[issue1540386] SocketServer.ForkingMixIn.collect_children() waits on pid 0

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue5504] ctypes should work with systems where mmap can't be PROT_WRITE and PROT_EXEC

2010-08-03 Thread Thomas Heller
Thomas Heller added the comment: The libffi library included with Python has been updated in the meantime, so most of the issue5504-linux.patch is unneeded now. Here is a new patch, issue5504-py27.patch, against the current release27-maint branch. Seems it is exactly the same as the fedora p

[issue5824] SocketServer.DatagramRequestHandler Broken under Linux

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Same comment is in 3.1.2 socketserver.py. Jim, can you at least suggest a specific text change at a specific place for the doc? That would likely be applied. -- assignee: -> d...@python components: +Documentation -Library (Lib) nosy: +d...@python, tj

[issue3169] email/header.py doesn't handle Base64 headers that have been insufficiently padded.

2010-08-03 Thread Jason Williams
Jason Williams added the comment: I'd argue that since the recipient has little control over incorrect header padding, the traditional approach with e-mail is to fix-up bad encoding...and this ia bug. -- ___ Python tracker

[issue3169] email/header.py doesn't handle Base64 headers that have been insufficiently padded.

2010-08-03 Thread R. David Murray
R. David Murray added the comment: The quote of Postel's Law is in the RFCs, actually. So I think we can choose to consider this a bug. There is a effort/benefit tradeoff when deciding to handle dirty data, but this one is simple enough. Unless someone can think of a reason why the slight

[issue3467] sqlite3 path is hard coded in setup.py

2010-08-03 Thread Martin v . Löwis
Martin v. Löwis added the comment: Modules/Setup does not exist in the source repository, hence the link can't work (and never did). It's a file generated during the build. This is an instance of a repeated request where people want Python to find their libraries in all kinds of places, eithe

[issue1684] CGIHTTPServer does not chdir prior to executing the CGI script

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: In the absence of the local docs claiming that cgiHTTPServer changes directory, this is a feature request that could only go into 3.2 or later. If I understand http.server.py, the successor does use subprocess, so G.P.Smith's suggestion in msg87067 might be i

[issue9498] stdtypes.rst should refer to sys.float_info

2010-08-03 Thread Yitz Gale
New submission from Yitz Gale : Library docs section 5.4 "Numeric Types" states about floating point numbers that "all bets on their precision are off unless you happen to know the machine you are working with." That has not been true since Python 2.6, when sys.float_info was added. There sho

[issue9498] stdtypes.rst should refer to sys.float_info

2010-08-03 Thread Georg Brandl
Georg Brandl added the comment: Mark, does this look ok to you? -- assignee: d...@python -> mark.dickinson nosy: +georg.brandl, mark.dickinson ___ Python tracker ___

[issue7668] test_httpservers fails with non-ascii path

2010-08-03 Thread Mark Dickinson
Mark Dickinson added the comment: It looks like r79297 (or rather, its merge to release26-maint and release31-maint) caused test_httpservers to start failing on OS X. -- nosy: +mark.dickinson ___ Python tracker __

[issue2178] Problems with Belarusian Latin locale

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Is this still a problem in 2.7 or 3.x? -- nosy: +tjreedy versions: +Python 2.7 -Python 2.5 ___ Python tracker ___ __

[issue9498] stdtypes.rst should refer to sys.float_info

2010-08-03 Thread Mark Dickinson
Mark Dickinson added the comment: +1 for the reference to sys.float_info. I'd prefer to keep the mention of C doubles, though. You have to know what you're looking for to get this information from looking at sys.float_info. -- ___ Python tracker

[issue3338] cPickle segfault with deep recursion

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue8447] buildbot: test_httpservers failure (No module named operator)

2010-08-03 Thread Mark Dickinson
Mark Dickinson added the comment: It looks as though the failure is due to r79297: the fix for issue 7668 introduced symlinks for the python executable, and these symlinks are causing the 'import site' to blow up. -- ___ Python tracker

[issue6069] casting error from ctypes array to structure

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: WinXP,32bit,3.1.2 result Data0 is 0x2AAA, Data1 is 0x for uint Data0 is 0x2AAA, Data1 is 0x for ulonglong Data1 failed but I do not understand ctypes enough to verify that test is correct. -- nosy: +tjreedy stage: -> unit test

[issue6083] Reference counting bug in setrlimit

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker ___ ___ Python-

[issue3425] posixmodule.c always using res = utime(path, NULL)

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker ___ ___ Python-bugs-list ma

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-08-03 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I am removing this as a release blocker given all of Ezio's great work to get the test suite clean with -3. I will leave it up to him to actually close the issue once the work is complete. It no longer needs to block 2.6.6. -- priority: release blo

[issue6140] configure error: shadow.h: present but cannot be compiled

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: reopen if you have a problem with 2.7 or 3.2. -- nosy: +tjreedy resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue6092] Changed Shortcuts don't show up in menu

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> needs patch type: -> behavior versions: +Python 2.7, Python 3.2 -Python 2.5, Python 3.1 ___ Python tracker ___ _

[issue8433] buildbot: test_curses failure, getmouse() returned ERR

2010-08-03 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: This also affects 2.6 but I've only been able to verify it on Debian squeeze and Ubuntu maverick, both of which are unreleased. On Ubuntu lucid (stable), this error does not occur. I'm testing Debian stable now... -- nosy: +barry _

[issue6092] Changed Shortcuts don't show up in menu

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: I will try to look at this sometime when I get to IDLE issues. -- nosy: +tjreedy ___ Python tracker ___

[issue8447] buildbot: test_httpservers failure (No module named operator)

2010-08-03 Thread Mark Dickinson
Mark Dickinson added the comment: Here's a patch (against the release26-maint branch) which fixes the test failures for me. I wouldn't feel happy about committing this without Tarek looking at it first, though. Tarek? -- keywords: +patch Added file: http://bugs.python.org/file18354/

[issue8433] buildbot: test_curses failure, getmouse() returned ERR

2010-08-03 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue9498] stdtypes.rst should refer to sys.float_info

2010-08-03 Thread Yitz Gale
Yitz Gale added the comment: It's not necessarily true for other than CPython, and it could theoretically not be true someday on some weird platform even for CPython. How about just adding this: "Floating point numbers are usually implemented using double in C." Then at least we're not commi

[issue9498] stdtypes.rst should refer to sys.float_info

2010-08-03 Thread Mark Dickinson
Mark Dickinson added the comment: > it could theoretically not be true someday on some weird platform even for > CPython. Granted. Though it would be quite a major change: the 'double' part is heavily hard-coded throughout. > How about just adding this: "Floating point numbers are usually >

[issue6165] strftime incorrectly processes DST flag when passed time touples

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: It is not clear to me what you think is a bug. Please give actual output, what you expect (in full), and reference to doc. I cannot test in 3.1 as that format is no longer legal. -- components: +Library (Lib) -Extension Modules nosy: +tjreedy status: o

[issue6143] IDLE - an extension to clear the shell window

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- type: behavior -> feature request versions: -Python 2.5, Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker ___

[issue3062] Turtle speed() function has no effect under Mac OS X

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +Library (Lib) stage: -> needs patch versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5, Python 2.6, Python 3.0 ___ Python tracker

[issue3757] threading.local doesn't support cyclic garbage collecting

2010-08-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: This is much more complicated than I thought. The threadstate dict holds a strong reference to each local dict, and therefore the GC will refuse to collect the local dict when there's a cycle. (when there's no cycle, the local dict is cleared manually by the l

[issue3757] threading.local doesn't support cyclic garbage collecting

2010-08-03 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- versions: -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-08-03 Thread Ezio Melotti
Ezio Melotti added the comment: I fixed the deprecation warnings on 2.6 in r83519, r83576-r83579, r83620-r83622, r83627-r83632, r83635, r83637-83642, r83652-83656, r83658, r83687. Now the test suite should pass with and without -3 -Wd with no errors and no warnings (except an import warning o

[issue4949] Constness in PyErr_NewException

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Martin, do you agree with the premise of this issue? The patch consists of adding 'const' in about 6 places in code and corresponding 6 places in capi doc. -- keywords: +easy -patch nosy: +loewis, tjreedy versions: +Python 3.1, Python 3.2 -Python 2.5,

[issue6380] Deadlock during the "import" in the fork()'ed child process if fork() happened while import_lock was held

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> needs patch versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.4, Python 2.5, Python 2.6 ___ Python tracker ___ ___

[issue8447] buildbot: test_httpservers failure (No module named operator)

2010-08-03 Thread Mark Dickinson
Mark Dickinson added the comment: Fixed in r83688 for release26-maint. The fix still needs to be ported to release31-maint. -- versions: -Python 2.6 ___ Python tracker ___ ___

[issue6443] _winreg.QueryValueEx confused on double null terminated strings

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> wont fix status: open -> closed type: behavior -> feature request ___ Python tracker ___ ___

[issue6558] #ifdef linux is incorrect; should be #ifdef __linux__ (preferred standard)

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> out of date status: open -> closed superseder: -> with_stdc89 ___ Python tracker ___ __

[issue8433] buildbot: test_curses failure, getmouse() returned ERR

2010-08-03 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Confirmed on Ubuntu: Lucid, libncurses5 5.7+20090803-2ubuntu3 passes Maverick, libncurses5 5.7+20100626-0ubuntu1 fails -- ___ Python tracker _

[issue3493] No Backslash (\) in IDLE 1.2.2

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> ronaldoussoren components: +Macintosh nosy: +ronaldoussoren type: -> behavior versions: +Python 2.7 -Python 2.5 ___ Python tracker __

[issue6580] No deprecation warning for list comprehension leak conflict

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Not an issue in 3.x. -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Py

[issue9498] stdtypes.rst should refer to sys.float_info

2010-08-03 Thread Yitz Gale
Changes by Yitz Gale : Added file: http://bugs.python.org/file18355/stdtypes_float_info_2.patch ___ Python tracker ___ ___ Python-bugs-list mai

[issue6636] Non-existant directory in sys.path prevents further imports

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8447] buildbot: test_httpservers failure (No module named operator)

2010-08-03 Thread Mark Dickinson
Mark Dickinson added the comment: Fix ported to release31-maint in r83689. Thanks Tarek for reviewing (on IRC). -- resolution: -> fixed status: open -> closed ___ Python tracker __

[issue6634] sys.exit() called from threads other than the main one: undocumented behaviour

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Please suggest a specific doc change at a specific location. IE, how *should* they read, not just what is wrong. -- assignee: georg.brandl -> d...@python nosy: +d...@python, tjreedy -georg.brandl stage: -> needs patch versions: +Python 3.2 -Python 2.4,

[issue3158] Doctest fails to find doctests in extension modules

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.5, Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9413] asyncore.close_all() should call x.handle_close() instead of x.close()

2010-08-03 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: No, it shouldn't. handle_close() is more like a callback method called by asyncore itself when the connection is about to be closed "cleanly", and it's not supposed to be called directly by the user (see for example how recv() and send() methods are imple

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

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker ___ ___ Python-bugs-list ma

[issue6720] multiprocessing logging

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: May this be closed as out-of-date? -- nosy: +tjreedy status: open -> pending ___ Python tracker ___

[issue6720] multiprocessing logging

2010-08-03 Thread Benjamin Liles
Benjamin Liles added the comment: I don't think it has been fixed yet. -- status: pending -> open ___ Python tracker ___ ___ Python-bu

[issue2651] Strings passed to KeyError do not round trip

2010-08-03 Thread Łukasz Langa
Łukasz Langa added the comment: Patch for py3k ready. Includes patches for the stdlib where tests actually failed. -- Added file: http://bugs.python.org/file18356/issue2651.diff ___ Python tracker

[issue1777398] IDLE Freezes After Running Scripts

2010-08-03 Thread Ross Peoples
Ross Peoples added the comment: It is very simple to reproduce the problem: Ubuntu + wxPython + IDLE = crash. If you don't use Ubuntu, you could boot it from a Live CD and reproduce the problem (if it still exists) in about 10 minutes. I don't develop in Python anymore otherwise I would test

[issue2204] document ConfigParser behaviour when a file has same section multiple times

2010-08-03 Thread Łukasz Langa
Łukasz Langa added the comment: This bug is superseded by #9452 where the patch includes a `strict=` argument to __init__ which enables checking for section duplicates when reading from a single source. -- ___ Python tracker

[issue6706] asyncore's accept() is broken

2010-08-03 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Shame on me, it seems I totally forgot to attach the patch. Unfortunately the patch went lost but I'm going to try to rewrite it. As for tests, ECONN and EAGAIN error conditions are hardly reproducible unless you're using nmap. I'm assigning this to me for n

[issue9421] configparser.ConfigParser's getint, getboolean and getfloat don't accept `vars`

2010-08-03 Thread Łukasz Langa
Changes by Łukasz Langa : -- nosy: +fdrake ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue2204] document ConfigParser behaviour when a file has same section multiple times

2010-08-03 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> duplicate stage: needs patch -> committed/rejected status: open -> closed superseder: -> configparser support for reading from strings and dictionaries ___ Python tracker

[issue6798] Argument for sys.settrace() callbacks documented incorrectly

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Eli, any comment on this? -- nosy: +eli.bendersky, tjreedy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker

[issue6739] IDLE window won't start or show up after assgining new key in options v2.5.2 and 3.1.1

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.5, Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6786] readline and zero based indexing

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: I wonder if changing the base now would cause problems. Is readline only used interactively? -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker ___

[issue4033] python search path - .pth recursion

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker ___ ___ Python-bugs-list ma

[issue5114] 2.5.4.3 and 2.6.2 / test_threading hangs on Solaris

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Still an issue in 2.7 or 3.1/2? -- nosy: +tjreedy title: 2.5.4.3 and 2.6.2 / test_threading hangs -> 2.5.4.3 and 2.6.2 / test_threading hangs on Solaris versions: +Python 2.7 -Python 2.5, Python 2.6 ___ Python track

[issue6983] Add specific get_platform() for freebsd

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.4, Python 2.5, Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue6786] readline and zero based indexing

2010-08-03 Thread Mark Dickinson
Mark Dickinson added the comment: Changing to feature request: I'm fairly certain that this isn't a bug (i.e., it's working as designed). It's possible to use the readline module non-interactively, so it's probably a safe bet that there's at least some code out there that does so. I'd vote

[issue2944] asyncore doesn't handle connection refused correctly

2010-08-03 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Assigning this to me. The patch looks correct, it only needs tests assuming it is possible to write a reliable test for this. -- assignee: -> giampaolo.rodola ___ Python tracker

[issue6988] shlex.split() converts unicode input to UCS-4 output

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: The discussion pretty much says this was a feature request, which is obsolete for 2.x. Not an issue for 3.x: >>> import shlex >>> shlex.split('Hello, World!' ) ['Hello,', 'World!'] -- nosy: +tjreedy resolution: -> out of date status: open -> closed ty

[issue9499] Python C/API Execution namespace undocumented. (patch included)

2010-08-03 Thread Campbell Barton
New submission from Campbell Barton : Some parts of the python api expect __main__ module dictionary to be the namespace when executing a script, this is true when running a python script from the python binary but NOT true when running a compiled script from the C/API which can lead to bugs w

[issue9500] urllib2: Content-Encoding

2010-08-03 Thread guest
New submission from guest : urllib2 doesn't support any real-world Content-Encoding scheme. "gzip" and "deflate" are standard compression schemes for HTTP and expected to be implemented by all clients. None of the default urllib2 handlers implements it. Common workarounds are available on the

[issue5931] Python runtime name hardcoded in wsgiref.simple_server

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: In the absence of doc claiming the requested behavior, this is a feature request. In principle, it seems sensible, but I do not use the module. Support from more than one person, perhaps from python-list or web-sig list (not sure of name) would be good. Asid

[issue8433] buildbot: test_curses failure, getmouse() returned ERR

2010-08-03 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Confirmed on Debian squeeze, ncurses 5.7+20100313-2 failed lenny, ncurses 5.7+20081213-1 succeeds So clearly something about the curses module is not compatible with the newer versions of ncurses. -- ___ Python t

[issue7013] Httplib read routine is not tolerant to not well-formed chunked http responses.

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: When appropriate, patches should have new tests also. Patch looks simple, but I cannot review correctness or whether this could have a negative effect, like stopping too soon. This seems to be a rare need. -- nosy: +tjreedy stage: -> unit test needed

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

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 2.7, Python 3.2 -Python 2.5 ___ Python tracker ___ ___ Pyt

[issue9500] urllib2: Content-Encoding

2010-08-03 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue7013] Httplib read routine is not tolerant to not well-formed chunked http responses.

2010-08-03 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue5931] Python runtime name hardcoded in wsgiref.simple_server

2010-08-03 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue3210] subprocess.Popen does not release process handles if process cannot be started

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Same problem in 3.1.2 -- nosy: +tjreedy stage: -> unit test needed versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker ___

[issue8280] urllib2 passes fragment identifier to server

2010-08-03 Thread David Stanek
David Stanek added the comment: Added a patch to fix this behavior. -- keywords: +patch nosy: +dstanek Added file: http://bugs.python.org/file18358/fragment.patch ___ Python tracker

[issue9501] Logging shutdown regressions with weakrefs

2010-08-03 Thread Martin
New submission from Martin : With the logging change to using weakrefs for handler cleanup done by the follow-on patch in issue 6615 exceptions may now be thrown during module teardown. There are two distinct problem cases: 1) The new `_removeHandlerRef` function may run during teardown (when

[issue1303434] Please include pdb with windows distribution

2010-08-03 Thread James Lee
James Lee added the comment: Attached is a simple patch against msi.py from the py3k branch. It generates a .zip file containing all the PDB files (minus a select few) in the PCbuild directory. I imagine most people only want python31.pdb, but it is very frustrating when you have a crash with

[issue6412] Titlecase as defined in Unicode Case Mappings not followed

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: 3.1.2 >>> 'H\u0301ngh'.istitle() False >>> 'H\u0301ngh'=='H\u0301ngh'.title() False >>> 'H\u0301ngh'.title() 'H́Ngh' which suggest that initial False is correct, not a bug. In any case, behavior is changed. Is new behavior wrong? I disagrees with proposed new

[issue9501] Logging shutdown regressions with weakrefs

2010-08-03 Thread Martin
Martin added the comment: This could be fixed in a similar way to was done for the shutdown function in r51206 (which incidentally seems both unnecessary and incomplete - the function runs atexit which precedes module teardown, but also uses the raiseExceptions module global which is not rebo

[issue9501] Logging shutdown regressions with weakrefs

2010-08-03 Thread Martin
Martin added the comment: For the second case, just reverting the change to Handler.close may be best, I don't see why the module should be keeping responsibility for flushing and closing handlers it no longer has a strong reference to. -- Added file: http://bugs.python.org/file18361/

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Roumen, were you suggesting that this is a user rather than build issue, or just suggesting a workaround until fixed? -- nosy: +tjreedy versions: -Python 2.5, Python 2.6, Python 3.0 ___ Python tracker

[issue7668] test_httpservers fails with non-ascii path

2010-08-03 Thread Florent Xicluna
Florent Xicluna added the comment: Confirmed on 2.6 and 3.1 PPC Tiger and PPC Leopard buildbots. Example (on PPC Leopard 2.6): test_httpservers 'import site' failed; use -v for traceback [16390 refs] 'import site' failed; use -v for traceback [16390 refs] 'import site' failed; use -v for traceb

[issue1488934] file.write + closed pipe = no error

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker ___

[issue9452] configparser support for reading from strings and dictionaries

2010-08-03 Thread Łukasz Langa
Łukasz Langa added the comment: Rietveld review link: http://codereview.appspot.com/1924042/edit -- ___ Python tracker ___ ___ Python-

[issue8280] urllib2 passes fragment identifier to server

2010-08-03 Thread David Stanek
David Stanek added the comment: I have also uploaded my patch to http://codereview.appspot.com/1918042 so easier viewing. -- ___ Python tracker ___ _

[issue2651] Strings passed to KeyError do not round trip

2010-08-03 Thread Éric Araujo
Éric Araujo added the comment: Looks like you didn’t narrow your diff command, since unrelated changes to configparser appear there. svn diff file1 path/file2 :) -- nosy: +merwok ___ Python tracker ___

[issue2377] Replace import.c with a pure Python implementation

2010-08-03 Thread Brett Cannon
Changes by Brett Cannon : -- stage: -> needs patch versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list maili

[issue588756] python should obey the FHS

2010-08-03 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue2811] doctest doesn't treat unicode literals as specified by the file declared encoding

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: In 3.1.2, where the docstring is unicode, the doctest of normalize works fine, as Karen said. I think she is right: without the encoding being explicitly passed to doctest, it cannot affect how the sub-interpreter used by doctest compiles the strings as code.

<    1   2   3   >