[issue21263] test_gdb failures on os x 10.9.2

2018-11-04 Thread Ned Deily
Ned Deily added the comment: New changeset f574ce79729ecb01f1f5b3e1a34c8aa7480b79e8 by Ned Deily (Miss Islington (bot)) in branch '3.6': bpo-21263: Skip test_gdb when python has been compiled with LLVM clang (GH-10318) (GH-10326) https://github.com/python/cpyt

[issue21263] test_gdb failures on os x 10.9.2

2018-11-04 Thread Ned Deily
Ned Deily added the comment: Thanks, everyone! Fixed for 3.8.0, 3.7.2, and 3.6.8. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.5 ___ Python tracke

[issue35185] Logger race condition - loses lines if removeHandler called from another thread while logging

2018-11-07 Thread Ned Deily
Change by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue35185> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35198] Build issue while compiling cpp files in AIX

2018-11-09 Thread Ned Deily
Change by Ned Deily : -- nosy: +David.Edelsohn, Michael.Felt ___ Python tracker <https://bugs.python.org/issue35198> ___ ___ Python-bugs-list mailing list Unsub

[issue32485] Multiprocessing dict sharing between forked processes

2018-11-09 Thread Ned Deily
Change by Ned Deily : -- nosy: +pitrou ___ Python tracker <https://bugs.python.org/issue32485> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32281] bdist_rpm v.s. the Macintosh

2018-11-09 Thread Ned Deily
Ned Deily added the comment: Rather than searching a few hard-coded paths, I would think this would be a good case for using distutils.spawn find_executable like test_bdist_rpm.py does :) If someone (@bhyde) were willing to create a PR with that change, this issue will have a much better

[issue32281] bdist_rpm fails if no rpm command and rpmbuild is not in /usr/bin or /bin

2018-11-09 Thread Ned Deily
Change by Ned Deily : -- keywords: +easy stage: -> needs patch title: bdist_rpm v.s. the Macintosh -> bdist_rpm fails if no rpm command and rpmbuild is not in /usr/bin or /bin versions: +Python 3.8 -Python 2.7 ___ Python tracker

[issue35209] Crash with tkinter text on osx

2018-11-10 Thread Ned Deily
Ned Deily added the comment: Thanks for the report and for the investigation. The Tk crash described in Issue32481 (and many other earlier issues) is due to a very old bug in Tk 8.5.x for macOS. While this bug has been fixed in more recent versions of 8.5.x and in 8.6.x, the version of Tk

[issue35211] Turtle Shutdown Problem(s)

2018-11-10 Thread Ned Deily
Change by Ned Deily : -- nosy: +gregorlingl, willingc ___ Python tracker <https://bugs.python.org/issue35211> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34864] In Idle, Mac tabs make editor status line disappear.

2018-11-10 Thread Ned Deily
Ned Deily added the comment: Terry, FYI, according to Apple, the correct current styling for the Mac Operating System is "macOS". We should be using that spelling in the documentation. https://en.wikipedia.org/wiki/MacOS -- ___ Pyth

[issue34864] In Idle, Mac tabs make editor status line disappear.

2018-11-10 Thread Ned Deily
Ned Deily added the comment: I don’t think it’s worth changing the file name or other names, that just causes needless churn and the possibility for stranded files on an upgrade. I’d just update the docs and messages. -- ___ Python tracker <ht

[issue35211] Turtle Shutdown Problem(s)

2018-11-11 Thread Ned Deily
Ned Deily added the comment: There seem to be at least two problems here. One, you say that running the unmodified life.py requires two Quit keyboard shortcuts (usually CMD-Q). From the shell output you give, that problem is most likely due to the use of -i with python: '/usr/loca

[issue35104] IDLE: On macOS, Command-M minimizes & opens "Open Module..."

2018-11-11 Thread Ned Deily
Ned Deily added the comment: That's a good point. I see that Cmd-Shift-S which is defined as the shortcut for "Save As.." seems to have the same effect as Cmd-S "Save". Also, the Cmd-Opt-S shortcut for "Save Copy As.." seems to bring up the save dialog

[issue35211] Turtle Shutdown Problem(s)

2018-11-11 Thread Ned Deily
Ned Deily added the comment: Alas, the Launcher app can be problematic and doesn't get much love. If you open the Launcher app's Preferences, you'll probably see that the "Interactive mode after acript" option is ticked. Either unselect it or, if you feel com

[issue35211] Turtle Shutdown Problem(s)

2018-11-11 Thread Ned Deily
Ned Deily added the comment: You may might try asking on the freegames issue tracker or, better, on a more general support forum like Stackoverflow or Python-list. Because of the volume of issues reported here (and we are all volunteers), we really can't spend a lot of time helping

[issue35211] Turtle Shutdown Problem(s)

2018-11-11 Thread Ned Deily
Ned Deily added the comment: Sorry, there isn't a particular rush to close issues as some of them stay open for years. And that's not good for anyone. "resolved" on the issue tracking does not necessarily mean a problem is resolved to everyone's satisfaction, it

[issue35211] Turtle Shutdown Problem(s)

2018-11-11 Thread Ned Deily
Ned Deily added the comment: And, by the way, if it turns out that the problem could have been avoided by better documentation, another option is to re-open the issue with suggested doc changes. Patches welcome! -- ___ Python tracker <ht

[issue35209] Crash with tkinter text on osx

2018-11-11 Thread Ned Deily
Ned Deily added the comment: Good to hear you have worked around the crash. Regarding keyboard accelerators, I'm not aware of any 3.7.1 regressions but there could be issues with the bundled version of Tk 8.6.8. If you want to pursue the issue, please supply a test case that demonst

[issue34864] In Idle, Mac tabs make editor status line disappear.

2018-11-11 Thread Ned Deily
Ned Deily added the comment: By default, macOS installers just install the files included in a package. For macOS Python installer packages, the problem arises if a particular file is deleted or renamed in a maintenance release and a user has already installed an earlier version of that

[issue31354] Fixing a bug related to LTO only build

2018-11-14 Thread Ned Deily
Ned Deily added the comment: This does sound like a regression bug that should be fixed in all branches. Another issue is that, if it is propagated to third-party extension module builds through distutils, there is no guarantee that the extension module is being built with the same

[issue33725] Python crashes on macOS after fork with no exec

2018-11-14 Thread Ned Deily
Ned Deily added the comment: _scproxy has been known to be problematic for some time, see for instance Issue31818. That issue also gives a simple workaround: setting urllib's "no_proxy" environment variable to "*" will prevent the calls to the System

[issue35267] reproducible deadlock with multiprocessing.Pool

2018-11-17 Thread Ned Deily
Change by Ned Deily : -- nosy: +pitrou ___ Python tracker <https://bugs.python.org/issue35267> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11122] bdist_rpm should use rpmbuild, not rpm

2018-11-18 Thread Ned Deily
Change by Ned Deily : -- nosy: +bhyde, ned.deily versions: -Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue11

[issue32281] bdist_rpm fails if no rpm command and rpmbuild is not in /usr/bin or /bin

2018-11-18 Thread Ned Deily
Ned Deily added the comment: Thanks, @n0npax, for producing a PR implementing what I suggested. It looks good. However, while testing it, I ran across earlier open Issue11122 in which the same issue of building rpms on macOS is brought up. (Sorry I didn't see this earlier!) The sol

[issue11122] bdist_rpm should use rpmbuild, not rpm

2018-11-18 Thread Ned Deily
Ned Deily added the comment: Note that Issue32281 also describes the problem of trying to use build_rpm on non-rpm systems, again specifically macOS. Before stumbling on this issue,I had suggested over there to use change bdist_rpm to not use hardwired paths for rpmbuild but, if the better

[issue5124] IDLE - pasting text doesn't delete selection

2013-05-25 Thread Ned Deily
Ned Deily added the comment: X11-based Tk follows general X11 practice with regard to text pasting. See http://wiki.tcl.tk/3771 for some background. Old school X11 users expect pasting to work that way. This is yet another instance where Tk attempts to conform to the platform it is running

[issue5124] IDLE - pasting text doesn't delete selection

2013-05-26 Thread Ned Deily
Ned Deily added the comment: Unfortunately, there is no one right answer to paste behavior on X11, unlike on native Windows and Mac implementations where there is essentially system-wide consistent paste behavior enforced by the underlying operating system. As the Tk Wiki points out (and the

[issue18050] embedded interpreter or virtualenv fails with "ImportError: cannot import name MAXREPEAT"

2013-05-26 Thread Ned Deily
Ned Deily added the comment: After spending some time investigating this issue, I believe that potential upgrade compatibility issues have been introduced by the changes for Issue13169. How critical they are and, in particular, whether they violate our implicit promises of maintenance (point

[issue18071] _osx_support compiler_fixup

2013-05-27 Thread Ned Deily
Ned Deily added the comment: Sorry, I am unable to reproduce the problem with a vanilla Python 2.7.5 and a downloaded Cython 0.19.1 either installing directly with Cython's setup.py or using Pip 1.3.1. customize_compiler is used as part of every extension module build in Distutils; it i

[issue18080] setting CC no longer overrides default linker for extension module builds on OS X

2013-05-28 Thread Ned Deily
New submission from Ned Deily: As part of the initial changes for Issue13590 in 2.7.3, 3.2.3, and 3.3 (prior to release) to Distutils to support building extension modules on OS X with Xcode 4, code was added to substitute the clang compiler if the older gcc-4.2 supplied with Xcode 3 was not

[issue18080] setting CC no longer overrides default linker for extension module builds on OS X

2013-05-28 Thread Ned Deily
Changes by Ned Deily : -- keywords: +patch nosy: +ronaldoussoren Added file: http://bugs.python.org/file30395/issue18080_ldshared_2.7.patch ___ Python tracker <http://bugs.python.org/issue18

[issue18050] embedded interpreter or virtualenv fails with "ImportError: cannot import name MAXREPEAT"

2013-05-28 Thread Ned Deily
Ned Deily added the comment: Serhly, while I don't disagree with your points, I should have made clearer that the issue here is that the _sre module is a static module (built into the interpreter executable or shared lib as shown in Modules/Setup.dist) and *not* included in the shared li

[issue18080] setting CC no longer overrides default linker for extension module builds on OS X

2013-05-28 Thread Ned Deily
Ned Deily added the comment: Committed for release with 2.7.6 and 3.3.3. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue18092] Python 2.7.5 installation broken on OpenSuse 12.2

2013-05-29 Thread Ned Deily
Ned Deily added the comment: Without more information, it is difficult to guess what is going wrong. Please provide exactly what ./configure options you used to build Python and any "make install" options. When you start Python, what values do "sys.prefix", "sys.ex

[issue18098] "Build Applet.app" build fails on OS X 10.8

2013-05-29 Thread Ned Deily
New submission from Ned Deily: The Build Applet.app tool for OS X depends on the deprecated EasyDialogs module to interact with the user. EasyDialogs depends on Apple-deprecated Carbon QuickDraw APIs. As of OS X 10.8, the headers for the QuickDraw APIs are no longer supplied with Xcode 4

[issue18098] "Build Applet.app" build fails on OS X 10.8

2013-05-29 Thread Ned Deily
Changes by Ned Deily : -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file30420/issue18098_build_applet.patch ___ Python tracker <http://bugs.python.org/issu

[issue18098] "Build Applet.app" build fails on OS X 10.8

2013-05-29 Thread Ned Deily
Ned Deily added the comment: Unfortunately, the configure.ac change is not unrelated. It turns out that ARCH_RUN_32BIT has been broken for some time. But it hasn't really mattered up to now where I do really need to force 32-bit mode during the build. Also, the patch isn't quite

[issue18050] embedded interpreter or virtualenv fails with "ImportError: cannot import name MAXREPEAT"

2013-05-29 Thread Ned Deily
Ned Deily added the comment: Another report of users being affected by this issue: https://trac.macports.org/ticket/39207 -- ___ Python tracker <http://bugs.python.org/issue18

[issue18050] embedded interpreter or virtualenv fails with "ImportError: cannot import name MAXREPEAT"

2013-05-29 Thread Ned Deily
Ned Deily added the comment: Also: http://stackoverflow.com/questions/16301735/importerror-cannot-import-name-maxrepeat-with-cx-freeze -- ___ Python tracker <http://bugs.python.org/issue18

[issue18098] "Build Applet.app" build fails on OS X 10.8

2013-05-30 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file30423/issue985064_plist_validation_v2.patch ___ Python tracker <http://bugs.python.org/issue18098> ___ ___

[issue18098] "Build Applet.app" build fails on OS X 10.8

2013-05-30 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file30424/issue18098_build_applet_rev1.patch ___ Python tracker <http://bugs.python.org/issue18098> ___ ___ Pytho

[issue18098] "Build Applet.app" build fails on OS X 10.8

2013-05-30 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file30423/issue985064_plist_validation_v2.patch ___ Python tracker <http://bugs.python.org/issue18

[issue18098] "Build Applet.app" build fails on OS X 10.8

2013-05-30 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file30420/issue18098_build_applet.patch ___ Python tracker <http://bugs.python.org/issue18098> ___ ___ Pytho

[issue18098] "Build Applet.app" build fails on OS X 10.8

2013-05-30 Thread Ned Deily
Ned Deily added the comment: Committed for release in 2.7.6. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17269] getaddrinfo segfaults on OS X when provided with invalid arguments combinations

2013-05-30 Thread Ned Deily
Changes by Ned Deily : -- nosy: +benjamin.peterson, georg.brandl, larry priority: normal -> release blocker resolution: fixed -> stage: committed/rejected -> needs patch status: closed -> open ___ Python tracker <http://bugs.python

[issue18098] "Build Applet.app" build fails on OS X 10.8

2013-05-30 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file30431/Tante Girang.uhtml ___ Python tracker <http://bugs.python.org/issue18098> ___ ___ Python-bugs-list m

[issue15392] Create a unittest framework for IDLE

2013-05-30 Thread Ned Deily
Ned Deily added the comment: The test.support module was renamed in Python 3 from test.test_support in Python 2. While the 3x support has expanded and diverged somewhat, with a bit of try hacking it should be possible to minimize the source differences between the 2.7 and 3.x tests

[issue18117] Missing symlink:Current after Mac OS X 3.3.2 package installation

2013-06-02 Thread Ned Deily
Ned Deily added the comment: That behavior of the OS X installer is by design. Currently, the "Current" link is only set for Python 2 installations, not Python 3 ones. While that may have made sense in the early days of Python 3 (assuming there would be mixed installations of bot

[issue18021] Update broken link to Apple Publication Style Guide

2013-06-03 Thread Ned Deily
Ned Deily added the comment: Has anyone looked at the current Apple style guide to determine whether it is still an appropriate reference for Python doc usage? It appears to have undergone some major changes over the years as Apple's docs have changed. -- nosy: +ned.

[issue18021] Update broken link to Apple Publication Style Guide

2013-06-04 Thread Ned Deily
Ned Deily added the comment: "Documenting Python" references to the Apple Style Guide go back to at least Python 2.3.5's documentation, at that time to the 2001 version of the Apple Style Guide. I was more curious if the Apple Style Guide was still being actively c

[issue18103] Create a GUI test framework for Idle

2013-06-04 Thread Ned Deily
Ned Deily added the comment: Terry: FYI, I just noticed the languishing patches in Issue4343 which *might* be of some use here. -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue18

[issue18136] test_distutils failing under OS X 10.8 w/ clang

2013-06-05 Thread Ned Deily
Ned Deily added the comment: Brett, what configure options are you using and what version of clang? I don't see these errors with the current Apple clang (Xcode 4.6.2): $ clang --version Apple LLVM version 4.2 (clang-425.0.28) (based on LLVM 3.2svn) Target: x86_64-apple-darwin12.4.0 T

[issue1512124] OSX: debugger hangs IDLE

2013-06-05 Thread Ned Deily
Ned Deily added the comment: Undoubtedly, it was a bug in an earlier version of Aqua Tk; it doesn't appear to occur with current Tk's. -- resolution: accepted -> out of date stage: test needed -> committed/rejected status: open -> closed ___

[issue18148] Make of Python 3.2.2 fails on Solaris SPARC

2013-06-07 Thread Ned Deily
Ned Deily added the comment: Issue15050, which was closed without resolution, reported a similar issue. Also, Issue15963 documents some suggestions and proposed changes to make builds easier to configure on legacy platforms like Solaris SPARC. Perhaps they may be of help. Also, Python

[issue18149] filecmp.cmp() incorrect results when previously compared file is modified within modification time resolution

2013-06-07 Thread Ned Deily
Ned Deily added the comment: It seems like this would be a fairly rare situation and, as you note, dependent on the underlying file system. But it would be easy to add a new function to the module to clear its cache in cases where it is known this might be a problem. In fact, in Issue11802

[issue18164] Embedding Python doc incorrectly refers to LINKFORSHARED

2013-06-07 Thread Ned Deily
New submission from Ned Deily: This is in reference to section 5.6 of the "Extending and Embedding Python" doc. This has come up recently where third-party projects are using LINKEDFORHARED instead of the results of python-config when linking an embedded Python into their pro

[issue18186] 2.x subprocess contains set notation

2013-06-11 Thread Ned Deily
Ned Deily added the comment: Your proposed change would still not make the source compatible with Python 2.2 (released over a decade ago) as set() was introduced in 2.4. When the subprocess module was introduced back then, it made sense to maintain compatibility with then-recent releases but

[issue18187] Fix broken link in Doc/library/venv.rst

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

[issue18186] 2.x subprocess contains set notation

2013-06-11 Thread Ned Deily
Changes by Ned Deily : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue18186> ___ ___ Python-bugs-list mailing list Unsubscri

[issue18149] filecmp.cmp() incorrect results when previously compared file is modified within modification time resolution

2013-06-12 Thread Ned Deily
Ned Deily added the comment: Thanks for the patch, Mark. I've left some review comments via Rietveld (the review link next to the patch). Also, if you haven't already, please fill out the contributor form as described in the Developer's Guide (http://docs.python.org/devg

[issue18164] Embedding Python doc incorrectly refers to LINKFORSHARED

2013-06-12 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file30567/issue18164-27.patch ___ Python tracker <http://bugs.python.org/issue18164> ___ ___ Python-bugs-list m

[issue18164] Embedding Python doc incorrectly refers to LINKFORSHARED

2013-06-12 Thread Ned Deily
Ned Deily added the comment: On further review, I think the 3.x documentation is pretty good as is. I propose one change to it: getting another config var to help emphasize "the configuration values that you will want to combine together". The proposed 2.7 patch backports the

[issue18149] filecmp.cmp() incorrect results when previously compared file is modified within modification time resolution

2013-06-12 Thread Ned Deily
Ned Deily added the comment: Looks good to me, other than that the doc change should include a version added directive (which can be added by the committer): .. function:: clear_cache() + .. versionadded:: 3.4 + Clear the filecmp cache. This may be useful if a file is compared so

[issue18149] filecmp.cmp() incorrect results when previously compared file is modified within modification time resolution

2013-06-14 Thread Ned Deily
Ned Deily added the comment: Committed for release in 3.4.0. Thanks, Mark. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue18224] pyvenv pydoc.py script causing AttributeErrors on Windows

2013-06-15 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <http://bugs.python.org/issue18224> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18103] Create a GUI test framework for Idle

2013-06-15 Thread Ned Deily
Ned Deily added the comment: Individual test cases are only seen if you run regrtest (-m test) in verbose mode (-v). There are many test cases that are akipped in the standard library, depending on platform and -u options, and you normally don't see them (without -v). So mixin

[issue18103] Create a GUI test framework for Idle

2013-06-15 Thread Ned Deily
Ned Deily added the comment: Why not just run the tests under regrtest like all other standard library tests? From the build directory, you could use something like (Windows may be a bit different): ./python.exe -m test -h # to get regrtest options help ./python.exe -m test -ugui -v

[issue18261] Confusing description in Minimal DOM implementation

2013-06-18 Thread Ned Deily
Ned Deily added the comment: No, the intent really is to suggest using the ElementTree module rather than either minidom or any of the other XML modules in the standard library. Many people find the ElementTree API easier to understand and to use. -- nosy: +ned.deily resolution

[issue18270] IDLE on OS X fails with Attribute Error if no initial shell and Tk out-of-date

2013-06-20 Thread Ned Deily
Ned Deily added the comment: The problem here occurs when IDLE on OS X is launched without an initial shell window, either by setting the option in IDLE preferences or from the command line (/usr/local/bin/idle -e) *and* IDLE detects that the version of Tk in use is one of the suspect OS X

[issue18277] Queue is empty right after put from the same process/thread

2013-06-21 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt ___ Python tracker <http://bugs.python.org/issue18277> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue18289] python.org Interactive interpreter linked with libedit can segfault on future OS X

2013-06-23 Thread Ned Deily
Ned Deily added the comment: The crash report indicates that the operating system is a OS X 10.9 Developer Preview (which is under NDA at the moment) and that you are using the python2.7.3 from the python.org 64-bit/32-bit 2.7.3 installer. The readline module include with that installer

[issue18289] python.org Interactive interpreter linked with libedit can segfault on future OS X

2013-06-23 Thread Ned Deily
Changes by Ned Deily : -- components: +Macintosh nosy: +ronaldoussoren ___ Python tracker <http://bugs.python.org/issue18289> ___ ___ Python-bugs-list mailin

[issue18164] Embedding Python doc incorrectly refers to LINKFORSHARED

2013-06-24 Thread Ned Deily
Ned Deily added the comment: Patches committed (with consistent use of get_config_var as suggested by Antoine) for 2.7.5, 3.3.3, and 3.4.0 docs. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed _

[issue1040439] Missing documentation on how to link with libpython

2013-06-24 Thread Ned Deily
Ned Deily added the comment: I've now backported the 3.x update to the 2.7 docs in Issue18164 (I hadn't noticed that this issue was still open). As Eli noted, if any updates are needed to cover Windows, a separate issue should be opened. I'm closing this one. -- n

[issue18313] In itertools recipes repeatfunc() defines a non-keyword argument as keyword

2013-06-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +rhettinger ___ Python tracker <http://bugs.python.org/issue18313> ___ ___ Python-bugs-list mailing list Unsubscribe:

Re: [issue15661] OS X installer packages should be signed for OS X 10.8 Gatekeeper feature

2013-07-06 Thread Ned Deily
(2) and (3) for a release or two of 2.7.x and then consider dropping (2), assuming there is not a lot of negative feedback. It would be nice to not have to worry about 10.4- compatibility. -- Ned Deily, n...@acm.org ___ Python-bugs-list mailing lis

[issue17557] test_getgroups of test_posix can fail on OS X 10.8 if more than 16 groups

2013-07-06 Thread Ned Deily
Ned Deily added the comment: Thanks for the patch, Mateusz. That basic approach should work on all current releases (although it would be nice if Apple also fixed the problem). I'll test it on the various releases. If you haven't already, please submit a contributor form as descri

[issue18377] Python Launcher code cleanup

2013-07-07 Thread Ned Deily
Ned Deily added the comment: LGTM. I think it is best to eliminate the warnings everywhere so I'd apply it to all branches. -- ___ Python tracker <http://bugs.python.org/is

[issue6739] IDLE window won't start or show up after assgining new key in options v2.5.2 and 3.1.1

2013-07-07 Thread Ned Deily
Changes by Ned Deily : -- nosy: +roger.serwy, terry.reedy ___ Python tracker <http://bugs.python.org/issue6739> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14299] OS X installer build script: permissions not ensured

2013-07-07 Thread Ned Deily
Ned Deily added the comment: Removing the group write permissions on the framework directory would be a significant change in the user interface so I agree that change should not be made until and if we have something better for user installation. The rest of the patch is still valid in the

[issue18398] Debug Python build fails on OS X with current clang: Fatal Python error: bad ID: Allocated using API 'm', verified using API 'r'

2013-07-07 Thread Ned Deily
New submission from Ned Deily: ... /usr/bin/clang -Wl,-stack_size,100 -framework CoreFoundation -o python Modules/python.o libpython3.4dm.a -ldl -framework CoreFoundation ./python -E -S -m sysconfig --generate-posix-vars Debug memory block at address p=0x7f9fba414160: API 'm

[issue18398] Debug Python build fails on OS X: Fatal Python error: bad ID: Allocated using API 'm', verified using API 'r'

2013-07-07 Thread Ned Deily
Ned Deily added the comment: Further testing shows that the problem is not limited to OS X 10.8 or clang: a similar debug build attempt fails on OS X 10.6 with Apple gcc-4.2. ./configure --with-pydebug CC=gcc-4.2 MACOSX_DEPLOYMENT_TARGET=10.6 make gcc-4.2 -Wl,-stack_size,100 -framework

[issue18398] Debug Python build fails on OS X: Fatal Python error: bad ID: Allocated using API 'm', verified using API 'r'

2013-07-07 Thread Ned Deily
Ned Deily added the comment: Here's the traceback in gdb from the 10.6 case above: (gdb) where #0 0x7fff891ba0b6 in __kill () #1 0x7fff8925a9f6 in abort () #2 0x0001001cd4fd in Py_FatalError (msg=Could not find the frame base for "Py_FatalError". ) at Python/pyth

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-07-07 Thread Ned Deily
Ned Deily added the comment: Chrys, /System/Library/OpenSSL/certs/cert.pem is empty on current OS X systems. As mentioned above, cert management is handled through Apple APIs. See http://developer.apple.com/library/ios/#DOCUMENTATION/Security/Conceptual/CertKeyTrustProgGuide/01introduction

[issue7457] Adding a read_pkg_file to DistributionMetadata

2013-07-08 Thread Ned Deily
Ned Deily added the comment: There have been a number of issues that have come up over the past few years due to Python 3.2+'s distutils being a subset of Python 2.7's as a result of the revert (29a3eda89995). Since circumstances have changed since the decision was made to do the

[issue14455] plistlib unable to read json and binary plist files

2013-07-08 Thread Ned Deily
Ned Deily added the comment: Ronald, I think v8 of the patch is missing (and plistlib_generate_testdata.py was uploaded twice). -- ___ Python tracker <http://bugs.python.org/issue14

[issue18420] os.rename FileNotFound complaining about dst, but it is src which is missing

2013-07-09 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. This problem is being tracked in Issue16074. -- nosy: +ned.deily resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> bad error message

[issue18428] IDLE startup error

2013-07-11 Thread Ned Deily
Ned Deily added the comment: To help see what the problem is open a Terminal shell window and type: cd $HOME ls -l .idlerc/* cat .idlerc/* Then try typing: /usr/local/bin/idle3.3 If that fails, try: /usr/local/bin/idle3.3 -n For all of the above, please update this issue with a copy and paste

[issue18428] IDLE startup error

2013-07-12 Thread Ned Deily
Ned Deily added the comment: If deleting .py files solved the problem, you probably had created a .py file with the same name as a Python standard library module. If that file is in your Documents folder (if you are using /Applications/Python3.3/IDLE.app) or your current working directory

[issue18441] Idle: Make test.support.requires('gui') skip when it should.

2013-07-13 Thread Ned Deily
Ned Deily added the comment: See Issue8716 for the history of check_tk_availability(). At the time, the Tk tests were the only ones trying to create real Tk objects (and thus causing crashes on some buildbot configurations). With the addition of IDLE tests that call Tk, it probably makes

[issue18442] Typo in developers.rst line 27

2013-07-13 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue18444] IDLE: Mac OS X pressing ctrl-A in Python shell moved cursor before the prompt, which then makes the keyboard unresponsive.

2013-07-14 Thread Ned Deily
Ned Deily added the comment: The reason for the observed behavior is that the built-in "IDLE Classic OSX" keyset, which is the default for OS X framework installs, has a different keybinding for "beginning-of-line". See Lib/idlelib/config-key.def [IDLE Classic OSX] .

[issue18444] IDLE: Mac OS X pressing ctrl-A in Python shell moved cursor before the prompt, which then makes the keyboard unresponsive.

2013-07-14 Thread Ned Deily
Ned Deily added the comment: er, Lib/idlelib/config-keys.def -- ___ Python tracker <http://bugs.python.org/issue18444> ___ ___ Python-bugs-list mailing list Unsub

[issue18447] Pydoc crashes on large contents

2013-07-14 Thread Ned Deily
Ned Deily added the comment: What platform and what versions of python and numpy are you using? I'm not able to reproduce a crash. But there is another report (Issue18356) about such a crash using Ubuntu 13.04. If that's what you are using, we will mark this as a duplicate. -

[issue18447] Pydoc crashes on large contents

2013-07-14 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> help(numpy) causes segfault on exit ___ Python tracker <http://bugs.python

[issue18452] Typo in Doc/howto/argparse.rst

2013-07-14 Thread Ned Deily
Changes by Ned Deily : -- type: enhancement -> versions: +Python 2.7, Python 3.3 ___ Python tracker <http://bugs.python.org/issue18452> ___ ___ Python-bugs-lis

[issue18460] .chm documentation files advertised in download.html but not there.

2013-07-15 Thread Ned Deily
Changes by Ned Deily : -- nosy: +georg.brandl, loewis ___ Python tracker <http://bugs.python.org/issue18460> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18444] IDLE: Mac OS X pressing ctrl-A in Python shell moved cursor before the prompt, which then makes the keyboard unresponsive.

2013-07-15 Thread Ned Deily
Ned Deily added the comment: I think that those two requirements, i.e. (1) a set of key bindings compatible with standard Cocoa text key bindings and (2) a set of key bindings kept in sync across all IDLE platforms, would be desirable but probably unattainable. A good next step would be for

[issue18462] Download > Other documentation page contains a link to a french poker site

2013-07-15 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. Since there doesn't seem to be an obvious replacement web page, I've removed the reference to this port. -- nosy: +ned.deily resolution: -> fixed stage: -> committed/rejected status: open -> close

[issue18463] Download > Other documentation page outdated/dead links

2013-07-15 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. The S60 section now links to a Wikipedia page which gives a better overview and to the Sourceforge download link for the original project. I've removed the dead link to the other VMS project. -- nosy: +ned.deily resol

<    37   38   39   40   41   42   43   44   45   46   >