[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Ned Deily
Ned Deily added the comment: We could change an existing buildbot, say one of the snakebite buildbots, to add a `make install` and run the tests from it. I don't think it should be very difficult. Just make sure ./configure --prefix= has a reasonable value like a dedicated directory (r

[issue17757] test_executable_without_cwd fails when run in the installed location

2013-04-16 Thread Ned Deily
Ned Deily added the comment: Duplicate of Issue17046 -- nosy: +ned.deily resolution: -> duplicate status: open -> closed superseder: -> test_subprocess test_executable_without_cwd fails when run with installed python ___ Python track

[issue17046] test_subprocess test_executable_without_cwd fails when run with installed python

2013-04-16 Thread Ned Deily
Changes by Ned Deily : -- nosy: +doko ___ Python tracker <http://bugs.python.org/issue17046> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue9849] Argparse needs better error handling for nargs

2013-04-16 Thread Ned Deily
Changes by Ned Deily : -- nosy: -ned.deily ___ Python tracker <http://bugs.python.org/issue9849> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17776] IDLE Internationalization

2013-04-18 Thread Ned Deily
Ned Deily added the comment: Also, IDLE makes use of features provided by Tk and those vary by platform. In some cases, IDLE uses some Tk-supplied default menus and menu items. So internationalization of IDLE would need to investigate and make use of Tk i18n features on all supported

[issue17801] Tools/scripts/gprof2html.py: `#! /usr/bin/env python32.3`

2013-04-20 Thread Ned Deily
Ned Deily added the comment: Thanks for the report! -- nosy: +ned.deily resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: -Python 2.6, Python 3.1, Python 3.2, Python 3.5 ___ Python tracker <http://bug

[issue17547] "checking whether gcc supports ParseTuple __format__... " erroneously returns yes with gcc 4.8

2013-04-20 Thread Ned Deily
Ned Deily added the comment: Dave, any reason this shouldn't go into the imminent 2.7.5 and 3.3.2 releases? -- nosy: +ned.deily stage: patch review -> commit review versions: +Python 2.7, Python 3.3, Python 3.4 -Python 3.1, Python 3.2 __

[issue17805] No such class: multiprocessing.pool.AsyncResult

2013-04-20 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt versions: -Python 2.6, Python 3.1, Python 3.2, Python 3.5 ___ Python tracker <http://bugs.python.org/issue17805> ___ ___

[issue17670] Improve str.expandtabs() doc

2013-04-20 Thread Ned Deily
Ned Deily added the comment: Another round based on comments. I also just noticed that the current doc incorrectly claims that tabs are replaced by *zero* or more spaces. Return a copy of the string where all tab characters are replaced by one or more spaces, depending on the current

[issue17670] Improve str.expandtabs() doc

2013-04-20 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file29957/issue17670_doc_rev_2.patch ___ Python tracker <http://bugs.python.org/issue17670> ___ ___ Python-bug

[issue17670] Improve str.expandtabs() doc

2013-04-21 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed type: enhancement -> ___ Python tracker <http://bugs.python

[issue17348] Unicode - encoding seems to be lost for inputs of unicode chars in IDLE

2013-04-21 Thread Ned Deily
Ned Deily added the comment: I think this is another case where confusion is introduced by the behavior of Python 2 interactive mode with regard to encodings. In 2.x Python/pythonrun.c, depending on a number of factors the interactive loop will try to set a more useful encoding on stdin

[issue17348] Unicode - encoding seems to be lost for inputs of unicode chars in IDLE

2013-04-21 Thread Ned Deily
Ned Deily added the comment: Also see Issue15809 in which Martin proposed the same patch but then explained why it isn't totally correct. -- ___ Python tracker <http://bugs.python.org/is

[issue17348] Unicode - encoding seems to be lost for inputs of unicode chars in IDLE

2013-04-21 Thread Ned Deily
Changes by Ned Deily : -- Removed message: http://bugs.python.org/msg187547 ___ Python tracker <http://bugs.python.org/issue17348> ___ ___ Python-bugs-list mailin

[issue10513] sqlite3.InterfaceError after commit

2013-04-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: -ned.deily ___ Python tracker <http://bugs.python.org/issue10513> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17820] Nothing about editors in "Key Resources"

2013-04-22 Thread Ned Deily
Ned Deily added the comment: Thanks for the suggestion! -- nosy: +ned.deily resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17532] IDLE: Always include "Options" menu on MacOSX

2013-04-23 Thread Ned Deily
Ned Deily added the comment: Thanks for the patch, Guilherme. While the patch does restore the Options menu for Edit windows, a similar change is needed in idlelib/PyShell.py to also restore the menu for the shell window. I will refresh the patch or include it in the changes for Issue17654

[issue17836] multiprocessing exceptions with useful traceback

2013-04-24 Thread Ned Deily
Ned Deily added the comment: (FYI, cpython source is no longer maintained in svn.python.org; the browser link you provided is out-of-date. Current source for the 2.7 branch can be viewed here: http://hg.python.org/cpython/file/2.7/) -- nosy: +ned.deily, sbt versions: +Python 3.4

[issue17836] multiprocessing exceptions with useful traceback

2013-04-24 Thread Ned Deily
Changes by Ned Deily : -- nosy: -ned.deily ___ Python tracker <http://bugs.python.org/issue17836> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17857] sqlite modules doesn't build with 2.7.4 on Mac OS X 10.4

2013-04-27 Thread Ned Deily
Ned Deily added the comment: The patch does solve the build problem for 2.7 on 10.4 (Tiger). The same problem exists for 3.3 and default as well. I see the Tiger buildbots aren't failing with this problem; I suspect that's because there is a newer version of libsqlite3 being s

[issue17857] sqlite modules doesn't build with 2.7.4 on Mac OS X 10.4

2013-04-27 Thread Ned Deily
Ned Deily added the comment: Marc-Andre, can you elaborate on why you think Python 3 is not affected? The changes for Issue17073 also added sqlite3_int64 to 3.2, 3.3, and default and, for me on 10.4, _sqlite3.so currently fails to build in all three. (I don't think 3.2 is worth wor

[issue16177] IDLE Crash on Open Parens

2013-04-27 Thread Ned Deily
Ned Deily added the comment: Something that comes to mind: the stack traces in both issues show similar crashes where Tk is calling into OS X AppKit to create or modify a window. Since a left paren is being typed, it seems to me the most likely scenario is that the left paren is completing a

[issue17857] sqlite modules doesn't build with 2.7.4 on Mac OS X 10.4

2013-04-28 Thread Ned Deily
Ned Deily added the comment: Fix verified on OS X 10.4 for 2.7, 3.3, and default. -- ___ Python tracker <http://bugs.python.org/issue17857> ___ ___ Python-bug

[issue17864] IDLE won't run

2013-04-28 Thread Ned Deily
Ned Deily added the comment: How are you trying to launch IDLE? Also, use the Console.app (in /Applications/Utilites) to examine system.log to see if there are any error messages produced there when you attempt to launch IDLE. -- nosy: +ned.deily

[issue17864] IDLE won't run

2013-04-28 Thread Ned Deily
Ned Deily added the comment: OK, assuming you are using a default install of Python 3.3.1, try opening a terminal window (Terminal.app) and launching IDLE from there by typing: /usr/local/bin/python3.3 -c 'import sys;print(sys.version)' /usr/local/bin/python3.3 -m idlelib and r

[issue17864] IDLE won't run

2013-04-28 Thread Ned Deily
Ned Deily added the comment: That's really odd. It looks you have a permissions problem with your home directory. On startup, IDLE attempts to create the directory .idlerc in your home directory, /Users/ben, if it doesn't exist already. If for some reason the directory creation f

[issue17864] IDLE won't run

2013-04-29 Thread Ned Deily
Ned Deily added the comment: The "ls" shows that, for some reason, your home directory is owned by user "temp", not by user "ben". That's not good. Try doing this: sudo chown ben /Users/ben/ But we're way past an IDLE or Python problem here. This is a

[issue17864] IDLE fails to launch when it cannot create .idlerc directory

2013-04-29 Thread Ned Deily
Ned Deily added the comment: Ah, yes, it is a duplicate, thanks. Let's move any further discussion to Issue8231. -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed title: IDLE won't run -> IDLE fails to launch when it cannot cre

[issue8231] Unable to run IDLE without write-access to home directory

2013-04-29 Thread Ned Deily
Ned Deily added the comment: Issue17864 is a duplicate of this. Also, note the error reported here is a result of IDLE not having write access in the user's home directory and thus cannot create the .idlerc directory. IDLE seems to handle more gracefully the case of .idlerc existing bu

[issue17857] sqlite modules doesn't build with 2.7.4 on Mac OS X 10.4

2013-04-30 Thread Ned Deily
Ned Deily added the comment: Georg, do you want a 3.2 patch for this as well? -- ___ Python tracker <http://bugs.python.org/issue17857> ___ ___ Python-bugs-list m

[issue16177] Typing left parenthesis in IDLE causes intermittent Cocoa Tk crash on OS X

2013-04-30 Thread Ned Deily
Ned Deily added the comment: Thanks for the report, Eric. It confirms that the problem still exists with everything current. I'm sorry you are hitting the crash. Without being able to reliably reproduce the problem, it's difficult to be able to help. Are there any hints you can

[issue17990] 2.7 builds can fail due to unconditional inclusion of include paths

2013-05-15 Thread Ned Deily
New submission from Ned Deily: For Issue17086, 8ee6d96a1019 backported some cross-build patches to the 2.7 branch. The changes to setup.py detect_modules differ in the backport from those in default. In particular, in default, changes to the library and include directory lists used to build

[issue17990] 2.7 builds can fail due to unconditional inclusion of include paths

2013-05-15 Thread Ned Deily
Changes by Ned Deily : -- keywords: +patch Added file: http://bugs.python.org/file30274/issue17990.patch ___ Python tracker <http://bugs.python.org/issue17

[issue17990] 2.7 builds can fail due to unconditional inclusion of include paths

2013-05-15 Thread Ned Deily
Ned Deily added the comment: Applied to 2.7 branch. Leaving the issue open for release manager action for 2.7.5. -- components: +Cross-Build resolution: -> fixed stage: patch review -> committed/rejected ___ Python tracker <http://bugs.p

[issue17990] 2.7 builds can fail due to unconditional inclusion of include paths

2013-05-15 Thread Ned Deily
Changes by Ned Deily : -- stage: patch review -> committed/rejected ___ Python tracker <http://bugs.python.org/issue17990> ___ ___ Python-bugs-list mai

[issue17952] editors-and-tools section of devguide does not appear to be accurate

2013-05-16 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. To resolve Issue17820, the target of the link in setup#editors-and-tools was changed from the "Key Resources" section to the "Additional Resources" section. However, because the "setup" page itself

[issue18008] python33-3.3.2 Parser/pgen: Permission denied

2013-05-18 Thread Ned Deily
Ned Deily added the comment: You did not provide enough information to determine exactly what went wrong in your build but you are likely running in an environment with non-standard permissions (umask, root, ACLs, etc.). Note that the failure occurs when the main Makefile rule to build

[issue18008] python33-3.3.2 Parser/pgen: Permission denied

2013-05-18 Thread Ned Deily
Ned Deily added the comment: I don't know of an intention to break use of other makes but I don't know of any specific effort to test with various makes. As you may have noticed, there were some significant changes to the Makefile rules for pgen-related targets by changeset 52

[issue18026] Typo in ctypes documentation

2013-05-20 Thread Ned Deily
Ned Deily added the comment: It should. Thanks! -- nosy: +ned.deily resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.or

[issue17649] Python/Python-ast.c: No such file or directory

2013-05-22 Thread Ned Deily
Ned Deily added the comment: I believe there are two different issues here. One: since the python-dev switch to hg, Python source release tarballs no longer have had consistent file time stamps which result in unnecessary generation steps being run in a build. Python 2.7 and 3.3 now include

[issue17532] IDLE: Always include "Options" menu on MacOSX

2013-05-22 Thread Ned Deily
Ned Deily added the comment: Thanks again for the patch. Committed for release in 2.7.6, 3.3.3, and 3.4.0. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bug

[issue2053] IDLE - standardize dialogs

2013-05-24 Thread Ned Deily
Ned Deily added the comment: Attached is a refreshed version of the patch against current 2.7 tip. I did a quick visual comparison with the original but make no guarantees that it is totally accurate. I have no plans to work on it further myself. -- nosy: +ned.deily Added file

[issue18050] _sre.MAXREPEAT not defined in 2.7.3

2013-05-24 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue18050> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16177] Typing left parenthesis in IDLE causes intermittent Cocoa Tk crash on OS X

2014-10-09 Thread Ned Deily
Ned Deily added the comment: Thanks for the confirmation, Brian. I certainly would not have thought to ask about multiple monitors. -- ___ Python tracker <http://bugs.python.org/issue16

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2014-10-11 Thread Ned Deily
Ned Deily added the comment: A comment on Vinay's comment: "and this cannot be obtained from sys.executable because that is pointing to a framework executable". That *was* true prior to 3.3 and is still true at the moment for 2.7.x but it is not true for 3.3+. Ronald's

[issue21603] IDLE SaveAs drops the extension in the prompted filename

2014-10-12 Thread Ned Deily
Ned Deily added the comment: Thanks, Raymond. Upon further investigation, I think you are running into a user-wide behavior of OS X rather than specifically a Tk or IDLE issue. By tradition and by default, OS X tries to hide file extensions in file Open or Save dialogs; this dates back to

[issue21603] IDLE: Document SaveAs extension display on Mac

2014-10-12 Thread Ned Deily
Ned Deily added the comment: If Raymond concurs that either unchecking the Hide Extensions option or checking the Show All Filenmame Extensions preference solves the problem for him, we should just close this issue. In this particular case, the file is actually saved with a .py extension

[issue22630] `concurrent.futures.Future.set_running_or_notify_cancel` does not notify cancel

2014-10-14 Thread Ned Deily
Changes by Ned Deily : -- nosy: +bquinlan ___ Python tracker <http://bugs.python.org/issue22630> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22631] Feature Request CAN_RAW_FD_FRAME

2014-10-14 Thread Ned Deily
Changes by Ned Deily : -- nosy: +neologix ___ Python tracker <http://bugs.python.org/issue22631> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22632] Official IDLE web page address is not valid

2014-10-14 Thread Ned Deily
Ned Deily added the comment: For the record, on the legacy web site, that URI (which you can still see as http://legacy.python.org/idle/) redirected to the Python 2 IDLE page in the Standard Library docs: https://docs.python.org/2/library/idle.html. -- nosy: +ned.deily

[issue22632] Official IDLE web page address is not valid

2014-10-14 Thread Ned Deily
Ned Deily added the comment: It could but to which page, e.g. which version of the docs? -- ___ Python tracker <http://bugs.python.org/issue22632> ___ ___ Pytho

[issue22632] Official IDLE web page address is not valid

2014-10-14 Thread Ned Deily
Ned Deily added the comment: The URI in "About IDLE" is redundant in that the same information on the doc page is also available in text format in the IDLE Help menu and there is also a link there to the full HTML docs. Perhaps the URI should just be removed from About IDLE going f

[issue22632] Official IDLE web page address is not valid

2014-10-14 Thread Ned Deily
Ned Deily added the comment: OK, the redirect should now be in place. -- ___ Python tracker <http://bugs.python.org/issue22632> ___ ___ Python-bugs-list mailin

[issue22639] test "test_bad_address" fails on Python 3.4.2 under Linux Mint 13 Maya

2014-10-14 Thread Ned Deily
Ned Deily added the comment: I'm not sure what you are trying to do but there is no test module named test_bad_address in the standard library, which is why you get that error. Doing a quick search of Lib/test shows three different cases of test_bad_address: in the test_ipad

[issue22639] test "test_bad_address" fails on Python 3.4.2 under Linux Mint 13 Maya

2014-10-14 Thread Ned Deily
Ned Deily added the comment: Thanks for the additional information. It appears this is a duplicate of Issue17564 with the root cause being the ISP not properly rejecting an undefined host name as expected by the test case. See the discussion there for more information

[issue17095] Modules/Setup *shared* support broken

2014-10-15 Thread Ned Deily
Ned Deily added the comment: Stéphane, as I understand it, this issue covers two problems: (1) Building and installing shared modules using Modules/Setup was broken for current Python 3 releases; (2) Using those shared modules when running Python from a build directory (rather than from a

[issue22642] trace module: unclear error message

2014-10-15 Thread Ned Deily
Changes by Ned Deily : -- components: +Library (Lib) keywords: +easy nosy: +belopolsky stage: -> needs patch versions: +Python 2.7, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue22639] test "test_bad_address" fails on Python 3.4.2 under Linux Mint 13 Maya

2014-10-15 Thread Ned Deily
Ned Deily added the comment: I don't disagree that it would be better to have an error-free test run, independent of the ISP in use. You could try using a different DNS server that behaves as expected (search the web for lists of free and public DNS servers). Otherwise, you could try

[issue22647] test_readline failed on ScientificLinux 6.5

2014-10-15 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Importing readline produces erroneous output ___ Python tracker <http://bugs.python

[issue22648] Unable to install Python 3.4.2 amd64 on Windows 8.1

2014-10-15 Thread Ned Deily
Changes by Ned Deily : -- components: +Windows nosy: +loewis, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue22648> ___ ___

[issue22654] issue with PYTHON_FOR_BUILD

2014-10-16 Thread Ned Deily
Changes by Ned Deily : -- nosy: +doko ___ Python tracker <http://bugs.python.org/issue22654> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue22654] issue with PYTHON_FOR_BUILD

2014-10-16 Thread Ned Deily
Ned Deily added the comment: And to see that message you need to rerun ./configure before running make. Have you just updated to Python 3.4.2? There were some changes in this area that might have inadvertently affected cross-compiles (in particular, Issue21166). -- nosy: +ned.deily

[issue22654] issue with PYTHON_FOR_BUILD

2014-10-16 Thread Ned Deily
Ned Deily added the comment: The "generate-posix-vars failed" message you show is not in Python 3.4.1; it was added recently by e52d85f2e284 for Issue21166 and is first released in 3.4.2. So it's hard to tell exactly what you ar

[issue17095] Shared modules built with Modules/Setup are not found when run from build directory

2014-10-18 Thread Ned Deily
Ned Deily added the comment: Sorry, I don't see the point of opening another issue, especially since most of the discussion in this issue has been about the second problem. I have updated the issue title to be more specific, though. -- title: Modules/Setup *shared* support b

[issue22669] Test_venv fails when _ctypes is not available.

2014-10-18 Thread Ned Deily
Ned Deily added the comment: This is a duplicate of Issue22611. -- nosy: +dstufft, ned.deily resolution: -> duplicate stage: needs patch -> resolved status: open -> closed superseder: -> pip needs ctypes ___ Python tracker <http://

[issue22669] Test_venv fails when _ctypes is not available.

2014-10-18 Thread Ned Deily
Ned Deily added the comment: Issue22611 documents exactly the same failure so if this issue was improperly closed than Issue22611 was, too. So I would think the earlier issue would be the place to discuss this. But, in any case, I think the issue is that the latest version of pip hasn&#

[issue22669] Test_venv fails when _ctypes is not available.

2014-10-18 Thread Ned Deily
Ned Deily added the comment: As I understand it, the reason test_venv is failing is because of a defect in the pip vendored colorama. The test has found the unexpected dependency of the vendored package with ctypes. It's good that the test failed. The right solution is to provid

[issue11820] idle3 shell os.system swallows shell command output

2014-10-19 Thread Ned Deily
Ned Deily added the comment: A quick smoke test of the patch (solely on OS X) looks like it works pretty well. Not surprisingly, it doesn't fix anything when using the deprecated -n ("no subprocess") option but that's not a problem. One more serious issue is that, depend

[issue22702] to improve documentation for join() (str method)

2014-10-22 Thread Ned Deily
Changes by Ned Deily : -- assignee: -> docs@python components: +Documentation -Macintosh nosy: +docs@python -ned.deily, ronaldoussoren versions: +Python 3.4 -Python 3.3 ___ Python tracker <http://bugs.python.org/issu

[issue22723] visited-link styling is not accessible

2014-10-24 Thread Ned Deily
Ned Deily added the comment: +1 It's a fairly subtle change but definitely an improvement IMO (as viewed with vanilla Safari and Firefox settings on OS X). -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/is

[issue22672] float arguments in scientific notation not supported by argparse

2014-10-24 Thread Ned Deily
Ned Deily added the comment: Thanks for the updated patch and test program. Note, to be part of the Python test suite, the test should be in the form of a unittest test and fit into the existing argparse tests here: Lib/test/test_argparse.py. -- nosy: +ned.deily

[issue22672] float arguments in scientific notation not supported by argparse

2014-10-24 Thread Ned Deily
Changes by Ned Deily : -- stage: -> patch review versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue22672> ___ ___ Python-bugs-list mai

[issue22289] support.transient_internet() doesn't catch timeout on FTP tests of test_urllib2net

2014-10-24 Thread Ned Deily
Ned Deily added the comment: There seems to be a small problem with the patch that can be easily fixed by changing the test for "ftp error: timeout()" to "ftp error: timeout(". Otherwise, it seems OK. Note that there is now also a related patch for Issue22596 that mo

[issue22596] support.transient_internet() doesn't catch connection refused errors

2014-10-24 Thread Ned Deily
Ned Deily added the comment: LGTM. Perhaps it can be committed with a revised version of the patch for Issue22289? -- nosy: +haypo, ned.deily ___ Python tracker <http://bugs.python.org/issue22

[issue22729] `wait` and `as_completed` depend on private api

2014-10-25 Thread Ned Deily
Changes by Ned Deily : -- nosy: +bquinlan ___ Python tracker <http://bugs.python.org/issue22729> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13319] IDLE: Menu accelerator conflict between Format and Options

2014-10-26 Thread Ned Deily
Ned Deily added the comment: I believe it is the case that none of these proposed changes would have any effect on Aqua (native, non-X11) OS X Tk variants (Cocoa or Carbon). Unlike on Windows and X11, standard OS X menus in conforming GUI apps do not have underline letter shortcuts. (OS X

[issue22737] Provide a rejected execution model and implementations for futures.

2014-10-26 Thread Ned Deily
Changes by Ned Deily : -- nosy: +bquinlan ___ Python tracker <http://bugs.python.org/issue22737> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22770] test_ttk_guionly and test_tk can cause Tk segfaults on OS X when run with regrtest -j option

2014-10-30 Thread Ned Deily
New submission from Ned Deily: The changes to tkinter tests introduced by the changes for Issue22236 (2.7 32fdaf401e50, 3.4 dd1dffe6f0d2, and default/3.5 014060738f7f) may cause Python to crash due to a Tk segfault on OS X. The crash only shows up when using the -j option to regrtest and is

[issue22236] Do not use _default_root in Tkinter tests

2014-10-30 Thread Ned Deily
Ned Deily added the comment: See Issue22770 for details of a potential Tk crash that can occur on OS X when running tests as a result of these changes and for a workaround. -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue22

[issue22770] test_ttk_guionly and test_tk can cause Tk segfaults on OS X when run with regrtest -j option

2014-10-30 Thread Ned Deily
Ned Deily added the comment: For the record, a typical instance of this failure will look like this: $ /usr/local/bin/python3.4 -m test -w -uall -j2 == CPython 3.4.2 (v3.4.2:ab2c023a9432, Oct 5 2014, 20:42:22) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] == Darwin-14.0.0-x86_64-i386-64bit

[issue22770] test_ttk_guionly and test_tk can cause Tk segfaults on OS X when run with regrtest -j option

2014-10-30 Thread Ned Deily
Ned Deily added the comment: > Did you mean -j > 1? No. > I checked the buildbots and the x86 Tiger is run -j1 while the AMD Snow > Leopard is not running. I'm not sure what you are referring to here. This crash would not be seen on either of those buildbots because

[issue22770] test_ttk_guionly and test_tk can cause Tk segfaults on OS X when run with regrtest -j option

2014-10-31 Thread Ned Deily
Ned Deily added the comment: Adding root.update_idletasks() before root.destroy() doesn't help by itself. As I noted in the Tk issue, to avoid the crash without changing Tk and while still destroying and creating roots/Tcl instances, it is necessary to get the "open application&qu

[issue22773] Export Readline version and expect ANSI sequence for version < 0x6000

2014-10-31 Thread Ned Deily
Ned Deily added the comment: The patch doesn't take into account that the readline module may be linked with BSD libedit (as is the default on OS X and is preferred by some third-party distributors) rather than GNU readline. The patch causes the test to be incorrectly skipped on

[issue22773] Export Readline version and expect ANSI sequence for version < 0x6000

2014-10-31 Thread Ned Deily
Ned Deily added the comment: Make that: The documented way of differentiating the two cases is by checking the __doc__ string for "libedit". -- ___ Python tracker <http://bugs.python.o

[issue22773] Export Readline version and expect ANSI sequence for version < 0x6000

2014-10-31 Thread Ned Deily
Ned Deily added the comment: Something like: @unittest.skipIf(("libedit" not in readline.__doc__) and (readline._READLINE_VERSION < 0x6000), "not supported in this library vers

[issue22773] Export Readline version and expect ANSI sequence for version < 0x6000

2014-10-31 Thread Ned Deily
Ned Deily added the comment: The test works OK with libedit now, thanks. But are you sure about the readline version test? Testing with a GNU readline 6.3: >>> print('%x' % readline._READLINE_RUNTIME_VERSION) 603 so the test_readline check: readline._READLINE_VERSI

[issue22770] test_ttk_guionly and test_tk can cause Tk segfaults on OS X when run with regrtest -j option

2014-11-01 Thread Ned Deily
Ned Deily added the comment: Ah, Issue18604! Thanks for the reminder (and for the patch), Serhly! Focusing on these more recent occurrences of segfaults, I hadn't been thinking about those earlier ones. Now, after digging into Tk and identifying the problem there, it's clear

[issue22770] test_ttk_guionly and test_tk can cause Tk segfaults on OS X when run with regrtest -j option

2014-11-01 Thread Ned Deily
Ned Deily added the comment: Applied for release in 2.7.9, 3.4.3, and 3.5.0. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue18604] Consolidate gui available checks in test.support

2014-11-01 Thread Ned Deily
Ned Deily added the comment: The previous segfaults on OS X have been isolated to a problem in Cocoa Tk and an issue has been opened about it on the Tk issue tracker. See Issue22770 for details. Changesets applied to _is_gui_available() in that issue should prevent the segfaults by ensuring

[issue22800] IPv6Network constructor sometimes does not recognize legitimate netmask

2014-11-05 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ncoghlan, pmoody ___ Python tracker <http://bugs.python.org/issue22800> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16353] add function to os module for getting path to default shell

2014-11-05 Thread Ned Deily
Ned Deily added the comment: Matt, ignore Lib/macpath.py. It is not used on OS X systems other than in the rare case that someone explicitly needs to parse obsolete Classic Mac OS (Mac OS 9 or earlier) style path names. OS X uses Lib/posixpath.py. -- nosy: +ned.deily

[issue22829] Add --prompt option to venv

2014-11-09 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ncoghlan, vinay.sajip ___ Python tracker <http://bugs.python.org/issue22829> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22846] distutils needlessly fails to build apsw

2014-11-11 Thread Ned Deily
Ned Deily added the comment: Have you reported this problem to the author of apsw? It seems like figuring out why apsw is apparently creating an incorrect setup.py configuration should be a first step before suggesting a change to Distutils. You might want to supply the values from your

[issue22846] distutils needlessly fails to build apsw

2014-11-11 Thread Ned Deily
Ned Deily added the comment: Another data point: apsw appears to build OK on OS X with a MacPorts-supplied icu, including icu-config. -- ___ Python tracker <http://bugs.python.org/issue22

[issue22846] distutils needlessly fails to build apsw

2014-11-11 Thread Ned Deily
Ned Deily added the comment: I was able to reproduce the behavior you saw with an older Debian system. The following patch to the apsw setup.py file seems to fix the problem: --- apsw-3.8.7.1-r1/setup.py2014-11-04 19:23:36.0 -0800 +++ apsw-3.8.7.1-r1_PATCHED/setup.py2014-11-11

[issue22853] Multiprocessing.Queue._feed deadlocks on import

2014-11-12 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt ___ Python tracker <http://bugs.python.org/issue22853> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue22864] Add filter to multiprocessing.Pool

2014-11-13 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt ___ Python tracker <http://bugs.python.org/issue22864> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue22874] gzip bug in python 2.7.3?

2014-11-14 Thread Ned Deily
Ned Deily added the comment: It's hard to guess what is going on without an example of the failure. Please post the code of a simple reproducible example that fails along with the exception traceback and also indicate what kind of platform you are running this on. --

[issue22874] gzip bug in python 2.7.3?

2014-11-14 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> third party stage: -> resolved ___ Python tracker <http://bugs.python.org/issue22874> ___ ___ Python-bugs-list

[issue22877] Backport ensurepip OS X installer changes to 2.7

2014-11-14 Thread Ned Deily
Changes by Ned Deily : -- assignee: ned.deily components: Installation, Macintosh nosy: ned.deily, ronaldoussoren priority: normal severity: normal status: open title: Backport ensurepip OS X installer changes to 2.7 versions: Python 2.7 ___ Python

<    57   58   59   60   61   62   63   64   65   66   >