[issue46914] On Osx Monterey(12.x), Logging.handlers.SysLogHandler does not work

2022-03-03 Thread Ned Deily
Change by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue46914> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46894] make install DESTDIR= uses /lib/python3.10/lib-dynload out of DESTDIR

2022-03-02 Thread Ned Deily
Ned Deily added the comment: Why are you using --prefix=/ ? Or better yet, please explain you are trying to accomplish. A normal case would be --prefix=/some/path other than / and not use DESTDIR. You won't be able to install into / on a current macOS system anyway. -- nosy

[issue46901] Deprecate and eventually remove macOS-only PYTHONEXECUTABLE environ variable

2022-03-02 Thread Ned Deily
New submission from Ned Deily : The PYTHONEXECUTABLE is a holdover from old Python 2 days; AFAIK, it was specifically to support the Build Applet tool which could be used to build macOS app bundles in Python 2. The only place in current Py3 releases where it is used is in the standard

[issue46889] enable sqlite math functions on macos

2022-03-02 Thread Ned Deily
Ned Deily added the comment: Thanks for the suggested PR. And thanks for noticing, Erlend! I should have checked with you first! To reiterate what I noted on the PR, this (reduntant) change would only have affected the Pythons provided by the python.org macOS installers; this behavior

[issue46890] venv does not create "python" link in python 3.11

2022-03-02 Thread Ned Deily
Ned Deily added the comment: To reiterate, the example I gave had nothing to do with using a venv. The value of sys._base_executable is now always wrong whether or not using a venv. The consequences are more obvious when using a venv

[issue45373] ./configure --enable-optimizations should enable LTO

2022-03-01 Thread Ned Deily
Ned Deily added the comment: Sorry, this slipped off my radar and I haven't gone back and checked older versions of macOS. But it certainly is true that at least with the current versions of the Apple Developer Tools (either the Command Line Tools or Xcode) for macOS 11 (Big Sur) and macOS

[issue46870] Improper Input Validation in urlparse

2022-03-01 Thread Ned Deily
Change by Ned Deily : -- nosy: +orsenthil ___ Python tracker <https://bugs.python.org/issue46870> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46876] Walrus operator not in help

2022-03-01 Thread Ned Deily
Change by Ned Deily : -- assignee: -> docs@python components: +Documentation nosy: +docs@python stage: -> needs patch versions: +Python 3.11 ___ Python tracker <https://bugs.python.org/i

[issue42982] Update suggested number of iterations for pbkdf2_hmac()

2022-03-01 Thread Ned Deily
Ned Deily added the comment: New changeset 7dbb2f8eaf07c105f4d2bb0fe61763463e68372d by Miss Islington (bot) in branch '3.10': bpo-42982: update pbkdf2 example & add another link (GH-30966) (#30968) https://github.com/python/cpython/commit/7dbb2f8eaf07c105f4d2bb0fe61763463e68

[issue46890] venv does not create "python" link in python 3.11

2022-03-01 Thread Ned Deily
Ned Deily added the comment: As Ronald notes, the issue isn't in venv, it's that the value of sys._base_executable has changed between 3.10 and 3.11 for macOS builds. $ /usr/local/bin/python3.10 Python 3.10.2 (v3.10.2:a58ebcc701, Jan 13 2022, 14:50:16) [Clang 13.0.0 (clang-1300.0.29.30

[issue38576] CVE-2019-18348: CRLF injection via the host part of the url passed to urlopen()

2022-02-28 Thread Ned Deily
Change by Ned Deily : -- pull_requests: -29746 ___ Python tracker <https://bugs.python.org/issue38576> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46868] Improve performance of math.prod with bignums (and functools.reduce?)

2022-02-26 Thread Ned Deily
Change by Ned Deily : -- nosy: +mark.dickinson, rhettinger, tim.peters ___ Python tracker <https://bugs.python.org/issue46868> ___ ___ Python-bugs-list mailin

[issue46854] Failed to compile static python3.7.12

2022-02-25 Thread Ned Deily
Ned Deily added the comment: “I would like to know what environment is the official recommendation for static python3.7 compilation.” There is no official recommendation. As I’ve mentioned, we normally do not build with modified Modules/Setup configurations when developing and releasing

[issue46854] Failed to compile static python3.7.12

2022-02-25 Thread Ned Deily
Ned Deily added the comment: P.S. One other suggestion: try building a non-static version of Python 3.7 first, i.e. without modifying Modules/Setup, and, once you get that working, it should be easier to examine the output from the build and copy those paths that setup.py found into your

[issue46854] Failed to compile static python3.7.12

2022-02-25 Thread Ned Deily
Ned Deily added the comment: Sorry, I'll repeat: "Successfully building a statically-linked version of Python depends greatly on the environment in which you are trying to build it and is really beyond the scope of this bug tracker." Note, a quick web search found this page wh

[issue46854] Failed to compile static python3.7.12

2022-02-25 Thread Ned Deily
Ned Deily added the comment: Successfully building a statically-linked version of Python depends greatly on the environment in which you are trying to build it and is really beyond the scope of this bug tracker. You don't say on which OS platform and version you are attempting this so

[issue46756] Incorrect authorization check in urllib.request

2022-02-25 Thread Ned Deily
Ned Deily added the comment: New changeset 31fef7edf951fb759004c58ae64df18bc32ea376 by Miss Islington (bot) in branch '3.7': bpo-46756: Fix authorization check in urllib.request (GH-31353) (GH-31573) https://github.com/python/cpython/commit/31fef7edf951fb759004c58ae64df18bc32ea376

[issue46794] Please update bundled libexpat to 2.4.6 with security fixes (5 CVEs)

2022-02-23 Thread Ned Deily
Ned Deily added the comment: New changeset 15d7594d9974cfef10e65cbb01161168c42abe9d by Miss Islington (bot) in branch '3.7': bpo-46794: Bump up the libexpat version into 2.4.6 (GH-31487) (GH-31521) https://github.com/python/cpython/commit/15d7594d9974cfef10e65cbb01161168c42abe9d

[issue46232] Client certificates with UniqueIdentifier in the subject break ssl.peer_certificate()

2022-02-21 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg413642 ___ Python tracker <https://bugs.python.org/issue46232> ___ ___ Python-bugs-list m

[issue46798] xml.etree.ElementTree: get() doesn't return default value, always ATTLIST value

2022-02-21 Thread Ned Deily
Change by Ned Deily : -- nosy: +eli.bendersky, scoder ___ Python tracker <https://bugs.python.org/issue46798> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46786] embed, source, track, wbr HTML elements not considered empty

2022-02-21 Thread Ned Deily
Change by Ned Deily : -- nosy: +eli.bendersky, scoder ___ Python tracker <https://bugs.python.org/issue46786> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41028] Move docs.python.org language and version switcher out of cpython

2022-02-21 Thread Ned Deily
Change by Ned Deily : -- stage: commit review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue41028> ___ ___ Pyth

[issue46811] Test suite needs adjustments for Expat >=2.4.5

2022-02-21 Thread Ned Deily
Ned Deily added the comment: New changeset d4f5bb912e67299b59b814b89a5afd9a8821a14e by Miss Islington (bot) in branch '3.7': bpo-46811: Make test suite support Expat >=2.4.5 (GH-31453) (GH-31471) https://github.com/python/cpython/commit/d4f5bb912e67299b59b814b89a5afd9a8821a

[issue46400] Please update bundled libexpat to 2.4.4 with security fixes (CVE-2021-45960)

2022-02-21 Thread Ned Deily
Ned Deily added the comment: New changeset 5fdacac8cecb123ae12669ceb3504b2f41075c20 by Dong-hee Na in branch '3.7': bpo-46400: Update libexpat from 2.4.1 to 2.4.4 (GH-31022) (GH-31298) https://github.com/python/cpython/commit/5fdacac8cecb123ae12669ceb3504b2f41075c20

[issue46400] Please update bundled libexpat to 2.4.4 with security fixes (CVE-2021-45960)

2022-02-21 Thread Ned Deily
Change by Ned Deily : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue46784] Duplicated symbols when linking embedded Python with libexpat

2022-02-21 Thread Ned Deily
Ned Deily added the comment: New changeset 61f3c308e435c5294e674ef59fed1d51f47e0089 by Miss Islington (bot) in branch '3.7': bpo-46784: Add newly exported expat symbols to the namespace. (GH-31397) (GH-31418) https://github.com/python/cpython/commit/61f3c308e435c5294e674ef59fed1d51f47e0089

[issue45618] Documentation builds fail with Sphinx 3.2.1

2022-02-21 Thread Ned Deily
Ned Deily added the comment: New changeset 7a5850987010ca5cb0f1e2844cfe183935916e7e by Ned Deily in branch '3.7': bpo-45618: Fix documentation build by pinning Docutils version to 0.17.1 (GH-31476) https://github.com/python/cpython/commit/7a5850987010ca5cb0f1e2844cfe183935916e7e

[issue45618] Documentation builds fail with Sphinx 3.2.1

2022-02-21 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +29606 pull_request: https://github.com/python/cpython/pull/31476 ___ Python tracker <https://bugs.python.org/issue45

[issue45641] Error In opening a file through tkinter on macOS Monterey

2022-02-21 Thread Ned Deily
Change by Ned Deily : -- pull_requests: -29603 ___ Python tracker <https://bugs.python.org/issue45641> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46400] Please update bundled libexpat to 2.4.4 with security fixes (CVE-2021-45960)

2022-02-18 Thread Ned Deily
Ned Deily added the comment: expat 2.4.5 was released today (Issue46794). -- nosy: +ned.deily ___ Python tracker <https://bugs.python.org/issue46400> ___ ___

[issue46784] Duplicated symbols when linking embedded Python with libexpat

2022-02-17 Thread Ned Deily
Change by Ned Deily : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue46784> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46755] QueueHandler logs stack_info twice

2022-02-16 Thread Ned Deily
Change by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue46755> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46749] Support cross compilation on macOS

2022-02-14 Thread Ned Deily
Change by Ned Deily : -- components: +macOS -Cross-Build nosy: +ronaldoussoren ___ Python tracker <https://bugs.python.org/issue46749> ___ ___ Python-bugs-list m

[issue46749] Support cross compilation on macOS

2022-02-14 Thread Ned Deily
Ned Deily added the comment: We don't currently support cross-building a single macOS architecture on another, i.e. building an x86_64 only build on an Apple Silicon Mac. However, we do support building a multi-architecture build on either on current releases of Python 3.9 and 3.10

[issue46691] sysconfig.get_platform() raises ValueError on macOS if '-arch' is present in CFLAGS but doesn't refer to the '-arch' compiler flag

2022-02-09 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg412958 ___ Python tracker <https://bugs.python.org/issue46691> ___ ___ Python-bugs-list m

[issue46691] sysconfig.get_platform() raises ValueError on macOS if '-arch' is present in CFLAGS but doesn't refer to the '-arch' compiler flag

2022-02-09 Thread Ned Deily
Ned Deily added the comment: Thanks for the report; I don't recall this coming up before. Of course, the easy workaround is to avoid using "-arch" in CFLAGS paths and the like, but we should fix this. -- ___ Python track

[issue46691] sysconfig.get_platform() raises ValueError on macOS if '-arch' is present in CFLAGS but doesn't refer to the '-arch' compiler flag

2022-02-09 Thread Ned Deily
Ned Deily added the comment: Thanks for the report; I don't recall this coming up before. Of course, the easy workaround is to avoid using "arch" in CFLAGS paths and the like, but we should fix this. -- components: +macOS nosy: +ned.deily, ronaldoussoren type: crash ->

[issue46687] Update pyexpat for CVE-2021-45960

2022-02-08 Thread Ned Deily
Ned Deily added the comment: Duplicate of Issue46400 ? -- nosy: +ned.deily ___ Python tracker <https://bugs.python.org/issue46687> ___ ___ Python-bugs-list m

[issue46662] Lib/sqlite3/dbapi2.py: convert_timestamp function failed to correctly parse timestamp

2022-02-07 Thread Ned Deily
Change by Ned Deily : -- nosy: +erlendaasland ___ Python tracker <https://bugs.python.org/issue46662> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34191] argparse: Missing subparser error message should be more clear

2022-02-07 Thread Ned Deily
Change by Ned Deily : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> argparse fails with required subparsers, un-named dest, and empty argv ___ Python tracker <https://bugs.python

[issue45948] Unexpected instantiation behavior for xml.etree.ElementTree.XMLParser(target=None)

2022-02-07 Thread Ned Deily
Change by Ned Deily : -- nosy: +eli.bendersky, scoder ___ Python tracker <https://bugs.python.org/issue45948> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46573] Python modules such as pyglet or pygame crash Python when tkinter message boxes are opened on MacOS.

2022-02-03 Thread Ned Deily
Ned Deily added the comment: Thanks, Marc and Ronald, for the analysis. And thanks for bringing up the issue, Remy. Perhaps you can verify that Ronald's suggestion of importing and launching Tk before calling pyglet or pygame works for you and, if so, follow up with those projects

[issue46573] Python modules such as pyglet or pygame crash Python when tkinter message boxes are opened on MacOS.

2022-02-02 Thread Ned Deily
Ned Deily added the comment: Thanks for looking into this, Ronald. Before we close this as a Python issue, perhaps Marc might have a suggestion on what should be done here from a Tk perspective. -- nosy: +culler status: pending -> open ___ Pyt

[issue46602] Subtle trouble with heredoc append in configure.

2022-02-01 Thread Ned Deily
Ned Deily added the comment: Merged for release in 3.11.0a5. We *could* backport it to 3.10 and 3.9 but that involves regenerating configure again for each. It's probably not high enough priority to justify the churn for bugfix releases. -- resolution: -> fixed stage: patch rev

[issue46602] Subtle trouble with heredoc append in configure.

2022-02-01 Thread Ned Deily
Ned Deily added the comment: New changeset b1288964e31069bdf81abe560c82874f6f620928 by adanhawth in branch 'main': bpo-46602: Do not append conftest.c (GH-31062) https://github.com/python/cpython/commit/b1288964e31069bdf81abe560c82874f6f620928 -- nosy: +ned.deily

[issue46573] Python modules such as pyglet or pygame crash Python when tkinter message boxes are opened on MacOS.

2022-02-01 Thread Ned Deily
Ned Deily added the comment: > If I interpret the information I posted earlier correctly this is a bug in > Tkinter [...] Tkinter? Or Tk itself? -- ___ Python tracker <https://bugs.python.org/i

[issue46540] dylibs not loading properly from NFS mounts

2022-02-01 Thread Ned Deily
Ned Deily added the comment: > I currently do not have access to a more up-to-date Mac OS but once I do I will test and report anything unusual back. Good luck! Since there's a good chance that this issue will languish in our open backlog, I am going to mark it as closed for now. But ple

[issue45925] Upgrade macOS and Windows installers to use SQLite 3.37.2

2022-02-01 Thread Ned Deily
Change by Ned Deily : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue45925] Upgrade macOS and Windows installers to use SQLite 3.37.2

2022-02-01 Thread Ned Deily
Ned Deily added the comment: New changeset a22dd00f2da4f6ff96f58fd8d551f16bdb870c8d by Miss Islington (bot) in branch '3.9': bpo-45925: Update macOS installer to SQLite 3.37.2 (GH-30921) (GH-31057) (GH-31059) https://github.com/python/cpython/commit/a22dd00f2da4f6ff96f58fd8d551f16bdb870c8d

[issue46601] macOS installer "Install Certificates.command" fails if pip is not installed

2022-02-01 Thread Ned Deily
Ned Deily added the comment: Thanks for opening the issue. From the pythondotorg issue, the output from the failed command: Last login: Sat May 8 17:08:01 on ttys005 /Applications/Python\ 3.9/Install\ Certificates.command ; exit; perl: warning: Setting locale failed. perl

[issue46598] ElementTree: wrong XML prolog for the utf-8-sig encoding

2022-02-01 Thread Ned Deily
Change by Ned Deily : -- nosy: +eli.bendersky, scoder versions: +Python 3.11 ___ Python tracker <https://bugs.python.org/issue46598> ___ ___ Python-bugs-list m

[issue45925] Upgrade macOS and Windows installers to use SQLite 3.37.2

2022-02-01 Thread Ned Deily
Ned Deily added the comment: New changeset 519eb6ad74f946a9aa7676e2d6579a3a765a8b50 by Ned Deily in branch '3.10': bpo-45925: Update macOS installer to SQLite 3.37.2 (GH-30921) (GH-31057) https://github.com/python/cpython/commit/519eb6ad74f946a9aa7676e2d6579a3a765a8b50

[issue45925] Upgrade macOS and Windows installers to use SQLite 3.37.2

2022-02-01 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +29239 pull_request: https://github.com/python/cpython/pull/31057 ___ Python tracker <https://bugs.python.org/issue45

[issue45925] Upgrade macOS and Windows installers to use SQLite 3.37.2

2022-02-01 Thread Ned Deily
Ned Deily added the comment: New changeset 0e4bef7a7f6f25a6f39755778c73e7026901611f by Kumar Aditya in branch 'main': bpo-45925: Update macOS installer to SQLite 3.37.2 (GH-30921) https://github.com/python/cpython/commit/0e4bef7a7f6f25a6f39755778c73e7026901611f

[issue46180] Button clicked failed when mouse hover tooltip and tooltip destroyed

2022-02-01 Thread Ned Deily
Ned Deily added the comment: Can you say which platforms are affected by this? The OP's example appears to be from a Windows system. Are Unix (X11) and/or macOS versions of Tk affected, too? -- nosy: +ned.deily ___ Python tracker <ht

[issue46540] dylibs not loading properly from NFS mounts

2022-01-30 Thread Ned Deily
Ned Deily added the comment: Thanks for the report but there are a lot of variables here that make this very difficult to act on. First, there have been many changes in macOS 10.15 regarding file permissions and file system layouts (with APFS et al) and further changes in the more recent

[issue33222] Various test failures if PYTHONUSERBASE is not canonicalized

2022-01-30 Thread Ned Deily
Ned Deily added the comment: > I tested 3.11 (on a Mac 11.6). It still fails for me on current main HEAD (on 12.2 FWIW): $ ./configure --prefix=/tmp/p $ make -j6 $ mkdir /tmp/x $ export PYTHONUSERBASE=/tmp/x/.. $ ./python -m test -w test_site test_sysconfig Raised RLIMIT_NOFILE: 256 ->

[issue33222] Various test failures if PYTHONUSERBASE is not canonicalized

2022-01-30 Thread Ned Deily
Ned Deily added the comment: FWIW, I still see the same failures with 3.10.2 on a current macOS 12.2 system. -- status: pending -> open ___ Python tracker <https://bugs.python.org/issu

[issue38295] test_relative_path of test_py_compile fails on macOS 10.15 Catalina

2022-01-30 Thread Ned Deily
Ned Deily added the comment: > Is there anything more to do here? A belated response: probably not, so I'm OK with closing this. A quick check shows that macOS behavior has changed a bit on more recent releases. On current macOS Big Sur (11.6.3) and Monterey (12.2) releases, Bo's t

[issue46548] macOS installers cannot be signed on Monterey

2022-01-29 Thread Ned Deily
Ned Deily added the comment: The short answer to the original issue: at the moment, build-installer.py continues to create python.org installers in the legacy bundle installer format that is no longer supported by more modern versions of macOS and there are additional steps that are used

[issue46400] Please update bundled libexpat to 2.4.3 with security fixes

2022-01-20 Thread Ned Deily
Change by Ned Deily : -- nosy: -ned.deily, paul.moore, ronaldoussoren, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue46

[issue46400] Please update bundled libexpat to 2.4.3 with security fixes

2022-01-20 Thread Ned Deily
Ned Deily added the comment: The bundled expat is potentially used by all Python builds, not just Windows or Mac builds. -- ___ Python tracker <https://bugs.python.org/issue46

[issue46326] 'venv --clear' should prompt user before nuking entire directory

2022-01-13 Thread Ned Deily
Change by Ned Deily : -- nosy: -ned.deily ___ Python tracker <https://bugs.python.org/issue46326> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46334] Glossary URLs with anchor link no longer jump to definitions

2022-01-10 Thread Ned Deily
Change by Ned Deily : -- nosy: +mdk ___ Python tracker <https://bugs.python.org/issue46334> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue46326] 'virtualenv --clear' should prompt user before nuking entire directory

2022-01-10 Thread Ned Deily
Ned Deily added the comment: > Ned, the CLI of venv has a `--clear` option, which invokes EnvBuilder [1] > with clear=True. Thanks, I saw that. However, the issue as written does not mention venv at all, only virtualenv. I wanted the OP to verify that it does apply t

[issue46326] 'virtualenv --clear' should prompt user before nuking entire directory

2022-01-10 Thread Ned Deily
Ned Deily added the comment: It appears you are describing behavior in the third-party virtualenv project; if so, you should report the problem to that project (https://pypi.org/project/virtualenv/). If similar behavior is also an issue with the Python standard library venv module (which

[issue34602] python3 resource.setrlimit strange behaviour under macOS

2022-01-08 Thread Ned Deily
Ned Deily added the comment: New changeset b962544594c6a7c695330dd20fedffb3a1916ba6 by Miss Islington (bot) in branch '3.10': bpo-34602: Fix unportable test(1) operator in configure script (GH-30490) (GH-30491) https://github.com/python/cpython/commit

[issue46308] Unportable test(1) operator in configure script

2022-01-08 Thread Ned Deily
Ned Deily added the comment: New changeset 3d11c1b8b49800c5c4c295953cc3abf577f6065a by Thomas Klausner in branch 'main': bpo-46308: Fix unportable test(1) operator in configure script (GH-30490) https://github.com/python/cpython/commit/3d11c1b8b49800c5c4c295953cc3abf577f6065a

[issue42378] logging reopens file with same mode, possibly truncating

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

[issue46297] Python interpreter crashes on bootup with multiple PythonPaths set in registry

2022-01-07 Thread Ned Deily
Change by Ned Deily : -- nosy: +steve.dower ___ Python tracker <https://bugs.python.org/issue46297> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34602] python3 resource.setrlimit strange behaviour under macOS

2022-01-07 Thread Ned Deily
Ned Deily added the comment: > @ned.deily, @lukasz.langa: reopen this issue or open a new one? Since there are so many iterations on this issue already, I think a new issue would be better. -- ___ Python tracker <https://bugs.pyth

[issue46292] Add microseconds to logging.LogRecord

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

[issue46248] Compilation errors on macOS

2022-01-05 Thread Ned Deily
Change by Ned Deily : -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue46248> ___ ___

[issue46251] logger.config.configure_formatter executes arbitrary code

2022-01-04 Thread Ned Deily
Change by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue46251> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46263] FreeBSL buiildbots cannot compile Python

2022-01-04 Thread Ned Deily
Ned Deily added the comment: Not to point out the obvious but this buildbot uses --enable-shared which is often a source of build / bootstrap issues, such as the compiler executable being built ends up dynamically loading a libpython from a previous installation or build. -- nosy

[issue46248] Compilation errors on macOS

2022-01-03 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. Without more details, we can only guess at what you are trying to accomplish. I would assume it involves embedding Python in another library or application. If so, you should not be using LINKFORSHARED at all which is used to build Python

[issue42657] Python 3.9.1 building process could not use local standard library

2022-01-02 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. Alas, there haven't been any other reports of similar behavior that I am aware of and, without more information, I am unable to reproduce it with the current 3.9 branch. So I am going to close this issue. Feel free to re-open

[issue43122] Python Launcher doesn't open a terminal window

2022-01-02 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg409563 ___ Python tracker <https://bugs.python.org/issue43122> ___ ___ Python-bugs-list m

[issue43122] Python Launcher doesn't open a terminal window

2022-01-02 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. The problem here has finally been resolved in the fixes for Issue40477 which will be released in Python 3.9.10, 3.10.2, and 3.11.0a4. (Unfortunately, Python 3.8 is now in the "security-fix" phase of its release cycle; this iss

[issue43122] Python Launcher doesn't open a terminal window

2022-01-02 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. The problem here has finally been resolved in the fixes for Issue40477 which will be released in Python 3.9.9, 3.10.2, and 3.11.0a4. (Unfortunately, Python 3.8 is now in the "security-fix" phase of its release cycle; this iss

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

2022-01-02 Thread Ned Deily
Ned Deily added the comment: Thanks, Ronald, for tracking down the NSAppleEventsUsageDescription requirement! The PR here solves two problems encountered by users of the macOS Python Launcher app on recent macOS releases (10.14+): 1. The launcher app was no longer able to launch the macOS

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

2022-01-02 Thread Ned Deily
Ned Deily added the comment: New changeset b312794de0f78da15593d059f09b4071d95c0d0e by Miss Islington (bot) in branch '3.10': bpo-40477: macOS Python Launcher app fixes for recent macOS releases (GH-30348) (GH-30349) https://github.com/python/cpython/commit

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

2022-01-02 Thread Ned Deily
Ned Deily added the comment: New changeset 549e62827262264cda30455e10e315602129da72 by Ned Deily in branch 'main': bpo-40477: macOS Python Launcher app fixes for recent macOS releases (GH-30348) https://github.com/python/cpython/commit/549e62827262264cda30455e10e315602129da72

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

2022-01-02 Thread Ned Deily
Change by Ned Deily : -- keywords: +patch pull_requests: +28561 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/30348 ___ Python tracker <https://bugs.python.org/issu

[issue41028] Move docs.python.org language and version switcher out of cpython

2022-01-02 Thread Ned Deily
Ned Deily added the comment: I went ahead and auto-backported the full PR to 3.9 and 3.8 since it applies cleanly there and did a manual backport of just the sidebar changes to 3.7 and 3.6 (added in the final merge before EOL). Now just awaiting @ambv approval for 3.8. For reference

[issue41028] Move docs.python.org language and version switcher out of cpython

2022-01-02 Thread Ned Deily
Ned Deily added the comment: New changeset b28b0222e360669463ffe31d27c1fd374361cb23 by Miss Islington (bot) in branch '3.9': bpo-41028: Doc: Move switchers to docsbuild-scripts. (GH-20969) (GH-30343) https://github.com/python/cpython/commit/b28b0222e360669463ffe31d27c1fd374361cb23

[issue41028] Move docs.python.org language and version switcher out of cpython

2022-01-02 Thread Ned Deily
Ned Deily added the comment: New changeset 811f65ba263140b6ba28151246b52efe149a6382 by Ned Deily in branch '3.7': bpo-41028: use generic version links in Docs index. https://github.com/python/cpython/commit/811f65ba263140b6ba28151246b52efe149a6382

[issue46229] CODE_OF_CONDUCT shadowing org default

2022-01-02 Thread Ned Deily
Change by Ned Deily : -- nosy: +brett.cannon ___ Python tracker <https://bugs.python.org/issue46229> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46226] User specific paths added to System PATH environment variable

2022-01-02 Thread Ned Deily
Change by Ned Deily : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue46

[issue46197] ensurepip bootstrap breaks out of isolated environment

2021-12-31 Thread Ned Deily
Change by Ned Deily : -- nosy: +dstufft, ncoghlan, pradyunsg ___ Python tracker <https://bugs.python.org/issue46197> ___ ___ Python-bugs-list mailing list Unsub

[issue46185] Python 3.10.1 installer refers to /Applications/Python 3.9 Install Certificates

2021-12-27 Thread Ned Deily
Change by Ned Deily : -- assignee: -> ned.deily ___ Python tracker <https://bugs.python.org/issue46185> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue46158] Hardcoded sysroot path, to MacOSX11.sdk, in python sysconfig

2021-12-22 Thread Ned Deily
Ned Deily added the comment: Whether or not a macOS sysroot path is included in CFLAGS depends on how the Python build was configured and built. For instance, the macOS Python binaries provided on python.org do not include a sysroot path in CFLAGS; from the version info provided, you

[issue46106] OpenSSL 1.1.1m is now available

2021-12-21 Thread Ned Deily
Ned Deily added the comment: Thanks for the PR, Kumar! Merged, with a few minor changes, to main (for 3.11.0a4), 3.10 (3.10.2), and 3.9 (3.9.10). -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Pytho

[issue46106] OpenSSL 1.1.1m is now available

2021-12-21 Thread Ned Deily
Ned Deily added the comment: New changeset 5c4d11fe755a7adeaee6b838bc8faceadc29ed7d by Ned Deily in branch '3.9': bpo-46106: Update OpenSSL to 1.1.1m (GH-30211) (GH-30225) https://github.com/python/cpython/commit/5c4d11fe755a7adeaee6b838bc8faceadc29ed7d

[issue46106] OpenSSL 1.1.1m is now available

2021-12-21 Thread Ned Deily
Ned Deily added the comment: New changeset cf96c279ac960f2a5025e2ac887f9b932a4f1474 by Ned Deily in branch '3.10': bpo-46106: Update OpenSSL to 1.1.1m (GH-30211) (GH-30224) https://github.com/python/cpython/commit/cf96c279ac960f2a5025e2ac887f9b932a4f1474

[issue46106] OpenSSL 1.1.1m is now available

2021-12-21 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +28448 pull_request: https://github.com/python/cpython/pull/30225 ___ Python tracker <https://bugs.python.org/issue46

[issue46106] OpenSSL 1.1.1m is now available

2021-12-21 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +28447 pull_request: https://github.com/python/cpython/pull/30224 ___ Python tracker <https://bugs.python.org/issue46

[issue46106] OpenSSL 1.1.1m is now available

2021-12-21 Thread Ned Deily
Ned Deily added the comment: New changeset fc54e722a2e66971f1a8e16cff24c844bf9c5ac4 by Kumar Aditya in branch 'main': bpo-46106: Update OpenSSL to 1.1.1m (GH-30211) https://github.com/python/cpython/commit/fc54e722a2e66971f1a8e16cff24c844bf9c5ac4

[issue41210] Docs: More description(warning) about LZMA1 + BCJ with FORMAT_RAW

2021-12-21 Thread Ned Deily
Change by Ned Deily : -- nosy: -Smith129, kdrb, sakaranata ___ Python tracker <https://bugs.python.org/issue41210> ___ ___ Python-bugs-list mailing list Unsub

[issue41210] Docs: More description(warning) about LZMA1 + BCJ with FORMAT_RAW

2021-12-21 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg408995 ___ Python tracker <https://bugs.python.org/issue41210> ___ ___ Python-bugs-list m

<    1   2   3   4   5   6   7   8   9   10   >