[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 : -- nosy: +pipping ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue1099] Mac compile fails with pydebug and framework enabled

2011-08-03 Thread Elias Pipping
Changes by Elias Pipping : -- nosy: -pipping ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue12690] tkinter bug 2643483

2011-08-03 Thread Gary Levin
New submission from Gary Levin : A bug from Tkinter is present in the current release. https://sourceforge.net/tracker/index.php?func=detail&aid=2643483&group_id=5649&atid=105649 8tixFileEntry:OpenFile dialogtype tk_chooseDirectory only opens once. There is a bug fix in the code. I tried it i

[issue12689] IDLE crashes after pressing ctrl+space

2011-08-03 Thread R. David Murray
R. David Murray 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

[issue12689] IDLE crashes after pressing ctrl+space

2011-08-03 Thread Andrew Luzin
Changes by Andrew Luzin : -- type: -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue12689] IDLE crashes after pressing ctrl+space

2011-08-03 Thread Andrew Luzin
New submission from Andrew Luzin : Steps to reproduce: 1. Open IDLE 2. File -> New Window 3. Just press + 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 severity: normal status: open

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

2011-08-03 Thread François-Xavier Bourlet
François-Xavier Bourlet 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 : > > Charles-François Natali added the comment: > > Hello, > >> Actually the class asyncore.dispatcher_with_send do not handl

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

2011-08-03 Thread Santoso Wijaya
Santoso Wijaya 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 (like its WindowsError

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

2011-08-03 Thread Santoso Wijaya
Santoso Wijaya 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 _

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

2011-08-03 Thread Łukasz Langa
Łukasz Langa 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: -> duplicate status: ope

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

2011-08-03 Thread R. David Murray
Changes by R. David Murray : -- nosy: +lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

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

2011-08-03 Thread John Simon
New submission from John Simon : 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 self._interpolation being set to Non

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

2011-08-03 Thread Eli_B
Changes by Eli_B : -- nosy: +Eli_B ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailma

[issue12641] Remove -mno-cygwin from distutils

2011-08-03 Thread Roumen Petrov
Roumen Petrov added the comment: it is save to remove -mno-cygwin from Mingw32CCompiler -- ___ Python tracker ___ ___ Python-bugs-li

[issue12641] Remove -mno-cygwin from distutils

2011-08-03 Thread Jon
Jon 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? -- ___ Python tracke

[issue7424] segmentation fault in listextend during install

2011-08-03 Thread Stefan Krah
Stefan Krah 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 -- ___ Python tracker

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

2011-08-03 Thread Peter Caven
Peter Caven 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

[issue12677] Turtle, fix right/left rotation orientation

2011-08-03 Thread Ezio Melotti
Ezio Melotti 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 mentioning the mode h

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

2011-08-03 Thread R. David Murray
R. David Murray 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 various places and you

[issue11049] add tests for test.support

2011-08-03 Thread Eli Bendersky
Eli Bendersky added the comment: Vinay, great news. Thanks. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12541] Accepting Badly formed headers in urllib HTTPBasicAuth

2011-08-03 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue11049] add tests for test.support

2011-08-03 Thread Vinay Sajip
Vinay Sajip added the comment: Eli, test_support is now completing on my system without errors. -- ___ Python tracker ___ ___ Python-

[issue12541] Accepting Badly formed headers in urllib HTTPBasicAuth

2011-08-03 Thread Alex Leon
Alex Leon added the comment: For some reason a caret went missing in the regex fix. It should read 'realm=(["\']?)([^"\']*)\\2', re.I) -- ___ Python tracker ___ ___

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

2011-08-03 Thread Jeremy Bicha
Changes by Jeremy Bicha : -- nosy: +jbicha ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue12683] urlparse.urljoin different behavior for different scheme

2011-08-03 Thread Roundup Robot
Roundup Robot 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 in branch '3.2': Fix closes issue

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). http://subversion.apach

[issue12687] Python 3.2 fails to load protocol 0 pickle

2011-08-03 Thread Vinay Sajip
Vinay Sajip 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. Notice the similar constructs

[issue12687] Python 3.2 fails to load protocol 0 pickle

2011-08-03 Thread Vinay Sajip
New submission from Vinay Sajip : 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 "load_it.py", line 4, i

[issue12686] argparse - add 'hide' feature

2011-08-03 Thread BJ Dierkes
New submission from BJ Dierkes : 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 'somecommand'. There