[issue15576] importlib: ExtensionFileLoader not used to load packages from __init__.so files

2012-08-08 Thread Eric Snow
Eric Snow added the comment: Addressed question of introspecting loader_details in issue 15600. (see msg167632) -- ___ Python tracker ___ __

[issue15600] expose the finder details used by the FileFinder path hook

2012-08-08 Thread Eric Snow
Eric Snow added the comment: The alternative is this: path_hook.__closure__[1].cell_contents -- ___ Python tracker ___ ___ Python-b

[issue14992] os.makedirs expect_ok=True test_os failure when directory has S_ISGID bit set

2012-08-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3f42c9dbd8a7 by Ned Deily in branch '3.2': Issue #14992: Prevent test_os test_exist_ok_s_isgid_directory test case http://hg.python.org/cpython/rev/3f42c9dbd8a7 New changeset a1c8c79e035d by Ned Deily in branch 'default': Issue #14992: merge from 3.

[issue15601] tkinter test_variables fails with OS X Aqua Tk 8.4

2012-08-08 Thread Ned Deily
New submission from Ned Deily: == FAIL: test_get (tkinter.test.test_tkinter.test_variables.TestStringVar) -- Traceback (most recent call last): File "/Library

[issue15586] Provide some examples for usage of ElementTree methods/attributes

2012-08-08 Thread Eli Bendersky
Changes by Eli Bendersky : -- versions: +Python 2.7, Python 3.3, Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue15602] zipfile: wrong encoding charset of member filename

2012-08-08 Thread monson
New submission from monson: In /cpython/Lib/zipfile.py, there are some codes like if flags & 0x800: # UTF-8 file names extension filename = filename.decode('utf-8') else: # Historical ZIP filename encoding fi

[issue12834] memoryview.to_bytes() and PyBuffer_ToContiguous() incorrect for non-contiguous arrays

2012-08-08 Thread Martin v . Löwis
Martin v. Löwis added the comment: Removing 3.1, since its addition was apparently done by mistake. Again, I wonder why this is marked release-critical. It's not a regression from previous versions, is it? Please use release-critical only if not making a release at a certain point in the futur

[issue12834] memoryview.to_bytes() and PyBuffer_ToContiguous() incorrect for non-contiguous arrays

2012-08-08 Thread Nick Coghlan
Nick Coghlan added the comment: Since the next release of 3.2 is the *last* release of 3.2, yet it will remain supported by distros well beyond that, yes, I think this should block the final 3.2 release. -- ___ Python tracker

[issue15601] tkinter test_variables fails with OS X Aqua Tk 8.4

2012-08-08 Thread Martin v . Löwis
Martin v. Löwis added the comment: The purpose of the test is to test whether get works on a string variable. Any boolean/string conversions aren't really relevant here, so we should just use a second string in the test (e.g. "def"), instead of True. -- nosy: +loewis _

[issue12834] memoryview.to_bytes() and PyBuffer_ToContiguous() incorrect for non-contiguous arrays

2012-08-08 Thread Martin v . Löwis
Martin v. Löwis added the comment: > Since the next release of 3.2 is the *last* release of 3.2, yet it > will remain supported by distros well beyond that, yes, I think this > should block the final 3.2 release. But the same will be true for any other bug that 3.2 has. If they don't get fixed n

<    1   2