[issue9922] subprocess.getstatusoutput can fail with utf8 UnicodeDecodeError

2010-12-12 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file18972/issue9922-31.patch ___ Python tracker <http://bugs.python.org/issue9922> ___ ___ Python-bugs-list m

[issue10689] _scproxy extension is NOT build

2010-12-13 Thread Ned Deily
Ned Deily added the comment: Building Python on OS X is currently only tested and supported using the gcc provided by Apple's Xcode Developer Tools (either gcc-4.0 for building on OS X 10.4 and 10.5 and gcc-4.2 or -4.0 for building on 10.6, depending on deployment target). Also judging

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread Ned Deily
Ned Deily added the comment: Without more specific details on exactly how to reproduce the problem, I assume you are seeing something like the problem reported in Issue9783. There are several reported problems with IDLEs that are linked with the Apple-supplied Tcl/Tk 8.5 in OS X 10.6. That

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread Ned Deily
Ned Deily added the comment: [updated to refer to correct issue - thanks!] Without more specific details on exactly how to reproduce the problem, I assume you are seeing something like the problem reported in Issue9763. There are several reported problems with IDLEs that are linked with the

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread Ned Deily
Changes by Ned Deily : -- Removed message: http://bugs.python.org/msg123868 ___ Python tracker <http://bugs.python.org/issue10690> ___ ___ Python-bugs-list mailin

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread Ned Deily
Changes by Ned Deily : -- status: open -> pending ___ Python tracker <http://bugs.python.org/issue10690> ___ ___ Python-bugs-list mailing list Unsubscri

[issue6075] Patch for IDLE/OS X to work with Tk-Cocoa

2010-12-13 Thread Ned Deily
Changes by Ned Deily : -- assignee: -> ned.deily nosy: +ned.deily versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker <http://bugs.python.org/iss

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Ned Deily
Ned Deily added the comment: The 10.4u SDK is an optional install in the OS X 10.6 Xcode Developer Tools package. There is an option in the Xcode installer to customize; just select the 10.4u package to install it. -- nosy: +ned.deily ___ Python

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Ned Deily
Ned Deily added the comment: When you use python 3.1 from a python.org OS X installer, it is built with the 10.4u SDK and a deployment target of 10.3 and up. Distutils ensures that any extension modules are built using the same values as the interpreter itself which is why the 10.4u SDK is

[issue10718] Idle 2.7.1 from 64-bit installer crashes on OS X when source is saved

2010-12-16 Thread Ned Deily
Ned Deily added the comment: Unfortunately, there are some major stability problems with IDLEs that are linked with the Apple-supplied Tcl/Tk 8.5 in OS X 10.6. (See, for instance, Issue9763.) That includes the current python.org 2.7.1 64-bit installer. The simplest workaround at the moment

[issue6075] Patch for IDLE/OS X to work with Tk-Cocoa

2010-12-17 Thread Ned Deily
Ned Deily added the comment: Thank you very much for the patch. I have updated it and modified it somewhat to work with the latest tip for py3k (3.2b1), 3.1.3+, and 2.7.1+ and to work with both AquaTk Cocoa 8.5 and preserve current behavior with legacy AquaTk Carbon 8.4. Since there are no

[issue6075] Patch for IDLE/OS X to work with Tk-Cocoa

2010-12-17 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file20097/issue6075_27.patch ___ Python tracker <http://bugs.python.org/issue6075> ___ ___ Python-bugs-list m

[issue9907] interactive mode TAB does not insert on OS X built with editline instead of GNU readline

2010-12-17 Thread Ned Deily
Ned Deily added the comment: I believe this fix should go into 3.2 (and 2.7) as it has been reported by a number of people in various places and the fix risk is low. -- nosy: +benjamin.peterson, georg.brandl priority: normal -> release bloc

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-12-17 Thread Ned Deily
Ned Deily added the comment: I think this should be applied for 3.2 (and 2.7 and 3.1). The risk is low and the benefit to OS X IDLE users is great, since without it there is no way to use IDLE's breakpoint facility. -- nosy: +georg.b

[issue10727] intermittent test_cmd_line failure

2010-12-18 Thread Ned Deily
Ned Deily added the comment: This is a duplicate of Issue8458. Merging the nosy lists. -- nosy: +ned.deily resolution: -> duplicate status: open -> closed superseder: -> buildbot: test_cmd_line failure on Tiger: [Errno 9] Bad file d

[issue8458] buildbot: test_cmd_line failure on Tiger: [Errno 9] Bad file descriptor

2010-12-18 Thread Ned Deily
Ned Deily added the comment: See also msg124254. -- assignee: -> gregory.p.smith nosy: +gregory.p.smith, ncoghlan, pitrou type: -> behavior ___ Python tracker <http://bugs.python.org/

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2010-12-18 Thread Ned Deily
New submission from Ned Deily : OS X Mach-O universal executable files often contain multiple architectures including a combination of 32-bit and 64-bit archs, as with the newer OS X installer variants provided on python.org. In such cases, the platform.architecture() function always returns

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2010-12-18 Thread Ned Deily
Ned Deily added the comment: The attached patches for py3k (3.2+) and 2.7 correct platform.architecture() to return the bit architecture ('32bit' or '64bit') of the running interpreter in the default case where executable = sys.executable. The linkage string will also

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2010-12-18 Thread Ned Deily
Changes by Ned Deily : -- keywords: +patch Added file: http://bugs.python.org/file20106/issue10735-py3k.patch ___ Python tracker <http://bugs.python.org/issue10

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2010-12-18 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file20107/issue10735-27.patch ___ Python tracker <http://bugs.python.org/issue10735> ___ ___ Python-bugs-list m

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2010-12-19 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file20108/issue10735-py3k.patch ___ Python tracker <http://bugs.python.org/issue10735> ___ ___ Python-bugs-list m

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2010-12-19 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file20109/issue10735-27.patch ___ Python tracker <http://bugs.python.org/issue10735> ___ ___ Python-bugs-list m

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2010-12-19 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file20106/issue10735-py3k.patch ___ Python tracker <http://bugs.python.org/issue10735> ___ ___ Python-bug

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2010-12-19 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file20107/issue10735-27.patch ___ Python tracker <http://bugs.python.org/issue10735> ___ ___ Python-bugs-list m

[issue10736] test_ttk_guionly fails on OS X using ActiveState Tcl 8.5.9 (Cocoa)

2010-12-19 Thread Ned Deily
New submission from Ned Deily : 3.2b2(~) The following two test failures are seen with the newly released Cocoa-based ActiveState Tcl 8.5.9 on OS X 10.6. No failures are reported when using the Apple Tcl/Tk 8.5 supplied with 10.6

[issue10736] test_ttk_guionly fails on OS X using ActiveState Tcl 8.5.9 (Cocoa)

2010-12-19 Thread Ned Deily
Changes by Ned Deily : -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue10736> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10736] test_ttk_guionly fails on OS X using ActiveState Tcl 8.5.9 (Cocoa)

2010-12-19 Thread Ned Deily
Ned Deily added the comment: I'll look into it. No need to hold up beta2 for this. -- ___ Python tracker <http://bugs.python.org/issue10736> ___ ___ Pytho

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2010-12-19 Thread Ned Deily
Ned Deily added the comment: It's only a hack in the sense that platform.architecture is the documented interface in the std library to report "bits" and, unfortunately, users try to use it to determine whether running in 64-bit or 32-bit mode. For instance,

[issue10694] zipfile.py end of central directory detection not robust

2010-12-19 Thread Ned Deily
Ned Deily added the comment: Thanks for the suggested code. As suggested, it would be helpful to supply a complete patch (or patches) ready to be reviewed and applied to the tips of the currently maintained source trees (py3k, 3.1, and 2.7) including adding an appropriate test case to Lib

[issue10738] webbrowser.py bug with Opera on Linux

2010-12-19 Thread Ned Deily
Changes by Ned Deily : -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue10738> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2010-12-19 Thread Ned Deily
Ned Deily added the comment: Adding a warning sounds like a good idea. Is it reasonable to include a recommended cross-platform approach in the platform doc, like either the sys.maxsize test or the struct.calsize("P") test (which is used as a default fallback in platform.architect

[issue10694] zipfile.py end of central directory detection not robust

2010-12-19 Thread Ned Deily
Ned Deily added the comment: Not to belabor the point but the most useful part of a ready-to-go patch would be to have a fully automated test case that fits into the existing test_zipfile.py structure and that demonstrates the failure. Somebody has to write a test case one way or another

[issue10743] 3.2's sysconfig doesn't work with virtualenv

2010-12-20 Thread Ned Deily
Ned Deily added the comment: That does seem to be a regression since distutils.sysconfig works correctly in a virtualenv: $ python3.2 -c 'import distutils.sysconfig;print(distutils.sysconfig.get_makefile_filename())' /Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/c

[issue10743] 3.2's sysconfig doesn't work with virtualenv

2010-12-20 Thread Ned Deily
Ned Deily added the comment: Setting to deferred blocker for 3.2 release manager evaluation. -- nosy: +georg.brandl priority: normal -> deferred blocker ___ Python tracker <http://bugs.python.org/issu

[issue1515839] socket timeout inheritance on accept

2010-12-31 Thread Ned Deily
Ned Deily added the comment: The problem you have reported here was later independently reported in Issue7995 where a possible fix has been proposed. Suggest adding yourself to the nosy list of that issue to monitor current status. -- nosy: +ned.deily resolution: -> duplic

[issue8013] time.asctime segfaults when given a time in the far future

2011-01-01 Thread Ned Deily
Ned Deily added the comment: It's still a problem on OS X at least and is 64-bit related: $ arch -i386 /usr/local/bin/python3.2 -c 'import time;print(time.asctime(time.gmtime(1e12)))' Traceback (most recent call last): File "", line 1, in ValueError: timestamp

[issue8013] time.asctime segfaults when given a time in the far future

2011-01-01 Thread Ned Deily
Changes by Ned Deily : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker <http://bugs.python.org/issue8013> ___ ___ Python-bug

[issue8013] time.asctime segfaults when given a time in the far future

2011-01-01 Thread Ned Deily
Ned Deily added the comment: Thanks for the py3k patch. I am also attaching a refreshed patch for current 2.7. They both fix the segfaults when built and run on OS X 10.6 64-bit. Since the patches change timemodule to use asctime_r, which AFAICT is not used elsewhere in the standard

[issue10079] idlelib for Python 3 with Guilherme Polo GSoC enhancements

2011-01-03 Thread Ned Deily
Ned Deily added the comment: Not dead, just pining for the fjords. The two versions of the patch as submitted need some work before being ready for review. One issue is that the patches were originally applied to earlier snapshots of IDLE, so some subsequent changes have been reverted in

[issue10820] 3.2 Makefile changes for versioned scripts break OS X framework installs

2011-01-03 Thread Ned Deily
New submission from Ned Deily : The changes for Issue10679 (r87525) to installed versioned scripts break OS X framework installs. The install_versionedtools target in Mac/Makefile already did most of this work and is now superfluous. The attached patch fixes the problem

[issue10820] 3.2 Makefile changes for versioned scripts break OS X framework installs

2011-01-03 Thread Ned Deily
Changes by Ned Deily : -- keywords: +patch Added file: http://bugs.python.org/file20254/issue10820-py3k.patch ___ Python tracker <http://bugs.python.org/issue10

[issue10842] Update third-party libraries for OS X installer builds

2011-01-06 Thread Ned Deily
New submission from Ned Deily : The third-party libraries used by the 32-bit OS X installer are in need of updating. (Patch follows.) -- assignee: ronaldoussoren components: Build, Macintosh messages: 125532 nosy: georg.brandl, ned.deily, ronaldoussoren priority: normal severity

[issue10842] Update third-party libraries for OS X installer builds

2011-01-06 Thread Ned Deily
Ned Deily added the comment: 1. bzip2 1.0.5 -> 1.0.6 (fixes CVE-2010-0405) 2. GNU Readline 5.1.4 -> 6.1.2 3. SQLite 3.6.11 -> 3.7.4 (also enable FTS3/FTS4 and RTREE extensions) 4. ncurses 5.5 -> ncursesw 5.5 (enable wide-character support) 5. do not build Sleepycat DB (4.7.25)

[issue10843] OS X installer: install the Tools source directory

2011-01-06 Thread Ned Deily
New submission from Ned Deily : As suggested in Issue10502 and now that the former Demos directory has been pruned and moved under the Tools directory, the OS X installer should install the Tools source directory in the /Applications/Python 3.x/Extras directory where Demos was formerly

[issue10843] OS X installer: install the Tools source directory

2011-01-06 Thread Ned Deily
Ned Deily added the comment: Patch for py3k. -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file20287/issue10843-py3k.patch ___ Python tracker <http://bugs.python.org/issu

[issue10844] OS X installer: update copyright dates in app bundles

2011-01-06 Thread Ned Deily
New submission from Ned Deily : The copyright dates in the plists for the various app bundles installed by the OS X installer need updating. They are visible with the Finder's Get Info command. (patch for py3k follows, backport for 2.7 and 3.1 needed) -- assignee: ronaldous

[issue10844] OS X installer: update copyright dates in app bundles

2011-01-06 Thread Ned Deily
Ned Deily added the comment: Patch for py3k. (Patches needed for 31 and 27.) -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file20289/issue10844-py3k.patch ___ Python tracker <http://bugs.python.org/issu

[issue8746] os.chflags() and os.lchflags() are not built when they should be be

2011-01-06 Thread Ned Deily
Ned Deily added the comment: Ping - Garrett, any progress on updating the tests? With dispatch, this could still make it into 3.2. -- ___ Python tracker <http://bugs.python.org/issue8

[issue10850] inconsistent behavior concerning multiprocessing.manager.BaseManager._Server

2011-01-07 Thread Ned Deily
Changes by Ned Deily : -- nosy: +asksol, jnoller ___ Python tracker <http://bugs.python.org/issue10850> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10855] wave.Wave_read.close() doesn't release file

2011-01-07 Thread Ned Deily
Ned Deily added the comment: Thanks for the report and analysis. Would you care to submit a patch to fix it? -- nosy: +ned.deily stage: -> unit test needed ___ Python tracker <http://bugs.python.org/issu

[issue10855] wave.Wave_read.close() doesn't release file

2011-01-07 Thread Ned Deily
Ned Deily added the comment: (Presumably this is also a problem for Python 3, as well). -- versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/issue10

[issue10837] Issue catching KeyboardInterrupt while reading stdin

2011-01-07 Thread Ned Deily
Changes by Ned Deily : -- nosy: +brian.curtin, tim.golden ___ Python tracker <http://bugs.python.org/issue10837> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5622] wrong error from curses.wrapper if curses initialization fails

2011-01-08 Thread Ned Deily
Ned Deily added the comment: A simpler way to reproduce: TERM= python -c 'import curses; curses.wrapper(lambda a:a.getch())' I looked at adding an automated test case for this but it is a little tricky to make it bulletproof across all environments. Since the problem is really a

[issue10820] 3.2 Makefile changes for versioned scripts break OS X framework installs

2011-01-10 Thread Ned Deily
Ned Deily added the comment: Thanks for trying a build. There are various tk test failures possible depending on what version of Tcl/Tk is or isn't installed, so I wouldn't be concerned about them. The test_site failure is also not new. It is documented in re-opened

[issue10820] 3.2 Makefile changes for versioned scripts break OS X framework installs

2011-01-10 Thread Ned Deily
Ned Deily added the comment: (BTW, I was planning to see what we could do about Issue8084 before release anyway. I'll get on it.) -- ___ Python tracker <http://bugs.python.org/is

[issue10820] 3.2 Makefile changes for versioned scripts break OS X framework installs

2011-01-10 Thread Ned Deily
Ned Deily added the comment: Fixed in r87908. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue10844] OS X installer: update copyright dates in app bundles

2011-01-10 Thread Ned Deily
Ned Deily added the comment: Also backported by Georg to 3.1 (r87885) and 2.7 (r87886) -- ___ Python tracker <http://bugs.python.org/issue10844> ___ ___ Pytho

[issue10890] IDLE Freezing

2011-01-11 Thread Ned Deily
Ned Deily added the comment: Unfortunately, there are some major stability problems with IDLEs that are linked with the Apple-supplied Tcl/Tk 8.5 in OS X 10.6. (See, for instance, Issue9763 and Issue10537.) That includes the current python.org 2.7.1 64-bit installer. The simplest workaround

[issue10907] OS X installer: warn users of buggy Tcl/Tk in OS X 10.6

2011-01-14 Thread Ned Deily
New submission from Ned Deily : With 2.7 and now 3.2, we have been supplying two variants of OS X installers: the traditional 32-bit only version dynamically linked with Tk 8.4, the only version available across all supported OS X releases; and a new 64-bit/32-bit version dynamically linked

[issue10907] OS X installer: warn users of buggy Tcl/Tk in OS X 10.6

2011-01-14 Thread Ned Deily
Ned Deily added the comment: (I'll plan to commit to py3k later today pending any review comments and submit expanded pydotorg changes.) -- nosy: +michael.foord, ronaldoussoren stage: -> commit review Added file: http://bugs.python.org/file20408/pydotorg_10_6_

[issue10907] OS X installer: warn users of buggy Tcl/Tk in OS X 10.6

2011-01-14 Thread Ned Deily
Ned Deily added the comment: Patch for items 2 and 3 committed (with release manager approval for 3.2) in r88003. Updated the OS X installer build instructions to better reflect current practices including use of A/S Tcl/Tk in r88004. Pending website changes and 2.7 backport (items 4

[issue10843] OS X installer: install the Tools source directory

2011-01-14 Thread Ned Deily
Ned Deily added the comment: Committed (with release manager approval for 3.2) in r88005. -- assignee: ronaldoussoren -> ned.deily resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tr

[issue10842] Update third-party libraries for OS X installer builds

2011-01-14 Thread Ned Deily
Ned Deily added the comment: Committed (with release manager approval for 3.2) to py3k in r88006. Pending potential backport to 2.7. -- assignee: ronaldoussoren -> ned.deily priority: release blocker -> resolution: -> fixed stage: patch review -> committed/rejected

[issue10502] Add unittestguirunner to Tools/

2011-01-14 Thread Ned Deily
Ned Deily added the comment: FYI, as of 3.2rc1, Tools/ is now included in Mac OS X distributions in /Applications/Python 3.2/Extras/. -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue10

[issue8746] os.chflags() and os.lchflags() are not built when they should be be

2011-01-17 Thread Ned Deily
Ned Deily added the comment: There is an existing test_lchflags in Lib/test/test_posix.py. Additional test cases should go there. -- ___ Python tracker <http://bugs.python.org/issue8

[issue6075] Patch for IDLE/OS X to work with Tk-Cocoa

2011-01-17 Thread Ned Deily
Ned Deily added the comment: Backported to 2.7 in r88090 (to appear in 2.7.2). (I decided to not backport to 3.1 as some prereq backports would be needed and we do not supply a 64-bit OS X installer for 3.1.x anyway.) -- assignee: ronaldoussoren -> ned.deily resolution: ->

[issue10940] IDLE hangs with Cmd-M hotkey on Mac O/S

2011-01-18 Thread Ned Deily
New submission from Ned Deily : Is this on OS X 10.6 with ActiveState 8.5.9 installed? -- ___ Python tracker <http://bugs.python.org/issue10940> ___ ___ Python-bug

[issue10940] IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5

2011-01-18 Thread Ned Deily
Changes by Ned Deily : -- title: IDLE hangs with Cmd-M hotkey on Mac O/S -> IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5 ___ Python tracker <http://bugs.python.org/issu

[issue10812] Add some posix functions

2011-01-20 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue10812> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10964] Mac installer need not add things to /usr/local

2011-01-20 Thread Ned Deily
Ned Deily added the comment: Adding the symlinks to /usr/local is an option in the OS X installer. Although it is enabled by default, you can easily disable it in Installer.app by selecting "Customize" and then unchecking the install of the "UNIX command-line tools"

[issue10969] Make Tcl recommendation more prominent

2011-01-21 Thread Ned Deily
Ned Deily added the comment: I'm a little concerned about that wording change. I proposed the current wording and footnote because the situation is dynamic and is not so cut and dried. For one, Apple could at anytime fix their Tcl/Tk. Another, ActiveState could issue a new (and presu

[issue10973] 'ñ' not working with IDLE 3.2rc1 - OSX 10.6.6

2011-01-21 Thread Ned Deily
Ned Deily added the comment: (Regarding the second problem: if IDLE does not launch when you double-click on it, please check for and report any error messages from /var/log/system.log at the time. You can use /Applications/Utilities/Console.app to view system.log.) -- assignee

[issue10974] IDLE 3.2 not loading on double-click in Finder, OSX 10.6

2011-01-21 Thread Ned Deily
Ned Deily added the comment: >From the traceback, IDLE is crashing on a decode error when trying to process >the list of recently used files which is used to populate its recent files >menu. That list of files is saved in ~/.idlerc/recent-file.lst so an easy >workaround is t

[issue10974] IDLE 3.2 not loading on double-click in Finder, OSX 10.6

2011-01-21 Thread Ned Deily
Ned Deily added the comment: >From the traceback, IDLE is crashing on a decode error when trying to process >the list of recently used files which is used to populate its recent files >menu. That list of files is saved in ~/.idlerc/recent-file.lst so an easy >workaround is t

[issue10974] IDLE 3.2 not loading on double-click in Finder, OSX 10.6

2011-01-21 Thread Ned Deily
Changes by Ned Deily : -- Removed message: http://bugs.python.org/msg126820 ___ Python tracker <http://bugs.python.org/issue10974> ___ ___ Python-bugs-list mailin

[issue10973] OS X 10.6 IDLE, tkinter: Cocoa Tk 8.5 crash when composite character typed in text field

2011-01-22 Thread Ned Deily
Ned Deily added the comment: This seems to me to be a nasty release blocker. As documented in the Tk bug that Victor cited (thanks!), the crash occurs in Cocoa Tk when an input method prefix "dead key" combining character is typed in a Tk text field. So, for example, with the U

[issue10973] OS X 10.6 IDLE, tkinter: Cocoa Tk 8.5 crash when composite character typed in text field

2011-01-22 Thread Ned Deily
Ned Deily added the comment: Here's a brain dump of possible options I see for 3.2rc2: 1. document and do nothing -> IDLE (and other tkinter program) crashes whenever a user types a composing character (like Option u in US layout for an umlaut) when the 64-/32-bit inst

[issue10973] OS X 10.6 IDLE, tkinter: Cocoa Tk 8.5 crash when composite character typed in text field

2011-01-22 Thread Ned Deily
Ned Deily added the comment: Since the key strokes are captured directly by Tk, I doubt that anything could be worked around on the Python side unless there was some Tk option to disable a class of input characters or something. Seems unlikely but I can check with the tcl-mac list. I should

[issue10940] IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5

2011-01-22 Thread Ned Deily
Ned Deily added the comment: It appears that the Cocoa Tk 8.5 added support for the Apple convention using Cmd-M as the window minimize menu item (collapses the window into the dock) and that conflicts with IDLE's use of the Cmd-M as the shortcut for the Open Module menu item. I'

[issue10973] OS X 10.6 IDLE, tkinter: Cocoa Tk 8.5 crash when composite character typed in text field

2011-01-23 Thread Ned Deily
Ned Deily added the comment: Michael, the crash documented here is *not* fixed by installing ActiveState 8.5; it is currently a problem seen with both A/S and Apple's Tk 8.5. Also, to answer my own question, I double-checked the Snow Leopard 10.6 installation DVD and, unlike ea

[issue10974] IDLE 3.x can crash decoding recent file list

2011-01-23 Thread Ned Deily
Ned Deily added the comment: IDLE 3.x currently does not specify an explicit encoding when reading or writing the recent files list (~/.idlerc/recent-files.lst) and it defaults to "errors=strict". So IDLE 3.x is vulnerable to crashes if any of the recent files contain character

[issue10997] Duplicate entries in IDLE "Recent Files" menu item on OS X

2011-01-24 Thread Ned Deily
New submission from Ned Deily : When IDLE is run with an OS X Aqua Tk (Carbon 8.4 or Cocoa 8.5), using the File -> Recent Files menu item to open a previously used file causes that file to show up a second time in the updated menu item and with the same keyboard shortcut. With X11-based

[issue10997] Duplicate entries in IDLE "Recent Files" menu item on OS X

2011-01-24 Thread Ned Deily
Changes by Ned Deily : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue10997> ___ ___ Python-bugs-list mailing list Unsubscri

[issue10997] Duplicate entries in IDLE "Recent Files" menu item on OS X

2011-01-24 Thread Ned Deily
Changes by Ned Deily : -- nosy: +kbk ___ Python tracker <http://bugs.python.org/issue10997> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue10973] OS X 10.6 IDLE, tkinter: Cocoa Tk 8.5 crash when composite character typed in text field

2011-01-24 Thread Ned Deily
Ned Deily added the comment: Yes, see http://permalink.gmane.org/gmane.comp.lang.tcl.mac/6871 So the plan for 3.2 is to assume there will be an updated ActiveState Tk 8.5 available. I will update the web status page accordingly. And this issue can be closed as a third-party library issue

[issue10974] IDLE 3.x can crash decoding recent file list

2011-01-24 Thread Ned Deily
Ned Deily added the comment: Committed in py3k (r88174) for 3.2rc2, with release manager approval, and in 3.1 (r88177). -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python track

[issue9045] 2.7rc1: 64-bit OSX installer is not built with 64-bit tkinter

2011-01-26 Thread Ned Deily
Ned Deily added the comment: Terry, we are working on all of the OS X IDLE Tk issues at the moment with focus first on 3.2. These issues will be updated and closed as they are resolved. -- ___ Python tracker <http://bugs.python.org/issue9

[issue10940] IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5

2011-01-28 Thread Ned Deily
Ned Deily added the comment: After more investigation, I found that my original speculation about a Cmd-M conflict with Cocoa Tk 8.5 was not correct. And the problem is not just limited to the keyboard accelerator for the Open Module command; it can also be seen with the keyboard

[issue10940] IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5

2011-01-28 Thread Ned Deily
Ned Deily added the comment: The attached temporary patch avoids the hang seen when IDLE is used with Cocoa Tk 8.5 by removing the menu accelerator hints from IDLE's menu on OS X. The keyboard accelerators still work when typed but the character hints are not displayed on their menu

[issue10940] IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5

2011-01-28 Thread Ned Deily
Changes by Ned Deily : -- stage: needs patch -> commit review ___ Python tracker <http://bugs.python.org/issue10940> ___ ___ Python-bugs-list mailing list Un

[issue11052] Fix OS X IDLE menu accelerators for Save As and Save Copy

2011-01-28 Thread Ned Deily
New submission from Ned Deily : On OS X, the menu accelerators for the Save As and Save Copy As commands are incorrect: AreShould Be SaveCmd-S Cmd-S Save As.. Cmd-S Shift-Cmd-S Save Copy As.. Shift-Cmd-SOption-Cmd-S The

[issue11053] OS X IDLE 3 with Tk 8.4 appears to hang with syntax error

2011-01-28 Thread Ned Deily
New submission from Ned Deily : When IDLE 3 is used with Aqua Tk 8.4 on OS X (as is the case with the 32-bit-only installer for Python 3.1.x or 3.2rc1), if the user tries to run a Python program with a syntax error from an editor window, the Run command causes the IDLE shell window to move to

[issue10940] IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5

2011-01-28 Thread Ned Deily
Ned Deily added the comment: Just editing config-keys.def does not eliminate the problem. The hang seems to occur because of the presence of any menu accelerator along with the detached windows produced by tkinter.simpledialog.Dialog(). Looking at the Cocoa Tk sources, there are some

[issue11054] OS X installer build script for 3.2 can no longer build with system Python on OS X 10.5

2011-01-28 Thread Ned Deily
New submission from Ned Deily : During the 3.2rc1 release cycle, it was discovered that it was no longer possible to build the 32-bit installer on OS X 10.5 as customary with the system Python 2.5 due to an inadvertent 2.6 feature ("with") added to the OS X installer build scr

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-01-28 Thread Ned Deily
New submission from Ned Deily : With the menu accelerators corrected (as patched in Issue10940), IDLE 3.2 with Cocoa Tk 8.5 opens two Save As dialog windows instead of one. This doesn't happen when the Save As item is selected with the mouse nor does it happen with Carbon Tk 8.4. The s

[issue10940] IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Committed in r88232 for 3.2rc2. Pending 2.7 backport, if necessary. -- priority: release blocker -> resolution: accepted -> fixed stage: commit review -> committed/rejected status: open -> pending ___ Py

[issue11053] OS X IDLE 3 with Tk 8.4 appears to hang with syntax error

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Committed in r88234 for 3.2rc2. Pending backport to 3.1. -- priority: release blocker -> resolution: -> fixed stage: commit review -> committed/rejected status: open -> pending ___ Python tr

[issue11054] OS X installer build script for 3.2 can no longer build with system Python on OS X 10.5

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Committed in r88235 for 3.2rc2 with release manager approval. Pending 2.7 backport. -- priority: release blocker -> resolution: -> fixed stage: patch review -> committed/rejected status: open -> pending versions:

[issue11052] Fix OS X IDLE menu accelerators for Save As and Save Copy

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Committed in r88236 (with release manager approval) for 3.2rc2, r88237 for 3.1, and r88238 for 2.7. -- resolution: accepted -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Pytho

[issue11065] Fatal "can't locate locale" errors when zip file with directories is on the PYTHONPATH.

2011-01-29 Thread Ned Deily
Changes by Ned Deily : -- status: open -> closed superseder: -> Possible regression with stdlib in zipfile ___ Python tracker <http://bugs.python.org/i

<    3   4   5   6   7   8   9   10   11   12   >