[issue13932] If some test module fails to import another module unittest reports a very misleading message

2012-02-04 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13932 ___ ___ Python-bugs-list

[issue13929] fnmatch to support escape characters

2012-02-04 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: [fnmatch] explicitly disclaims the feature you request: Be aware there is no way to quote meta-characters. This reads like a warning to me, i.e. a potential future feature, not a design choice. What you are asking for in something in

[issue13935] Tarfile - Fixed GNU tar header base-256 handling

2012-02-04 Thread Lars Gustäbel
Lars Gustäbel l...@gustaebel.de added the comment: This has been fixed (issue13158, http://hg.python.org/cpython/rev/341008eab87d). Thanks anyway for the report. -- resolution: - duplicate stage: - committed/rejected status: open - closed ___

[issue7827] recv_into() argument 1 must be pinned buffer, not bytearray

2012-02-04 Thread Mark Nottingham
Mark Nottingham m...@mnot.net added the comment: Seems to be fixed in 2.7, although I'm not sure when exactly : Python 2.7.2 (default, Oct 21 2011, 22:13:39) [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin Type help, copyright, credits or license for more

[issue13923] new formatter for argparse

2012-02-04 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: (This reminds me of another request; would you mind searching the other argparse bugs to see if this is a duplicate? Thanks) -- nosy: +bethard, eric.araujo versions: +Python 3.3 ___ Python tracker

[issue13921] sqlite3: OptimizedUnicode obsolete in Py3k

2012-02-04 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I’m not sure the doc note is useful, but didn’t code search to confirm it. Also, 3.2 may be out of bounds for this cleanup (I don’t know the rules for what can be committed in what branches these days). -- nosy: +eric.araujo title:

[issue13915] Update Tutorial 6.1.3 for PEP 3145

2012-02-04 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: docs@python - eric.araujo nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13915 ___

[issue13913] utf-8 or utf8 or utf-8 (codec display name inconsistency)

2012-02-04 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- priority: normal - low type: behavior - enhancement versions: -Python 2.7, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13913 ___

[issue7827] recv_into() argument 1 must be pinned buffer, not bytearray

2012-02-04 Thread Mark Nottingham
Mark Nottingham m...@mnot.net added the comment: From the release notes, perhaps it was #8104. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7827 ___

[issue13896] Make shelf instances work with 'with' as context managers

2012-02-04 Thread Filip Gruszczyński
Filip Gruszczyński grusz...@gmail.com added the comment: closing was solving my problem, but I'll be happy on working on this patch, if you think it's useful after all. I don't think the stage should be test needed, since the patch has tests (I know the drill here ;-)). --

[issue13929] fnmatch to support escape characters

2012-02-04 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: If indeed fnmatch does not match current shells, then I would agree that it should. It looks to me so easy to add that I though it must be a deliberate decision to exclude. In translate: ... elif c == '\': if i n-1:

[issue13896] Make shelf instances work with 'with' as context managers

2012-02-04 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- stage: test needed - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13896 ___ ___

[issue13937] multiprocessing.ThreadPool.join() blocks indefinitely.

2012-02-04 Thread Charles-François Natali
Charles-François Natali neolo...@free.fr added the comment: It's a duplicate of issue #12157. -- nosy: +neologix resolution: - duplicate stage: - committed/rejected status: open - closed superseder: - join method of multiprocessing Pool object hangs if iterable argument of pool.map

[issue13928] bug in asyncore.dispatcher_with_send

2012-02-04 Thread adamhj
adamhj ada...@gmail.com added the comment: A non connected socket must be writable in order to connect. i can't understand this, does it means that one may use self.connect() in handle_write()? and in fact i found something seems opposite on this page:

[issue13700] imaplib.IMAP4.authenticate authobject fails with PLAIN mechanism

2012-02-04 Thread Johannes Bauer
Johannes Bauer dfnsonfsdu...@gmx.de added the comment: Issue also affects Python3.1. Hunk succeeds against 3.1 imaplib.py and works for me. -- nosy: +joebauer versions: +Python 3.1 ___ Python tracker rep...@bugs.python.org

[issue13926] pydoc - stall when requesting a list of available modules in the online help utility

2012-02-04 Thread Jeroen
Jeroen dario...@gmail.com added the comment: Ned, I've run the help() from the command-line as requested and the result was: Python 2.7.2+ (default, Oct 4 2011, 20:06:09) [GCC 4.6.1] on linux2 Type help, copyright, credits or license for more information. help() Welcome to Python 2.7! This

[issue13939] excessive cpu usage

2012-02-04 Thread brian baker
New submission from brian baker brian.m.ba...@gmail.com: python causing one of my dual core cpu's to run @ 100% running ubuntu 12.04 with gnome-shell 3.3.4 -- components: None messages: 152610 nosy: brian-m-baker priority: normal severity: normal status: open title: excessive cpu usage

[issue13939] excessive cpu usage

2012-02-04 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com added the comment: Hello, i'm sorry but this is not the right place for this report. Please refer to ubuntu or gnome user support forum for help. Sandro -- nosy: +sandro.tosi resolution: - invalid stage: - committed/rejected status: open - closed

[issue13939] excessive cpu usage

2012-02-04 Thread Sandro Tosi
Changes by Sandro Tosi sandro.t...@gmail.com: -- components: -None versions: -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13939 ___

[issue12157] join method of multiprocessing Pool object hangs if iterable argument of pool.map is empty

2012-02-04 Thread Ross Lagerwall
Changes by Ross Lagerwall rosslagerw...@gmail.com: -- nosy: +rosslagerwall ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12157 ___ ___

[issue13940] imaplib: Mailbox names are not quoted

2012-02-04 Thread Johannes Bauer
New submission from Johannes Bauer dfnsonfsdu...@gmx.de: imaplib does not qupote mailbox names when it's sending it's query to the server in response to a status request, for example. This will lead to very strange errors if mailboxes are accessed which contain spaces: i.e.

[issue13923] new formatter for argparse

2012-02-04 Thread Warren Turkal
Warren Turkal w...@penguintechs.org added the comment: [1] sounds somewhere related and more complicated than what I was asking for. I would think that it would need to wrap bulleted lists in a sane way in addition to what I asked for here. Also, [1] seems to apply to the option help text,

[issue13941] Your Python may not be configured for Tk

2012-02-04 Thread Manish Mishra
New submission from Manish Mishra yogm...@rediffmail.com: I am trying to install Python3.2.2 on Ubuntu 11.10. I downloaded the tar file. Then as per readme file did ./configure , make, make test, and then sudo make install. When “make” command is issued following appears along with many

[issue13893] Make CGIHTTPServer capable of redirects (and status other than 200)

2012-02-04 Thread Giovanni Funchal
Giovanni Funchal gafunc...@gmail.com added the comment: @Glenn Linderman, can you please share your changes? You can upload a patch. -- versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2, Python 3.4 ___ Python tracker rep...@bugs.python.org

[issue13893] Make CGIHTTPServer capable of redirects (and status other than 200)

2012-02-04 Thread Giovanni Funchal
Giovanni Funchal gafunc...@gmail.com added the comment: @Éric Araujo, yes this is a duplicate of #10487. I now think this should be marked as bug instead of enhancement. The documentation warns about this behavior but it is documenting a bug. -- resolution: - duplicate

[issue8184] multiprocessing.managers will not fail if listening ocket already in use

2012-02-04 Thread Charles-François Natali
Charles-François Natali neolo...@free.fr added the comment: Well it would probably be closed when the connection object is destroyed, but the patch looks ok anyway. Let's be nice with those non refcount-based implementations out there :-) What do you think of the patch attached

[issue13928] bug in asyncore.dispatcher_with_send

2012-02-04 Thread Giampaolo Rodola'
Giampaolo Rodola' g.rod...@gmail.com added the comment: i can't understand this, does it means that one may use self.connect() in handle_write()? Nope. When handle_write() is called you are supposed to be *already* connected, hence there's no point in calling connect() again. This is

[issue13928] bug in asyncore.dispatcher_with_send

2012-02-04 Thread adamhj
adamhj ada...@gmail.com added the comment: here is a script emulating what is happened in dispatcher class when the second bug triggered. you can use either a non-exist host/port, or a high delay remote port as target(see the comments in the script) and you may use a sniffer(tcpdump/wireshark

[issue444582] Finding programs in PATH, adding shutil.which

2012-02-04 Thread Omega Weapon
Changes by Omega Weapon omegaphil+python.b...@gmail.com: -- nosy: +Omega_Weapon ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue444582 ___ ___

[issue13928] bug in asyncore.dispatcher_with_send

2012-02-04 Thread adamhj
adamhj ada...@gmail.com added the comment: ah just ignore my previous msg as i post it without seeing yours. Nope. It means that *before* showing up the socket was *not* connected. ok, i read more in the asyncore source and finally understand what do you mean by A non connected socket must be

[issue13942] ssl.wrap_socket does not work on socket.socketpair()'s

2012-02-04 Thread weary
New submission from weary bugs.pyt...@weary.nl: ssl.wrap_socket does not work on socket.socketpair()'s note, this is the same as issue 1552, but for python 2.7. Also, the supplied patch does not work (patch results in: TypeError: must be _socket.socket, not _socketobject) import ssl

[issue13942] ssl.wrap_socket does not work on socket.socketpair()'s

2012-02-04 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13942 ___ ___ Python-bugs-list

[issue8184] multiprocessing.managers will not fail if listening ocket already in use

2012-02-04 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 887d0ab5fb97 by Charles-François Natali in branch '2.7': Issue #8184: Fix a potential file descriptor leak when a http://hg.python.org/cpython/rev/887d0ab5fb97 New changeset ba1e0a1ac5b7 by Charles-François Natali

[issue13941] Your Python may not be configured for Tk

2012-02-04 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Hi, the bug tracker is not here to receive help. Please ask your questions on the python-list mailing list. This said, since you have already installed the packages python3-tk and python3, so you could as well install idle3 and use

[issue13806] Audioop decompression frames size check fix

2012-02-04 Thread Charles-François Natali
Charles-François Natali neolo...@free.fr added the comment: This broke a sparc buildbot: == FAIL: test_alaw2lin (test.test_audioop.TestAudioop) -- Traceback

[issue13878] test_sched failures on Windows buildbot

2012-02-04 Thread Charles-François Natali
Charles-François Natali neolo...@free.fr added the comment: for x in [0.05, 0.04, 0.03, 0.02, 0.01]: z = scheduler.enter(x, 1, fun, (x,)) Since the test uses relative times, if the process is preempted more than 0.01s between two calls to enter (or if the clock goes backwards), the

[issue13942] ssl.wrap_socket does not work on socket.socketpair()'s

2012-02-04 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: It's more of an enhancement than a bug (wrap_socket is not documented to work with all kinds of sockets), and 2.7 is in bugfix mode. I'd rather close this as won't fix. -- resolution: - wont fix status: open - pending

[issue13806] Audioop decompression frames size check fix

2012-02-04 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset bc6e768de2cc by Antoine Pitrou in branch '2.7': Fix failing test on big-endian machines (issue #13806). http://hg.python.org/cpython/rev/bc6e768de2cc -- ___ Python

[issue13806] Audioop decompression frames size check fix

2012-02-04 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset cfbd800af3a4 by Antoine Pitrou in branch '3.2': Fix failing test on big-endian machines (issue #13806). http://hg.python.org/cpython/rev/cfbd800af3a4 New changeset 05b40b006565 by Antoine Pitrou in branch 'default':

[issue13806] Audioop decompression frames size check fix

2012-02-04 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Will wait for the buildbot to clear. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13806 ___

[issue8418] Crash 0xc0000417 STATUS_INVALID_CRUNTIME_PARAMETER on program exit

2012-02-04 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +loewis ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8418 ___ ___ Python-bugs-list mailing

[issue13880] pydoc -k throws AssertionError: distutils has already been patched by class py2exe.Distribution at 0x0000000005987408

2012-02-04 Thread Ned Deily
Ned Deily n...@acm.org added the comment: I believe this problem has been fixed by the changes for Issue7425 which will be released in the next updates of Python 2.7 (2.7.3) and 3 (3.2.3). -- nosy: +ned.deily resolution: - duplicate stage: - committed/rejected status: open - closed

[issue2377] Replace __import__ w/ importlib.__import__

2012-02-04 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: OK, I'm down to a single bug to be solved to call this work a success (there are other test failures, but they are not overtly difficult to solve). At this point the bootstrapping is failing in the face of sub-interpreters. Specifically, when I

[issue2377] Replace __import__ w/ importlib.__import__

2012-02-04 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- keywords: +patch Added file: http://bugs.python.org/file24418/f0b459af26fb.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2377 ___

[issue13926] pydoc - stall when requesting a list of available modules in the online help utility

2012-02-04 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Thanks for the additional output. It demonstrates that the problem you've encountered is an old known issue with pydoc help when there are modules that cause exceptions upon importing. And the additional issue Roger brought up is also due to pydoc

[issue13933] IDLE:not able to complete the hashlib module

2012-02-04 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: Attached is a patch against 3.3a0 to fix the problem. The cause of the bug is that a tuple can not be sorted and calling .sort was raising a silenced exception. The patch explicitly converts __all__ to a list. -- keywords: +patch

[issue13241] llvm-gcc-4.2 miscompiles Python (XCode 4.1 on Mac OS 10.7)

2012-02-04 Thread Ned Deily
Ned Deily n...@acm.org added the comment: While the full regression testing of all active branches against all of the current compiler versions is in progress, my current (and preliminary) recommendations (despite some test failures): - for OS X 10.7.x, use the latest released Xcode,

[issue13933] IDLE:not able to complete the hashlib module

2012-02-04 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 741d4aaf7947 by Ned Deily in branch '2.7': Issue #13933: IDLE auto-complete did not work with some imported http://hg.python.org/cpython/rev/741d4aaf7947 New changeset 3e9a7fdf0498 by Ned Deily in branch '3.2':

[issue13933] IDLE:not able to complete the hashlib module

2012-02-04 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Roger's patch solves the problem. Thanks! Applied to 2.7 (for 2.7.3), 3.2 (for 3.2.3), and default (for 3.3). -- nosy: +ned.deily resolution: - fixed stage: - committed/rejected ___ Python tracker

[issue13933] IDLE:not able to complete the hashlib module

2012-02-04 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13933 ___ ___ Python-bugs-list mailing

[issue7827] recv_into() argument 1 must be pinned buffer, not bytearray

2012-02-04 Thread Andrew Dalke
Andrew Dalke da...@dalkescientific.com added the comment: It does look like #8104 resolved it. I tested on 2.7.2 and verified that it's no longer a problem, so I moved this to closed/duplicate. -- resolution: - duplicate status: open - closed ___

[issue13806] Audioop decompression frames size check fix

2012-02-04 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: The fix I committed seems ok. Unfortunately the buildbot doesn't compile 3.2 or 3.3, see #13843. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13806

[issue13899] re pattern r[\A] should work like A but matches nothing. Ditto B and Z.

2012-02-04 Thread Matthew Barnett
Matthew Barnett pyt...@mrabarnett.plus.com added the comment: In re, \A within a character set should be similar to \C, but instead it's still interpreted as meaning the start of the string. That's definitely a bug. If it doesn't do what it's supposed to do, then it's a bug. regex tries to be

[issue13773] Support sqlite3 uri filenames

2012-02-04 Thread poq
poq p...@gmx.com added the comment: The Python docs should either list them (there aren’t much; pro: all the info is here, con: maintenance) or link to them. They've already added a new option ('psow') since I opened this report, so linking is probably more future-proof. I've added an

[issue964437] idle help is modal

2012-02-04 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: Attached is an updated version of Guilherme's patch against 3.3a0. It does make the help window non-modal. -- Added file: http://bugs.python.org/file24421/help_nonmodal_updated.patch ___ Python

[issue13933] IDLE:not able to complete the hashlib module

2012-02-04 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Thank you both. I saw the answer (hashlib.__all__ is, unusally, a tuple) but did not see how it was the answer. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13933

[issue13943] Lib/distutils/command/build_py fails when package string is unicode

2012-02-04 Thread Patrick Andrew
New submission from Patrick Andrew pand...@isilon.com: When a package list is built using Unicode strings, distutils fails to build the package with a TypeError. This patch alternatively checks for 'unicode' as the instance type and also prints the type in the type error for easier debugging.

[issue13922] argparse handling multiple -- in args improperly

2012-02-04 Thread Warren Turkal
Warren Turkal w...@penguintechs.org added the comment: I wanted to include a minimal example script, so here it is. If you run this like so: $ ./test.py -- blah -- blah2 you will get the the following output: Namespace(args=['blah2'], target=['blah']) I would have expected the following

[issue1625] bz2.BZ2File doesn't support multiple streams

2012-02-04 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset e73d549b7458 by Nadeem Vawda in branch '2.7': Issue #1625: Document BZ2File's lack of support for multi-stream inputs. http://hg.python.org/cpython/rev/e73d549b7458 New changeset 190826ee0450 by Nadeem Vawda in

[issue964437] idle help is modal

2012-02-04 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Thanks, Roger. I did a quick smoke test of the patch on OS X 10.7 with Cocoa Tk. I didn't see any obvious problems. Of course, it needs to be tested on Windows and with X11 on a Unix platform. Note, that there are some spurious spaces at a few

[issue964437] idle help is modal

2012-02-04 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: I ran reindent and resubmitted the patch. The patch works fine on Ubuntu 11.04. One very subtle design issue with the patch is that the help window is tied to the calling EditorWindow instance. If the editor (or shell) closes, so does the

[issue13843] Python doesn't compile anymore on our Solaris buildbot: undefined libintl_* symbols

2012-02-04 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Martin, do you have any idea? There doesn't seem to be any recent commits that could have caused this problem. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13843

[issue13892] distutils handling of windows manifest isn't optimal

2012-02-04 Thread Jack Jansen
Jack Jansen jackjan...@users.sourceforge.net added the comment: Hmm, the cscript.exe point is a valid one. I can think of two things that make my situation different, I will investigate (and post here): - I started getting the problem when the hosting application (Ambulant multimedia player)

[issue13922] argparse handling multiple -- in args improperly

2012-02-04 Thread Warren Turkal
Warren Turkal w...@penguintechs.org added the comment: It doesn't look like that file got included last time, so here's a second try. -- Added file: http://bugs.python.org/file24424/test.py ___ Python tracker rep...@bugs.python.org

[issue964437] idle help is modal

2012-02-04 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Download, tested on W7, 3.2.2. Started help, brought to front, stopped, restarted, in both shell and edit window and all fine *except* when I closed edit window with help attached, which closes help also, and tried to open help in shell, idle

[issue13932] If some test module fails to import another module unittest reports a very misleading message

2012-02-04 Thread Michael Foord
Michael Foord mich...@voidspace.org.uk added the comment: This is a duplicate of issue 7559. See the discussion there. -- resolution: - duplicate status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13932

[issue13771] HTTPSConnection __init__ super implementation causes recursion error

2012-02-04 Thread Michael Mulich
Michael Mulich michael.mul...@gmail.com added the comment: Sure does. But that's the point of the package. Why is this super usage without arguments considered a hack? ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13771

[issue13893] Make CGIHTTPServer capable of redirects (and status other than 200)

2012-02-04 Thread Glenn Linderman
Glenn Linderman v+pyt...@g.nevcal.com added the comment: Add version of server.py source. This was originally revised from Python 3.1, I just now merged the Python 3.2 changes. I've been running it for months in 3.2, but without the 3.2 changes. Will be running it now in this form, so if

[issue13893] Make CGIHTTPServer capable of redirects (and status other than 200)

2012-02-04 Thread Glenn Linderman
Glenn Linderman v+pyt...@g.nevcal.com added the comment: Uploaded version of CGIHTTPServer.py that is based on Python 2.6 runs well there on Windows, but which also works under Python 2.4 on Linux. I should mention that the server.py I upload moments ago has mostly run on Windows, and I might

[issue13893] Make CGIHTTPServer capable of redirects (and status other than 200)

2012-02-04 Thread Glenn Linderman
Glenn Linderman v+pyt...@g.nevcal.com added the comment: Oh, and I submit all my changes to the public domain to be re-licensed as needed by anyone that works with it. Not sure if these few changes need a contributor agreement, I'd be glad to sign one if it is. --

[issue13944] HMAC object called hmac

2012-02-04 Thread Ramchandra Apte
New submission from Ramchandra Apte maniandra...@gmail.com: When the documentation for hashlib says An HMAC object has the following methods: the list of methods says hmac.xxx which is wrong and should be HMAC.xxx. Thanks -- assignee: docs@python components: Documentation messages:

[issue13945] Mistake in the text for PEP-383

2012-02-04 Thread Ramchandra Apte
New submission from Ramchandra Apte maniandra...@gmail.com: chosers should be choosers in 'External libraries that operate on file names (such as GUI file chosers) should also encode them according to the PEP.' in text for PEP-383 (http://www.python.org/dev/peps/pep-0383/) --

[issue964437] idle help is modal

2012-02-04 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: Attached is a reworked patch to handle the nonmodal help dialog. It replaces the decorator _singledialog with a call to a singleton HelpDialog class. The class creates the textView widget using as its parent the root Tk window instance

[issue10910] pyport.h FreeBSD/Mac OS X fix causes errors in C++ compilation

2012-02-04 Thread Nasos Dousis
Nasos Dousis ndou...@gmail.com added the comment: Per Chen Huang's comment, I retested my test case code using several versions of boost and Python 2.7: boost 1.45: build fails, errors as reported. boost 1.46: success. boost 1.47: success. I've attached a revised test case that automatically

[issue12142] Reference cycle when importing ctypes

2012-02-04 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 205da7a19a78 by Meador Inge in branch '3.2': Issue #12142: Fixed reference cycle when importing ctypes http://hg.python.org/cpython/rev/205da7a19a78 New changeset b228d9da8bd3 by Meador Inge in branch 'default':

[issue13370] test_ctypes fails on osx 10.7

2012-02-04 Thread Meador Inge
Meador Inge mead...@gmail.com added the comment: I can't reproduce this on Lion using the 2.7 or default branches. I can't build with GCC at the moment because of issue13241. I am using the clang that ships with Lion: motherbrain:cpython meadori$ sw_vers ProductName:Mac OS X

[issue964437] idle help is modal

2012-02-04 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I retried and get same behavior: help closes with closing of edit window and trying to reopen from shell closes idle with about 2 second delay. Does this +if self.root: +parent = self.root +else: +parent