[issue40893] tkinter: integrate TkDND support

2020-06-22 Thread Ned Deily
Ned Deily added the comment: > As for the buildbots, is this something I could help with @zach.ware is the best person to work with on any buildbot requirements. I've Nosyed him here. For the record, I haven't yet tried to test TkDND with the various current macOS Tk on current versi

[issue33738] PyIndex_Check conflicts with PEP 384

2020-06-22 Thread Ned Deily
Ned Deily added the comment: @serhiy, @Christian: Is there anything more needed to be done for this issue or can we close it? -- ___ Python tracker <https://bugs.python.org/issue33

[issue38377] test_asyncio.test_events.GetEventLoopTestsMixin.test_get_event_loop_new_process mixin breaks in the Unix environment without working /dev/shm

2020-06-18 Thread Ned Deily
Ned Deily added the comment: > Hum, test_resource_tracker_reused() failed twice on macOS, but it's unclear > to me if it's a regression caused by my change or not. It does appear to be caused by your change. I did a quick check with the 3.8 branch. With t

[issue41020] Could not build the ssl module!

2020-06-18 Thread Ned Deily
Ned Deily added the comment: You appear to be using the Developer Guide recipe for Python versions < 3.7. Try this one to get everything: CPPFLAGS="-I$(brew --prefix openssl)/include" \ LDFLAGS="-L$(brew --prefix openssl)/lib" \ --with-openssl=$(brew --prefix o

[issue40204] Docs build error with Sphinx 3.0 due to invalid C declaration

2020-06-17 Thread Ned Deily
Ned Deily added the comment: New changeset 0d70a98f449d58311aff3374ab5f203a401fc3bf by Ned Deily in branch '3.7': bpo-40204: Pin Sphinx version to 2.3.1 in Doc/Makefile https://github.com/python/cpython/commit/0d70a98f449d58311aff3374ab5f203a401fc3bf

[issue39580] Check for COMMAND_LINE_INSTALL variable in Python_Documentation.pkg

2020-06-17 Thread Ned Deily
Ned Deily added the comment: New changeset 966036af0e5e1dff8fedd423d90a246067537345 by Ned Deily in branch '3.7': bpo-39580: add check for CLI installation on macOS https://github.com/python/cpython/commit/966036af0e5e1dff8fedd423d90a246067537345

[issue41020] Could not build the ssl module!

2020-06-17 Thread Ned Deily
New submission from Ned Deily : Thank you for your report but please stop filing all of these separate issues. :) As is true on many platforms, you can't build Python on macOS without additional third-party libraries. The Python Developer's Guide, among other places, has more information

[issue38488] Update bundled pip to 20.1.1

2020-06-15 Thread Ned Deily
Ned Deily added the comment: Thanks, Xavier, for the original PR and for the various requested updates! And thanks everyone else for the reviews and follow-ups. Merged for release in 3.9.0, 3.8.4, and 3.7.8. -- resolution: -> fixed stage: patch review -> resolved status

[issue38488] Update bundled pip to 19.3

2020-06-15 Thread Ned Deily
Ned Deily added the comment: New changeset e63cc2f64668bd1d4581f8efa7089af7e08863b8 by Ned Deily in branch '3.8': bpo-38488: Upgrade bundled versions of pip & setuptools (GH-20491) (GH-20900) https://github.com/python/cpython/commit/e63cc2f64668bd1d4581f8efa7089af7e088

[issue38488] Update bundled pip to 19.3

2020-06-15 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +20083 pull_request: https://github.com/python/cpython/pull/20900 ___ Python tracker <https://bugs.python.org/issue38

[issue40893] tkinter integrate TkDND support

2020-06-15 Thread Ned Deily
Ned Deily added the comment: > What changes would be required to the MacOS installer to declare TkDND ... Let's get Windows settled first and then I will look at adding it to the macOS installer. Regarding other platforms: we don't provide binaries for anything other than our own Wind

[issue40808] test_venv fails with HOME=/ on AMD64 FreeBSD Non-Debug 3.x

2020-06-15 Thread Ned Deily
Ned Deily added the comment: The failing test was fixed in an updated replacement PR, PR 20491, for bpo-38488. -- nosy: +ned.deily resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Update bundled

[issue40119] ensurepip should use different pattern for pip/setuptool wheel files

2020-06-15 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. This issue has been resolved in 5f79f46612c351bde78a41c5264c42db21008868 (and backports) for Issue38488 which upgraded ensurepip to newer versions of pip and setuptools. -- nosy: +ned.deily resolution: -> duplicate st

[issue40448] ensurepip uses cache directory

2020-06-15 Thread Ned Deily
Change by Ned Deily : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.or

[issue38488] Update bundled pip to 19.3

2020-06-15 Thread Ned Deily
Ned Deily added the comment: New changeset 5f79f46612c351bde78a41c5264c42db21008868 by Xavier Fernandez in branch 'master': bpo-38488: Upgrade bundled versions of pip & setuptools (GH-20491) https://github.com/python/cpython/commit/5f79f46612c351bde78a41c5264c42db21008868 --

[issue40448] ensurepip uses cache directory

2020-06-15 Thread Ned Deily
Ned Deily added the comment: New changeset 4a3a682b12f93a03888e8b59f439bc5fe30d6055 by Krzysztof Konopko in branch 'master': bpo-40448: ensurepip: Do not use cache (GH-19812) https://github.com/python/cpython/commit/4a3a682b12f93a03888e8b59f439bc5fe30d6055

[issue40498] Holding spacebar on button widget permanently makes it SUNKEN even after release (and wait).

2020-06-12 Thread Ned Deily
Ned Deily added the comment: I agree that, if the problem is reproducible with wish, it's not a tkinter issue (which is just a wrapper around Tk calls). You may want to pursue it with the Tk project: https://core.tcl-lang.org/index.html -- nosy: +ned.deily resolution: -> th

[issue37193] Memory leak while running TCP/UDPServer with socketserver.ThreadingMixIn

2020-06-12 Thread Ned Deily
Ned Deily added the comment: > Any chance this can get into Python 3.7? Perhaps but there's a lot that needs to be done yet. Like any bugfix, it needs to be reviewed, merged to master, and get some buildbot exposure first before it is backported anywh

[issue40164] Upgrade Windows and macOS installer builds to OpenSSL 1.1.1g

2020-06-12 Thread Ned Deily
Ned Deily added the comment: Thanks, Steve and Srinivas! -- priority: deferred blocker -> versions: +Python 3.10 ___ Python tracker <https://bugs.python.org/issu

[issue40964] Connection to IMAP server cyrus.andrew.cmu.edu hangs

2020-06-12 Thread Ned Deily
Ned Deily added the comment: New changeset 0abb70ec93bfc6724199b7dd6c89294ce7d83072 by Ned Deily (Christian Heimes) in branch '3.7': bpo-40964: disable remote IMAP tests (GH-20836) https://github.com/python/cpython/commit/0abb70ec93bfc6724199b7dd6c89294ce7d83072

[issue40964] Connection to IMAP server cyrus.andrew.cmu.edu hangs

2020-06-12 Thread Ned Deily
Ned Deily added the comment: New changeset adce133378be75bcac4d61fd62a151852555000f by Ned Deily (Christian Heimes) in branch '3.8': bpo-40964: disable remote IMAP tests (GH-20836) https://github.com/python/cpython/commit/adce133378be75bcac4d61fd62a151852555000f

[issue40964] Connection to IMAP server cyrus.andrew.cmu.edu hangs

2020-06-12 Thread Ned Deily
Ned Deily added the comment: New changeset f91917908749cb595113f8d8428ae1d6241f0392 by Ned Deily (Christian Heimes) in branch '3.9': bpo-40964: disable remote IMAP tests (GH-20836) https://github.com/python/cpython/commit/f91917908749cb595113f8d8428ae1d6241f0392

[issue40964] Connection to IMAP server cyrus.andrew.cmu.edu hangs

2020-06-12 Thread Ned Deily
Ned Deily added the comment: New changeset 08b1bbab6bfa1ff726db13a9fc3885329f73dca4 by Christian Heimes in branch 'master': bpo-40964: disable remote IMAP tests (GH-20836) https://github.com/python/cpython/commit/08b1bbab6bfa1ff726db13a9fc3885329f73dca4

[issue40954] freeze.py aborts on macOS

2020-06-12 Thread Ned Deily
Ned Deily added the comment: Thank you for the report. At first glance, it looks like this might be a duplicate of languishing Issue24871 for which a patch exists. Perhaps you could try applying the patch there to freeze.py and see whether that helps. Unfortunately, freeze.py does not get

[issue28068] Error in freeze.py due to unguarded sys.abiflags usage under Windows

2020-06-12 Thread Ned Deily
Ned Deily added the comment: This appears to be a duplicate of Issue32217 which was fixed in 3.7.4 and 3.8.0. If that doesn't solve the problem, please reopen with a current failure. -- nosy: +ned.deily resolution: -> duplicate stage: patch review -> resolved status: open -&g

[issue40164] Upgrade Windows and macOS installer builds to OpenSSL 1.1.1g

2020-06-12 Thread Ned Deily
Ned Deily added the comment: Any chance of getting the Windows builds using 1.1.1g for the upcoming 3.7.8? -- ___ Python tracker <https://bugs.python.org/issue40

[issue36403] AsyncIterator on 3.7: __aiter__ no longer honors finally blocks

2020-06-12 Thread Ned Deily
Ned Deily added the comment: I note this is marked as a 3.7regression and still open. Since the cutoff for the final 3.7 bugfix mode release is in a few days, I'm assuming this means that 3.7 users will have to live with this regression. If you feel that is a problem, speak up now

[issue34226] cgi.parse_multipart() requires undocumented CONTENT-LENGTH in Python 3.7

2020-06-12 Thread Ned Deily
Ned Deily added the comment: I note this is marked as a 3.7regression and still open. Since the cutoff for the final 3.7 bugfix mode release is in a few days, I'm assuming this means that 3.7 users will have to live with this regression. If you feel that is a problem, speak up now

[issue37193] Memory leak while running TCP/UDPServer with socketserver.ThreadingMixIn

2020-06-12 Thread Ned Deily
Ned Deily added the comment: I note this is marked as a 3.7regression and still open. Since the cutoff for the final 3.7 bugfix mode release is in a few days, I'm assuming this means that 3.7 users will have to live with this regression. If you feel that is a problem, speak up now

[issue36225] [subinterpreters] Lingering subinterpreters should be implicitly cleared on shutdown

2020-06-12 Thread Ned Deily
Ned Deily added the comment: I note this is marked as a 3.7regression and still open. Since the cutoff for the final 3.7 bugfix mode release is in a few days, I'm assuming this means that 3.7 users will have to live with this regression. If you feel that is a problem, speak up now

[issue40940] How to update pip permanently for new venv?

2020-06-11 Thread Ned Deily
Ned Deily added the comment: Also, this issue has come up before and is discussed in more detail in Issue37107, so let's continue any further discussion there. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> ensurepip --upgrade do

[issue40940] How to update pip permanently for new venv?

2020-06-11 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. I have to agree that the behavior is a little bit counterintuitive but I believe everything is working as designed and documented. It all comes down to the fact that the ensurepip module is only concerned with the version of pip bundled

[issue32604] [subinterpreters] PEP 554 implementation: add interpreters module

2020-06-10 Thread Ned Deily
Change by Ned Deily : -- nosy: -ned.deily ___ Python tracker <https://bugs.python.org/issue32604> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40906] Unable to import module due to python unable to resolve dependecies

2020-06-10 Thread Ned Deily
Change by Ned Deily : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue40

[issue40932] subprocess docs should warn of shlex use on Windows

2020-06-10 Thread Ned Deily
Change by Ned Deily : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware title: subprocess docs don't qualify the instruction to use shlex.quote by OS -> subprocess docs should warn of shlex use on Windows versions: +Python 3.10, Python

[issue40934] Default RLock does not work well for Manager Condition

2020-06-10 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue40934> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29242] Crash on GC when compiling PyPy

2020-06-10 Thread Ned Deily
Ned Deily added the comment: I agree with Zachery that this issue should be closed. There has been no activity on it since it was opened three years ago and no indication that it has been an ongoing problem. I'm not even sure what the current state of using cPython 3 to build PyPy

[issue40935] Links to Python3 docs for some libs return 404

2020-06-10 Thread Ned Deily
Ned Deily added the comment: Thanks for the report! If the links are always to ../3/.. it should be easy to set up permanent redirects on the website to the most appropriate webpage in the current Python 3 docset. If someone could produce a list of 2 to 3 mappings here, creating

[issue40860] Exception in multiprocessing/context.py under load

2020-06-10 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue40860> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40928] test_decimal.CWhitebox.test_maxcontext_exact_arith() shows "malloc: can't allocate region" on MacOS

2020-06-09 Thread Ned Deily
Change by Ned Deily : -- nosy: +ronaldoussoren ___ Python tracker <https://bugs.python.org/issue40928> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39791] New `files()` api from importlib_resources.

2020-06-09 Thread Ned Deily
Ned Deily added the comment: Note that the most recent commits have introduced a critical regression in importlib.resources.path() that breaks the certifi package from PyPI and presumably other users of path(). See Issue40924. -- nosy: +ned.deily

[issue40924] Recent importlib change breaks most recent certifi == 2020.4.5.2

2020-06-09 Thread Ned Deily
New submission from Ned Deily : The very recent latest commits for Issue39791, "New `files()` api from importlib_resources", have broken the popular certifi package, a package which provides a basic set of Root Certificates for TLS secure network connection verification. Among o

[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-06-07 Thread Ned Deily
Ned Deily added the comment: New changeset 37eed5a9ee7c802e7151ee9939ed604032886639 by Ned Deily in branch 'master': bpo-40741: Update macOS installer to use SQLite 3.32.2. (GH-20705) https://github.com/python/cpython/commit/37eed5a9ee7c802e7151ee9939ed604032886639

[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-06-07 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +19920 pull_request: https://github.com/python/cpython/pull/20705 ___ Python tracker <https://bugs.python.org/issue40

[issue40594] urljoin since 3.5 incorrectly filters out double slashes

2020-06-06 Thread Ned Deily
Change by Ned Deily : -- nosy: +orsenthil ___ Python tracker <https://bugs.python.org/issue40594> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40893] tkinter integrate TkDND support

2020-06-06 Thread Ned Deily
Change by Ned Deily : -- nosy: +gpolo, serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue40893> ___ ___ Python-bugs-list mailing list Unsub

[issue17506] Improve IDLE news handling

2020-06-06 Thread Ned Deily
Ned Deily added the comment: A suggestion: rather than trying to maintain a separate IDLE news file ("don't repeat yourself), it might be much easier to link to the IDLE section in each releases's formatted CHANGELOG now included in Python 3 docsets. For example: https://docs.python.

[issue40743] [CMake] It's 2020, where is CMake?

2020-06-06 Thread Ned Deily
Ned Deily added the comment: Thanks for your suggestion but changing build systems is a *huge* undertaking for cPython thanks to the many different platforms that we have added support to over the years and the many, many customizations that have been made. cmake would certainly be one

[issue40840] lzma.h file not found building on macOS

2020-06-01 Thread Ned Deily
Ned Deily added the comment: For Homebrew users, the Devguide currently recommends: $ brew install openssl xz gdbm ./configure --with-pydebug --with-openssl=$(brew --prefix openssl) I don't use Homebrew myself so I may be missing something obvious but, after a bit of experimentation, I

[issue40754] Test installers before releasing (ModuleNotFoundErrors)

2020-05-30 Thread Ned Deily
Ned Deily added the comment: > The Windows installer also runs pip and IDLE tests before being published > [...] That's good and reminds me that I forgot to mention that for the macOS installer, besides the already mentioned tests, we also download, install, and smoke test a third

[issue40754] Test installers before releasing (ModuleNotFoundErrors)

2020-05-29 Thread Ned Deily
Ned Deily added the comment: > So it seems that only Linux has "installed" builbot tests. I suppose the next > step is adding some macOS and Windows ones. Having more buildbots test from "installed" locations, rather than the build directory, is good. But that'

[issue33111] Merely importing tkinter breaks parallel code (multiprocessing, sharedmem)

2020-05-29 Thread Ned Deily
Ned Deily added the comment: In Python 3.8, the default start method for multiprocessing when run on macOS is now "spawn" instead of "fork". "Changed in version 3.8: On macOS, the spawn start method is now the default. The fork start method should be conside

[issue25247] Tkinter modules built successfully but removed because they could not be imported

2020-05-29 Thread Ned Deily
Ned Deily added the comment: It looks like this is the same issue that has been discussed in later Issue31817. Since there has been more discussion there, let's close this as a duplicate of that one. -- nosy: +ned.deily resolution: -> duplicate stage: -> resolved status

[issue40812] _tkinter build failed when install Python-3.6.10

2020-05-29 Thread Ned Deily
Ned Deily added the comment: Since you have already found and commented on Issue31817, closing this as a duplicate of it. -- nosy: +ned.deily resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Compilation Error with Python 3.6.1/3.6.3

[issue31817] Compilation Error with Python 3.6.1/3.6.3 with Tkinter

2020-05-29 Thread Ned Deily
Ned Deily added the comment: @zhang, Did you try the solution given by dplusplus in the previous message (msg319861)? -- ___ Python tracker <https://bugs.python.org/issue31

[issue40770] RFE: Run linkchecker on documentation on the CI

2020-05-28 Thread Ned Deily
Ned Deily added the comment: I think our CI checks already take too long to run and use possibly more than our fair share of global open source resources (provided by GitHub, Travis, MS Azure) especially considering how infrequently you would expect to find a problem and the low severity

[issue40770] RFE: Run linkchecker on documentation on the CI

2020-05-28 Thread Ned Deily
Change by Ned Deily : -- nosy: +mdk ___ Python tracker <https://bugs.python.org/issue40770> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue30665] pass big values for arg to fcntl.ioctl

2020-05-27 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 3.10, Python 3.9 -Python 2.7, Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issue30

[issue39073] [security] email module incorrect handling of CR and LF newline characters in Address objects.

2020-05-27 Thread Ned Deily
Ned Deily added the comment: New changeset 7df32f844efed33ca781a016017eab7050263b90 by Miss Islington (bot) in branch '3.6': bpo-39073: validate Address parts to disallow CRLF (GH-19007) (#19224) https://github.com/python/cpython/commit/7df32f844efed33ca781a016017eab7050263b90

[issue40797] multiprocessing.Semaphore has undocumented get_value() method

2020-05-27 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue40797> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40798] The deprecated-removed Sphinx extension need to change the error message based on the Python version

2020-05-27 Thread Ned Deily
Change by Ned Deily : -- nosy: +mdk ___ Python tracker <https://bugs.python.org/issue40798> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue39580] Check for COMMAND_LINE_INSTALL variable in Python_Documentation.pkg

2020-05-27 Thread Ned Deily
Ned Deily added the comment: Thanks for the PR! It looks reasonable but I do want to test it first on older macOS versions that we support before merging it. I'll do that before the next releases. -- versions: +Python 3.10, Python 3.7, Python 3.9

[issue27657] urlparse fails if the path is numeric

2020-05-27 Thread Ned Deily
Change by Ned Deily : -- stage: patch review -> needs patch versions: +Python 3.10, Python 3.9 -Python 2.7, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue40741] Upgrade to SQLite v3.32.1 in Windows and macOS builds

2020-05-27 Thread Ned Deily
Ned Deily added the comment: Note: Issue40784 documents a test failure introduced by running with v3.32+. -- ___ Python tracker <https://bugs.python.org/issue40

[issue40776] Python 3.7.6 installation issue on mac os x 10.6.8

2020-05-26 Thread Ned Deily
Ned Deily added the comment: Thanks for your report. Because of very low usage and the increasing difficulty of supporting new features and bug fixes on very old versions of macOS, like 10.6.x, we no longer provide binary installers on python.org for macOS versions earlier than 10.9. On top

[issue40657] Resource leaks with threading.Thread

2020-05-23 Thread Ned Deily
Change by Ned Deily : -- nosy: +vstinner ___ Python tracker <https://bugs.python.org/issue40657> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40747] sysconfig.get_config_var("py_version_nodot") should return 3_10

2020-05-23 Thread Ned Deily
Change by Ned Deily : -- nosy: +lukasz.langa, pablogsal ___ Python tracker <https://bugs.python.org/issue40747> ___ ___ Python-bugs-list mailing list Unsub

[issue38946] IDLE on macOS 10.15 Catalina does not open double-clicked files if app already launched

2020-05-22 Thread Ned Deily
Ned Deily added the comment: Irv, thanks for the feedback and the attempt. I think we had a little bit of a misunderstanding on our end so I don't think we need you to try anything more for this problem. Terry, I apologize if I left the impression that there was some doubt about whether

[issue40734] /usr/bin surprisingly in sys.path under IDLE

2020-05-22 Thread Ned Deily
Change by Ned Deily : -- nosy: +doko ___ Python tracker <https://bugs.python.org/issue40734> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue40733] mention IDLE in main python ocs page

2020-05-22 Thread Ned Deily
Change by Ned Deily : -- components: +IDLE nosy: +terry.reedy ___ Python tracker <https://bugs.python.org/issue40733> ___ ___ Python-bugs-list mailing list Unsub

[issue38946] IDLE on macOS 10.15 Catalina does not open double-clicked files if app already launched

2020-05-21 Thread Ned Deily
Ned Deily added the comment: Thank you for going to the trouble to produce the movie, Irv! It was very helpful. It turns out the disappearing window issue is because you are using the macOS 10.6+ Python 3.7.3 installer variant rather than the macOS 10.9+ installer variant. For some reason

[issue40448] ensurepip uses cache directory

2020-05-20 Thread Ned Deily
Ned Deily added the comment: Thanks for the PR. We should get a review from at least one of the pip developers. @oradyunsg, @dstufft, @paul.moore, opinions? -- nosy: +Marcus.Smith, ned.deily, paul.moore versions: +Python 3.10 ___ Python tracker

[issue31904] Python should support VxWorks RTOS

2020-05-20 Thread Ned Deily
Change by Ned Deily : -- nosy: -ned.deily versions: +Python 3.10 -Python 3.8 ___ Python tracker <https://bugs.python.org/issue31904> ___ ___ Python-bugs-list m

[issue34956] _tkinter built on macOS 10.14 does not link to Tcl and Tk in /Library/Frameworks

2020-05-20 Thread Ned Deily
Ned Deily added the comment: New changeset bac170cd93bbae939fcb29ccc6b5d423f7f4a089 by Ned Deily in branch 'master': bpo-34956: edit and format better NEWS item in 3.9.0b1 changelog (GH-20255) https://github.com/python/cpython/commit/bac170cd93bbae939fcb29ccc6b5d423f7f4a089

[issue38946] IDLE on macOS 10.15 Catalina does not open double-clicked files if app already launched

2020-05-20 Thread Ned Deily
Ned Deily added the comment: Thanks, Andrew, for the offer. I think we have enough to go on right now but we may want to touch base a bit later. >From your comment about how IDLE on macOS is different than it is on Windows >or Linux, I assume that means you may be new to IDLE on macO

[issue34956] _tkinter built on macOS 10.14 does not link to Tcl and Tk in /Library/Frameworks

2020-05-20 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +19540 pull_request: https://github.com/python/cpython/pull/20255 ___ Python tracker <https://bugs.python.org/issue34

[issue38946] IDLE on macOS 10.15 Catalina does not open double-clicked files if app already launched

2020-05-20 Thread Ned Deily
Ned Deily added the comment: Irv, I'm sorry you are having problems and I think it is very reasonable to bump the priority of the issue as you are not alone, even though, as Terry notes, a complete resolution may require changes elsewhere. I am looking more into this now. macOS 10.15

[issue40684] make install doesn't respect configure --with-platlibdir=lib64

2020-05-19 Thread Ned Deily
Change by Ned Deily : -- nosy: +ned.deily ___ Python tracker <https://bugs.python.org/issue40684> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26317] _scproxy and Python Launcher fail to build wtih GNU gcc on macOS 10.13+

2020-05-18 Thread Ned Deily
Ned Deily added the comment: New changeset 951ab58024de9b5a21f0b979cdbea51e1049d781 by Ned Deily in branch 'master': Revert "bpo-26317: Support OBJC and OBJCXX configure command line variables (GH-20176)" (GH-20182) https://github.com/python/cpyt

[issue26317] _scproxy and Python Launcher fail to build wtih GNU gcc on macOS 10.13+

2020-05-18 Thread Ned Deily
Ned Deily added the comment: I'm not sure yet exactly what the problem is but it's almost certainly a difference between GNU make and BSD make and something that needs to be checked on FreeBSD. With the 3.9.0b1 cutoff coming very soon, I likely won't be able to test on FreeBSD before

[issue40164] Upgrade Windows and macOS installer builds to OpenSSL 1.1.1g

2020-05-18 Thread Ned Deily
Ned Deily added the comment: I believe the Windows builds are still using 1.1.1f. -- ___ Python tracker <https://bugs.python.org/issue40164> ___ ___ Python-bug

[issue26317] _scproxy and Python Launcher fail to build wtih GNU gcc on macOS 10.13+

2020-05-18 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +19483 pull_request: https://github.com/python/cpython/pull/20182 ___ Python tracker <https://bugs.python.org/issue26

[issue26317] _scproxy and Python Launcher fail to build wtih GNU gcc on macOS 10.13+

2020-05-18 Thread Ned Deily
Ned Deily added the comment: Sorry about that! Looking now. -- ___ Python tracker <https://bugs.python.org/issue26317> ___ ___ Python-bugs-list mailin

[issue34956] _tkinter built on macOS 10.14 does not link to Tcl and Tk in /Library/Frameworks

2020-05-18 Thread Ned Deily
Change by Ned Deily : -- pull_requests: -19480 ___ Python tracker <https://bugs.python.org/issue34956> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39162] setup.py not picking up tkinter headers from non-system macOS Tcl and Tk frameworks

2020-05-18 Thread Ned Deily
Ned Deily added the comment: Thanks for the report and the PR. Yes, detect_tkinter_darwin() had a number of problems due mainly to how Apple has first deprecated and more recently removed the option to have header files installed in the running system. Plus some nasty quirks of how the Tcl

[issue26317] _scproxy and Python Launcher fail to build wtih GNU gcc on macOS 10.13+

2020-05-18 Thread Ned Deily
Ned Deily added the comment: Thanks everyone for their comments and reviews and a very big thank you to Jeffrey for working through the details and providing a solid PR. The change will appear in the 3.9.0b1 pre-release. -- resolution: -> fixed stage: patch review -> re

[issue26317] Build Problem with GCC + Macintosh OS X 10.11 El Capitain

2020-05-18 Thread Ned Deily
Ned Deily added the comment: New changeset 0da546665075aefbb476e192ed64122d340164f4 by Ned Deily in branch 'master': bpo-26317: Support OBJC and OBJCXX configure command line variables (GH-20176) https://github.com/python/cpython/commit/0da546665075aefbb476e192ed64122d340164f4

[issue26317] Build Problem with GCC + Macintosh OS X 10.11 El Capitain

2020-05-18 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +19474 pull_request: https://github.com/python/cpython/pull/20176 ___ Python tracker <https://bugs.python.org/issue26

[issue34956] _tkinter built on macOS 10.14 does not link to Tcl and Tk in /Library/Frameworks

2020-05-18 Thread Ned Deily
Ned Deily added the comment: New changeset 1731d6da263e9a2d6e783e87a8a5d5ce58fda46d by Ned Deily in branch 'master': bpo-34956: Fix macOS _tkinter use of Tcl/Tk in /Library/Frameworks (GH-20171) https://github.com/python/cpython/commit/1731d6da263e9a2d6e783e87a8a5d5ce58fda46d

[issue34956] _tkinter built on macOS 10.14 does not link to Tcl and Tk in /Library/Frameworks

2020-05-18 Thread Ned Deily
Change by Ned Deily : -- keywords: +patch pull_requests: +19470 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20171 ___ Python tracker <https://bugs.python.org/issu

[issue35569] Expose RFC 3542 IPv6 socket options on macOS

2020-05-17 Thread Ned Deily
Ned Deily added the comment: New changeset fa098b6bc8662cceb944ad5a4a3e5eb63d3cb517 by Ned Deily in branch 'master': bpo-35569: add Erlend to Misc/ACKS (GH-20146) https://github.com/python/cpython/commit/fa098b6bc8662cceb944ad5a4a3e5eb63d3cb517

[issue35569] Expose RFC 3542 IPv6 socket options on macOS

2020-05-17 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +19451 pull_request: https://github.com/python/cpython/pull/20146 ___ Python tracker <https://bugs.python.org/issue35

[issue35569] Expose RFC 3542 IPv6 socket options on macOS

2020-05-17 Thread Ned Deily
Ned Deily added the comment: Thanks for the PR! Merged for 3.9.0b1 -- resolution: -> fixed stage: patch review -> resolved status: open -> closed title: OSX: Enable IPV6_RECVPKTINFO -> Expose RFC 3542 IPv6 socket options on macOS versions:

[issue35569] OSX: Enable IPV6_RECVPKTINFO

2020-05-17 Thread Ned Deily
Ned Deily added the comment: New changeset 9a45bfe6f4aedd2a9d94cb12aa276057b15d8b63 by Erlend Egeberg Aasland in branch 'master': bpo-35569: Expose RFC 3542 IPv6 socket options on macOS (GH-19526) https://github.com/python/cpython/commit/9a45bfe6f4aedd2a9d94cb12aa276057b15d8b63

[issue33797] json int encoding incorrect for dbus.Byte

2020-05-16 Thread Ned Deily
Change by Ned Deily : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue33797> ___

[issue40622] Tests fail with python3.6 built with VS2019

2020-05-15 Thread Ned Deily
Ned Deily added the comment: P.S. If you *do* want to build the current HEAD of the 3.6 branch including as yet unreleased fixes: git checkout 3.6 If you want to build a specific release, use the v^ tags provided for each release: git checkout v3.6.8

[issue40622] Tests fail with python3.6 built with VS2019

2020-05-15 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. Unfortunately, you are not actually building Python 3.6 here. Revision f3a5b7a is on the master branch, not 3.6. The fact that you are seeing a failure of test_peg_generator confirms that you are building from master (i.e. a pre-release

[issue40477] Python Launcher app on macOS 10.15 Catalina fails to run scripts

2020-05-15 Thread Ned Deily
Ned Deily added the comment: > After your final fix, if I understood you correctly, we will no longer have > to open Terminal? That's correct. That's the way the Launcher works on previous version on macOS. > will it ever be possible to not have the terminal run in the future

[issue40477] Python Launcher app on macOS 10.15 Catalina fails to run scripts

2020-05-14 Thread Ned Deily
Ned Deily added the comment: Glenn, you will need to change the Interpreter setting in the Launcher Preferences panel. In the box that says "/usr/bin/pythonw", type "/usr/local/bin/python3"; that setting will then be remembered on

[issue40477] Python Launcher app on macOS 10.15 Catalina fails to run scripts

2020-05-14 Thread Ned Deily
Ned Deily added the comment: An update on this: it turns out there are two different problems with the launcher app as a result of security changes introduced in macOS 10.15 Catalina. The first is that the launcher did not execute files launched with it (for example, by double-clicking

<    5   6   7   8   9   10   11   12   13   14   >