[issue16688] Backreferences make case-insensitive regex fail on non-ASCII strings.

2012-12-14 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue16688] Backreferences make case-insensitive regex fail on non-ASCII strings.

2012-12-14 Thread Ezio Melotti
Ezio Melotti added the comment: It works on 2.7 too, and fails on 3.3/3.x. Maybe it's related to PEP 393? -- versions: +Python 3.4 ___ Python tracker ___

[issue16651] Find out what stdlib modules lack a pure Python implementation

2012-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: itertools should be fairly easy as the docs already contain Python equivalents (or near equivalents). -- nosy: +terry.reedy ___ Python tracker

[issue16688] Backreferences make case-insensitive regex fail on non-ASCII strings.

2012-12-14 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue16651] Find out what stdlib modules lack a pure Python implementation

2012-12-14 Thread Philip Jenvey
Philip Jenvey added the comment: PyPy had a pure python itertools until recently (it's been deleted): https://bitbucket.org/pypy/pypy/src/c1aa74c06e86/lib_pypy/itertools.py?at=py3k -- ___ Python tracker __

[issue16685] Deprecate accepting strings as arguments in audioop functions

2012-12-14 Thread STINNER Victor
STINNER Victor added the comment: > Should it be fixed in 3.4 only or in all 3.x? Such change cannot be done in a minor release (like 3.3.x), so it can only be done in Python 3.4. -- ___ Python tracker ___

[issue16688] Backreferences make case-insensitive regex fail on non-ASCII strings.

2012-12-14 Thread Matthew Barnett
Matthew Barnett added the comment: In function SRE_MATCH, the code for SRE_OP_GROUPREF (line 1290) contains this: while (p < e) { if (ctx->ptr >= end || SRE_CHARGET(state, ctx->ptr, 0) != SRE_CHARGET(state, p, 0)) RETURN_FAILURE; p += state->charsize;

[issue16655] IDLE list.append calltips test failures

2012-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: In 3.2.3 >>> list.append.__doc__ 'L.append(object) -- append object to end' In 3.3.0 >>> list.append.__doc__ 'L.append(object) -> None -- append object to end' I checked the other 6 pure mutation methods. .sort, .extend, .remove, and the new .clear have the sam

[issue16689] stdout stderr redirection mess

2012-12-14 Thread anatoly techtonik
New submission from anatoly techtonik: Tested on Windows. When Python output is redirected with: > py test_unicode_fname.py > test.log 2>&1 In Python 2.7 the traceback is at the end of file, in Python 3.3 it is at the beginning. In should be in the middle, and it appears on the screen correctl

[issue16656] os.listdir() returns unusable bytes result on Windows

2012-12-14 Thread anatoly techtonik
anatoly techtonik added the comment: haypo didn't understood the main user story for this ticket and closed it, so I reopen it with simplified user story. """As a developer, I want Python os.listdir('.') function return all directories in current directory on Windows, not matter how internatio

[issue16690] Reference leak with custom tp_dealloc in PyType_FromSpec

2012-12-14 Thread Bradley Froehle
New submission from Bradley Froehle: There is a reference leak when using PyType_FromSpec with custom tp_dealloc. This was first noted in issue #15142, where a fix was given which only applies to types which do not override tp_dealloc. For example, the xxlimited.Xxo type suffers from this: P

[issue16690] Reference leak with custom tp_dealloc in PyType_FromSpec

2012-12-14 Thread Bradley Froehle
Bradley Froehle added the comment: I see this issue came up in the course of #15653 as well. -- ___ Python tracker ___ ___ Python-bugs

[issue16477] tarfile fails to close file handles in case of exception

2012-12-14 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16333] Trailing whitespace in json dump when using indent

2012-12-14 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16483] Make int(float('inf')) raise ValueError rather than OverflowError.

2012-12-14 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16691] How to use ctypes.windll.user32.MessageBoxW

2012-12-14 Thread David Wolf
New submission from David Wolf: import ctypes ctypes.windll.user32.MessageBoxW(0,"Time's up!","Message",0) My quention is that I want to set my message box topmost. It's said I just need to change the first parameter, but I don't know how I should change it. Help me please! I've been working

[issue16691] How to use ctypes.windll.user32.MessageBoxW

2012-12-14 Thread Ned Deily
Ned Deily added the comment: Sorry, this bug tracker is for reporting problems with Python itself. Try asking on support forums, like the general comp.lang.python newsgroup/mailing list (http://www.python.org/community/lists/) or the more specialized python-win32 list (http://mail.python.org/

<    1   2