[issue12682] Meaning of 'accepted' resolution as documented in devguide

2011-08-03 Thread Petri Lehtinen
Changes by Petri Lehtinen pe...@digip.org: -- nosy: +petri.lehtinen ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12682 ___ ___ Python-bugs-list

[issue12686] argparse - add 'hide' feature

2011-08-03 Thread BJ Dierkes
New submission from BJ Dierkes wdier...@gmail.com: Having the ability to 'hide' positional/option arguments and subparsers in argparse would be useful. For example, I might want to add a subparser for 'somecommand-help' which would be a commands specifically for displaying help output of

[issue12687] Python 3.2 fails to load protocol 0 pickle

2011-08-03 Thread Vinay Sajip
New submission from Vinay Sajip vinay_sa...@yahoo.co.uk: The attached 2.x-written protocol 0 pickle file cannot be loaded by Python 3.2 or 3.3, though it loads successfully in 2.x. Code used to load: data = pickle.load(open('test.bin', 'rb')) Error: Traceback (most recent call last): File

[issue12687] Python 3.2 fails to load protocol 0 pickle

2011-08-03 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: I also noticed that in the file there are numerous previous integer values in a similar context, which were parsed without error. For example, if you look at the test.bin file in an editor, the failure occurs while parsing line 515.

Re: [issue12683] urlparse.urljoin different behavior for different scheme

2011-08-03 Thread Senthil Kumaran
The reason for that seems that svn scheme did not support relative paths to being with (at least when urlparse was originally written). From 1.5 onwards (released sometime in 2008), it has the support for relative urls and can work with urljoin (by giving relative paths).

[issue12683] urlparse.urljoin different behavior for different scheme

2011-08-03 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 5278aa2d9d9a by Senthil Kumaran in branch '2.7': Fix closes issue12683 - urljoin to work with relative join of svn scheme. http://hg.python.org/cpython/rev/5278aa2d9d9a New changeset 57a836eb6916 by Senthil Kumaran

[issue12627] Implement PEP 394: The python Command on Unix-Like Systems

2011-08-03 Thread Jeremy Bicha
Changes by Jeremy Bicha jbi...@ubuntu.com: -- nosy: +jbicha ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12627 ___ ___ Python-bugs-list mailing

[issue12541] Accepting Badly formed headers in urllib HTTPBasicAuth

2011-08-03 Thread Alex Leon
Alex Leon ael...@gmail.com added the comment: For some reason a caret went missing in the regex fix. It should read 'realm=([\']?)([^\']*)\\2', re.I) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12541

[issue11049] add tests for test.support

2011-08-03 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: Eli, test_support is now completing on my system without errors. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11049 ___

[issue12541] Accepting Badly formed headers in urllib HTTPBasicAuth

2011-08-03 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12541 ___ ___

[issue11049] add tests for test.support

2011-08-03 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Vinay, great news. Thanks. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11049 ___ ___

[issue12686] argparse - document (and improve?) use of SUPPRESS with help=

2011-08-03 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: This is partly a doc issue, but there also appear to be bugs in the way the existing functionality works (although it is hard to tell for sure since it isn't documented :) Try using the value argparse.SUPPRESS as the value of help= in

[issue12677] Turtle, fix right/left rotation orientation

2011-08-03 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: It seems to me that right() always turns the turtle clockwise, both with the standard and the logo mode. I agree that changing left-right and leave clockwise is better than changing clockwise-counterclockwise. I don't think it's worth

[issue12540] Restart Shell command leaves pythonw.exe processes running

2011-08-03 Thread Peter Caven
Peter Caven pca...@gmail.com added the comment: Terry, sorry about the delay in responding: I'm using 32bit Python. I haven't had a chance yet to try the 64 bit release. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12540

[issue7424] segmentation fault in listextend during install

2011-08-03 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: Just a guess: it might be a stack overflow. Could you try to reduce Py_DEFAULT_RECURSION_LIMIT in Python/ceval.c and see if you get a RuntimeError instead? See also: issue #1212900 -- ___

[issue12641] Remove -mno-cygwin from distutils

2011-08-03 Thread Jon
Jon jon.for...@gmail.com added the comment: are you ok with a targeted patch similar to what's being discussed at http://sourceforge.net/mailarchive/message.php?msg_id=27895558 assuming the regex search the output of `gcc -dumpspecs` idea is valid? --

[issue12641] Remove -mno-cygwin from distutils

2011-08-03 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: it is save to remove -mno-cygwin from Mingw32CCompiler -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12641 ___

[issue6792] Distutils-based installer does not detect 64bit versions of Python

2011-08-03 Thread Eli_B
Changes by Eli_B eli.boyar...@gmail.com: -- nosy: +Eli_B ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6792 ___ ___ Python-bugs-list mailing list

[issue12688] ConfigParser.__init__(iterpolation=None) documentation != behavior

2011-08-03 Thread John Simon
New submission from John Simon j...@johnsoft.com: The ConfigParser docs say that when __init__ is called with interpolation=None, no interpolation occurs. But when this is done in Python 3.2.1, it actually results in an AttributeError upon getting or setting a value, due to

[issue12688] ConfigParser.__init__(iterpolation=None) documentation != behavior

2011-08-03 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +lukasz.langa ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12688 ___ ___

[issue12688] ConfigParser.__init__(iterpolation=None) documentation != behavior

2011-08-03 Thread Łukasz Langa
Łukasz Langa luk...@langa.pl added the comment: Hey there! Thanks for your report. However: 1. this is a duplicate of #11324 2. AFAICT this is corrected in 3.2.1 (3.2.0 had the bug). Just downloaded the source distribution from python.org, it is indeed fixed. -- resolution: -

[issue12437] _ctypes.dlopen does not include errno in OSError

2011-08-03 Thread Santoso Wijaya
Santoso Wijaya santoso.wij...@gmail.com added the comment: At least in Windows, the exception object has its `winerror` attribute correctly set to 126, which is also translated to POSIX `errno` with `winerror_to_errno()`; the latter gives us EINVAL (22). -- versions: +Python 3.3

[issue12437] _ctypes.dlopen does not include errno in OSError

2011-08-03 Thread Santoso Wijaya
Santoso Wijaya santoso.wij...@gmail.com added the comment: From what I gather from the code, when dlopen fails in POSIX platforms, ctypes raises an PyExc_OSError instantiated with a simple string (via PyErr_SetString()). I suppose this could be changed to raise a more complex tuple, instead

[issue12498] asyncore.dispatcher_with_send, disconnection problem + miss-conception

2011-08-03 Thread François-Xavier Bourlet
François-Xavier Bourlet bomb...@gmail.com added the comment: I am currently busy, but i will try to allocate some time to propose a path soon. Cheers, 2011/7/24 Charles-François Natali rep...@bugs.python.org: Charles-François Natali neolo...@free.fr added the comment: Hello, Actually the

[issue12689] IDLE crashes after pressing ctrl+space

2011-08-03 Thread Andrew Luzin
New submission from Andrew Luzin andrew.lu...@gmail.com: Steps to reproduce: 1. Open IDLE 2. File - New Window 3. Just press ctrl+space 4. IDLE crashes IDLE version: 3.2 Python version: 3.2 Tk version 8.5 Thanks! -- components: IDLE messages: 141620 nosy: Andrew.Luzin priority: normal

[issue12689] IDLE crashes after pressing ctrl+space

2011-08-03 Thread Andrew Luzin
Changes by Andrew Luzin andrew.lu...@gmail.com: -- type: - crash ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12689 ___ ___ Python-bugs-list

[issue12689] IDLE crashes after pressing ctrl+space

2011-08-03 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Duplicate of 1028. -- nosy: +r.david.murray resolution: - duplicate stage: - committed/rejected status: open - closed superseder: - Tkinter binding involving Control-spacebar raises unicode error type: crash - behavior

[issue12690] tkinter bug 2643483

2011-08-03 Thread Gary Levin
New submission from Gary Levin gary.marc.le...@gmail.com: A bug from Tkinter is present in the current release. https://sourceforge.net/tracker/index.php?func=detailaid=2643483group_id=5649atid=105649 8tixFileEntry:OpenFile dialogtype tk_chooseDirectory only opens once. There is a bug fix in

[issue1099] Mac compile fails with pydebug and framework enabled

2011-08-03 Thread Elias Pipping
Changes by Elias Pipping pipp...@exherbo.org: -- nosy: -pipping ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1099 ___ ___ Python-bugs-list

[issue7247] test_fcntl_64_bit from test_fcntl.py fails in Python 2.6.4

2011-08-03 Thread Elias Pipping
Changes by Elias Pipping pipp...@exherbo.org: -- nosy: +pipping ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7247 ___ ___ Python-bugs-list