[issue47194] Upgrade to zlib v1.2.12 in CPython binary releases

2022-04-01 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +patch pull_requests: +30312 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32241 ___ Python tracker <https://bugs.python.org/issu

[issue47183] Cant compile html docs

2022-03-31 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> works for me status: open -> pending ___ Python tracker <https://bugs.python.org/issue47183> ___ ___ Pyth

[issue47183] Cant compile html docs

2022-03-31 Thread Zachary Ware
Zachary Ware added the comment: You have a rather old version of Sphinx; the 3.11 docs are built with v4.5.0. Try `make clean-venv venv html`? -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue47

[issue47148] sys.path.append before import the module causing module don't have doc-string?

2022-03-30 Thread Zachary Ware
Zachary Ware added the comment: Also cannot reproduce on Windows: D:\issue47148_test\parent\another folder>type ..\a.py def multiply(): """multiply stuff""" return 2 * 4 D:\issue47148_test\parent\another folder>type b.py import sys sys.path.ap

[issue47148] sys.path.append before import the module causing module don't have doc-string?

2022-03-29 Thread Zachary Ware
Zachary Ware added the comment: I can't reproduce this without the `-OO` option: -OO: do -O changes and also discard docstrings; add .opt-2 before .pyc extension Note that I did slightly adjust your `b.py` script to do `print(a.multiply.__doc__)`, but here's what I tried

[issue47112] RuntimeError: expected scalar type Long but found Int

2022-03-24 Thread Zachary Ware
Zachary Ware added the comment: This appears to be an issue with either your code or the third-party PyTorch package. You'll have better luck asking about this in a forum specific to PyTorch, or perhaps the `Users` category of discuss.python.org. -- nosy: +zach.ware resolution

[issue47062] Implement asyncio.Runner context manager

2022-03-21 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue47062> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue47060] importlib.metadata.version can return None

2022-03-18 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +jaraco ___ Python tracker <https://bugs.python.org/issue47060> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46566] Support -3.11-arm64 in py.exe launcher

2022-03-11 Thread Zachary Ware
Zachary Ware added the comment: If it's already turning into a rewrite, how feasible would it be to adopt Brett's `py` launcher? -- nosy: +brett.cannon ___ Python tracker <https://bugs.python.org/issue46

[issue46982] Error in the experts list

2022-03-11 Thread Zachary Ware
Zachary Ware added the comment: Jelle, I think the simplest solution would be to remove the space from your bpo login name. -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue46

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

2022-03-01 Thread Zachary Ware
Change by Zachary Ware : -- title: vent does not create "python" link in python 3.11 -> venv does not create "python" link in python 3.11 ___ Python tracker <https://

[issue46839] Process finished with exit code -1073741819 (0xC0000005)

2022-02-23 Thread Zachary Ware
Zachary Ware added the comment: 0xc005 appears to be an access violation, but beyond that there's not much we can help with here. For a start, Python 2.7 has been out of support for over 2 years now, and as far as I can easily tell Anaconda2 is no longer supported either. It is highly

[issue46819] Add an Error / Exception / Warning when contextlib.suppress() is entered with no specified exception(s) to suppress

2022-02-22 Thread Zachary Ware
Zachary Ware added the comment: >>> try: ... raise ValueError("I raise...") ... except (): ... pass ... Traceback (most recent call last): File "", line 2, in ValueError: I raise... -- ___ Python trac

[issue46819] Add an Error / Exception / Warning when contextlib.suppress() is entered with no specified exception(s) to suppress

2022-02-22 Thread Zachary Ware
Zachary Ware added the comment: But `suppress` takes varargs; from `suppress`'s perspective, there is no difference between `suppress()` and `l=[];suppress(*l)`. There would be a difference at the AST level, but trying to find it within `suppress` to issue a warning seems unfeasible

[issue46800] Support for pause(2)

2022-02-22 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> works for me stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue46819] Add an Error / Exception / Warning when contextlib.suppress() is entered with no specified exception(s) to suppress

2022-02-21 Thread Zachary Ware
Zachary Ware added the comment: I'm -1 on this suggestion; consider the following: ``` exceptions_to_suppress = [] if some_condition: exceptions_to_suppress.append(ValueError) with contextlib.suppress(*exceptions_to_suppress): do_a_thing() ``` This seems a reasonable case to support

[issue46800] Support for pause(2)

2022-02-19 Thread Zachary Ware
Zachary Ware added the comment: See signal.pause: https://docs.python.org/3/library/signal.html#signal.pause -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue46

[issue46795] Why Does 3rd/Python39/Lib/site-packages/psycopg2/_psycopg.cp39-win_amd64.pyd Have the CVE-2021-3711 CVE-2021-23840 CVE-2021-3450 CVE-2021-3712 CVE-2021-23841 CVE-2021-3449 CVE-2021-4160 V

2022-02-19 Thread Zachary Ware
New submission from Zachary Ware : Psycopg2 is a third-party package; questions about it should be directed to the Users category of discuss.python.org, the python-list mailing list, or a forum specific to psycopg2. Also, note that Python 3.9.2 is well out of date; you should update

[issue46792] Indentation now preserved with ruamel.yaml.round_trip_dump

2022-02-18 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue46783] Add a new feature to enumerate(iterable, start=0) built-in function

2022-02-17 Thread Zachary Ware
Change by Zachary Ware : -- assignee: docs@python -> components: +Library (Lib) -Build, Demos and Tools, Documentation, Interpreter Core nosy: -docs@python, lys.nikolaou versions: -Python 3.10, Python 3.7, Python 3.8, Python 3.9 ___ Pyt

[issue46780] Allow Fractions to return 1/6 for "0.17", "0.167", "0.1667", etc.

2022-02-17 Thread Zachary Ware
Zachary Ware added the comment: This sounds interesting, but also rather similar to what the `limit_denominator` method can get you. Can you provide examples that can't be handled nicely by `limit_denominator` to strengthen your case? -- nosy: +mark.dickinson, rhettinger, zach.ware

[issue46586] In documentation contents enum.property erroneously links to built-in property

2022-02-10 Thread Zachary Ware
Zachary Ware added the comment: An updated reST linting check was added between the time you created the PR and your last update. As Jelle noted on the PR, there doesn't need to be a NEWS entry for this anyway. We might have an issue there if sphinx-lint is going to have an issue

[issue46683] Python 3.6.15 source tarball installs 3.6.8?

2022-02-08 Thread Zachary Ware
Zachary Ware added the comment: That's a question better suited to a forum such as the Users category of discuss.python.org, the python-l...@python.org mailing list, or StackOverflow, not a bug tracker issue. -- resolution: -> not a bug status: open ->

[issue46683] Python 3.6.15 source tarball installs 3.6.8?

2022-02-08 Thread Zachary Ware
Zachary Ware added the comment: I confirmed by downloading a fresh copy of each, extracting, and looking at Include/patchlevel.h. You could further check by downloading a 3.6.8 tarball and comparing it against the 3.6.15 tarball. Is 3.6.8 the version you already have installed, and are you

[issue46683] Python 3.6.15 source tarball installs 3.6.8?

2022-02-08 Thread Zachary Ware
Zachary Ware added the comment: Also note that 3.6 is now EOL, so an upgrade is highly recommended anyway :) -- ___ Python tracker <https://bugs.python.org/issue46

[issue46683] Python 3.6.15 source tarball installs 3.6.8?

2022-02-08 Thread Zachary Ware
Zachary Ware added the comment: I've just confirmed that both tarballs (gzip and xz) on the official download page (https://www.python.org/downloads/release/python-3615/) contain 3.6.15. Note that 3.6.8 was the last bugfix release that included Windows and macOS installers. If you're

[issue45436] test_tk.test_configure_type() fails with Tcl/Tk 8.6.11

2022-02-08 Thread Zachary Ware
Zachary Ware added the comment: > Can issue be closed now? I think so; if others disagree they can reopen it :) -- resolution: -> fixed stage: commit review -> resolved status: open -> closed type: -> behavior ___ Python

[issue46641] multiplication error 2.2 and 2.1

2022-02-04 Thread Zachary Ware
Zachary Ware added the comment: See https://docs.python.org/3/tutorial/floatingpoint.html. Your computer thinks in base 2 rather than base 10, unless you ask it nicely (https://docs.python.org/3/library/decimal.html) :) -- nosy: +zach.ware resolution: -> not a bug st

[issue46584] Modernize `ctypes/test_python_api` by removing old version check

2022-02-01 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the patch! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue46570] Windows support for OpenSSL 3.0

2022-01-29 Thread Zachary Ware
Change by Zachary Ware : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware stage: -> needs patch type: compile error -> enhancement versions: -Python 3.10 ___ Python tracker <https://bugs.python.org/i

[issue46565] Multiple modules leak `for` loop variables into module's namespace

2022-01-28 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue46565> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46390] Multiple test failures on Alpine 3.15 / musl-1.2.2-r7

2022-01-27 Thread Zachary Ware
Zachary Ware added the comment: BTW, we do have an Alpine buildbot worker in the unstable set, running only on the `main` branch: https://buildbot.python.org/all/#/workers/19 -- nosy: +zach.ware ___ Python tracker <https://bugs.python.

[issue29844] Windows Python installers not installing DLL to System32/SysWOW64

2022-01-27 Thread Zachary Ware
Zachary Ware added the comment: New changeset 7c8d1f0238842fb8da099e797eea5973b66638a9 by Miss Islington (bot) in branch '3.9': bpo-29844: Remove obsolete paragraph from Tools/msi/README.txt (GH-29141) https://github.com/python/cpython/commit/7c8d1f0238842fb8da099e797eea5973b66638a9

[issue29844] Windows Python installers not installing DLL to System32/SysWOW64

2022-01-27 Thread Zachary Ware
Zachary Ware added the comment: New changeset a8912a0f8d9eba6d502c37d51f9933e976db by Miss Islington (bot) in branch '3.10': bpo-29844: Remove obsolete paragraph from Tools/msi/README.txt (GH-29141) https://github.com/python/cpython/commit/a8912a0f8d9eba6d502c37d51f9933e976db

[issue29844] Windows Python installers not installing DLL to System32/SysWOW64

2022-01-27 Thread Zachary Ware
Zachary Ware added the comment: With the readme updated (and backports in progress), I'm closing the issue. -- nosy: -miss-islington resolution: -> fixed stage: patch review -> needs patch status: open -> closed versions: +Python 3.11 -P

[issue10943] abitype: Need better support to port C extension modules to the stable C API

2022-01-27 Thread Zachary Ware
Zachary Ware added the comment: Tools/scripts/abitype.py hasn't seen much maintenance in 11 years, but it also seems not to have seen much use. Patches would be accepted, but priority is low enough that I'm going to go ahead and close the issue. -- nosy: +zach.ware resolution

[issue7057] tkinter doc: more 3.x updates

2022-01-27 Thread Zachary Ware
Zachary Ware added the comment: Trusting Mark's diagnosis, I'm closing the issue. -- nosy: +zach.ware resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker <https://bugs.python.o

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

2022-01-26 Thread Zachary Ware
Zachary Ware added the comment: Rather than suggesting an actual number, perhaps we should link to an external resources that covers how to choose the number? Or we leave it vague and say "The number of iterations should be chosen based on the hash algorithm and computing

[issue46316] Optimize pathlib.Path.iterdir()

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

[issue46316] Optimize pathlib.Path.iterdir()

2022-01-20 Thread Zachary Ware
Zachary Ware added the comment: New changeset a1c88414926610a3527398a478c3e63c531dc742 by Barney Gale in branch 'main': bpo-46316: optimize `pathlib.Path.iterdir()` (GH-30501) https://github.com/python/cpython/commit/a1c88414926610a3527398a478c3e63c531dc742 -- nosy: +zach.ware

[issue45554] multiprocessing exitcode is insufficiently documented

2022-01-18 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +davin, pitrou versions: +Python 3.10, Python 3.11, Python 3.9 ___ Python tracker <https://bugs.python.org/issue45554> ___ ___

[issue46425] Multiple test modules fail to run if invoked directly

2022-01-18 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue46425> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46402] Enhance sqlite3 to avoid implicit creation?

2022-01-16 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +erlendaasland, zach.ware stage: -> needs patch type: -> enhancement versions: +Python 3.11 ___ Python tracker <https://bugs.python.org/i

[issue46351] Makefile missing '/' for some path names

2022-01-12 Thread Zachary Ware
Zachary Ware added the comment: This has been fixed in 3.11 with GH-28659, but the fix hasn't been backported due to the unlikelihood of this issue actually being a problem and a procedural wrinkle in the original PR. I suspect a clean backport would be accepted, but this is still a rather

[issue46314] Stray RESUME opcode for unused lambda

2022-01-11 Thread Zachary Ware
Change by Zachary Ware : -- nosy: -Alex.Willmer, asvetlov, barry, dstufft, eric.araujo, ezio.melotti, koobs, lys.nikolaou, mrabarnett, ned.deily, paul.moore, r.david.murray, ronaldoussoren, steve.dower, terry.reedy, tim.golden, vstinner, yselivanov, zach.ware type: security

[issue45723] Improve and simplify configure.ac checks

2022-01-11 Thread Zachary Ware
Change by Zachary Ware : -- components: -2to3 (2.x to 3.x conversion tool), Argument Clinic, C API, Cross-Build, Demos and Tools, Distutils, Documentation, Extension Modules, FreeBSD, IDLE, IO, Installation, Interpreter Core, Library (Lib), Parser, Regular Expressions, SSL

[issue46293] Typo in specifying escape sequence

2022-01-07 Thread Zachary Ware
Zachary Ware added the comment: The table could stand some clarification; `\newline` is the only example that is not showing exactly the characters that one would see when looking at source code and which doesn't have an explanatory note. There's also the additional wrinkle that `\CR

[issue46280] About vulnerabilities in Cpython native code

2022-01-06 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +414039482 -zach.ware ___ Python tracker <https://bugs.python.org/issue46280> ___ ___ Python-bugs-list mailing list Unsub

[issue46280] About vulnerabilities in Cpython native code

2022-01-06 Thread Zachary Ware
Zachary Ware added the comment: As an aside, there's an issue with Roundup where a username composed of all digits causes it to think that name is a user ID in the nosy list. I recommend changing your username to include a non-digit character so that others can interact with you on your

[issue46280] About vulnerabilities in Cpython native code

2022-01-06 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +414039482 ___ Python tracker <https://bugs.python.org/issue46280> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46243] Spam

2022-01-03 Thread Zachary Ware
Change by Zachary Ware : -- nosy: -booth1664, christian.heimes title: flash drive -> Spam type: compile error -> ___ Python tracker <https://bugs.python.org/i

[issue46207] Log emit performance degradation in RotatingFileHandlers due to filesystem checks

2021-12-30 Thread Zachary Ware
Change by Zachary Ware : -- components: +Library (Lib) nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue46207> ___ ___ Python-bugs-list mailin

[issue43424] Document the `controller.name` field in `webbrowser` module

2021-12-21 Thread Zachary Ware
Change by Zachary Ware : -- hgrepos: -413 ___ Python tracker <https://bugs.python.org/issue43424> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46069] Spam

2021-12-14 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg408519 ___ Python tracker <https://bugs.python.org/issue46069> ___ ___ Python-bugs-list m

[issue46069] Spam

2021-12-14 Thread Zachary Ware
Change by Zachary Ware : -- components: -Build nosy: -havenhaven title: Super Smash Flash 2 -> Spam versions: -Python 3.11 ___ Python tracker <https://bugs.python.org/issu

[issue31148] Can we get an MSI installer for something past 3.4.4?

2021-12-04 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg407658 ___ Python tracker <https://bugs.python.org/issue31148> ___ ___ Python-bugs-list m

[issue31148] Can we get an MSI installer for something past 3.4.4?

2021-12-04 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg407637 ___ Python tracker <https://bugs.python.org/issue31148> ___ ___ Python-bugs-list m

[issue45975] Simplify some while-loops with walrus operator

2021-12-03 Thread Zachary Ware
Zachary Ware added the comment: As a general rule, refactorings like this tend to be rejected as the risk of inadvertently adding a new bug outweighs the benefit of subjectively cleaner code ("if it ain't broke, don't fix it!"). Is there any measurable performance be

[issue45916] documentation link error

2021-12-02 Thread Zachary Ware
Zachary Ware added the comment: New changeset 9f2f7e42269db74a89fc8cd74d82a875787f01d7 by Zachary Ware in branch 'main': bpo-45916: Use HTTPS link for The Perils of Floating Point (GH-29896) https://github.com/python/cpython/commit/9f2f7e42269db74a89fc8cd74d82a875787f01d7

[issue45916] documentation link error

2021-12-02 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +patch pull_requests: +28120 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29896 ___ Python tracker <https://bugs.python.org/issu

[issue45958] Document typo in unpack_from()

2021-12-01 Thread Zachary Ware
Zachary Ware added the comment: The `/` denotes that `format` is a positional-only argument; you cannot make a call like `struct.unpack_from(format=my_format, buffer=my_buffer)`, it must be `struct.unpack_from(my_format, buffer=my_buffer)` or `struct.unpack_from(my_format, my_buffer

[issue45943] Spam

2021-11-30 Thread Zachary Ware
Change by Zachary Ware : Removed file: https://bugs.python.org/file50463/PSX_20210903_080553.jpg ___ Python tracker <https://bugs.python.org/issue45943> ___ ___ Pytho

[issue45943] Spam

2021-11-30 Thread Zachary Ware
Change by Zachary Ware : -- components: -email nosy: -barry, oktaine57, r.david.murray title: kids10yrsap...@gmail.com -> Spam type: behavior -> versions: -Python 3.11 ___ Python tracker <https://bugs.python.org/i

[issue45916] documentation link error

2021-11-29 Thread Zachary Ware
Zachary Ware added the comment: We had a similar report in bpo-45620, but as Dennis and Eric reported in that issue, I can't reproduce that behavior here. We are using a non-HTTPS link there even though the site supports HTTPS; I'm not sure if fixing that might actually fix things for you

[issue44391] PC/launcher.c,one more argument than required

2021-11-24 Thread Zachary Ware
Change by Zachary Ware : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, vinay.sajip, zach.ware versions: +Python 3.11 ___ Python tracker <https://bugs.python.org/issue44

[issue45616] Python Launcher Matches 3.10 instead of 3.1

2021-11-24 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the report, Gabe! We actually ran into this in the opposite direction as well; a system with 3.1 but not 3.10 started up 3.1 for `py -3.10` causing unexpected syntax errors. The fix is now merged and will be available with the release of v3.10.1

[issue45616] Python Launcher Matches 3.10 instead of 3.1

2021-11-23 Thread Zachary Ware
Zachary Ware added the comment: New changeset f9de97aae5fe9dafb58a8099171f4a09c449f4e8 by Zachary Ware in branch 'main': bpo-45616: Let py.exe distinguish between v3.1 and v3.10 (GH-29731) https://github.com/python/cpython/commit/f9de97aae5fe9dafb58a8099171f4a09c449f4e8

[issue45616] Python Launcher Matches 3.10 instead of 3.1

2021-11-23 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +patch pull_requests: +27968 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29731 ___ Python tracker <https://bugs.python.org/issu

[issue45833] NamedTemporaryFile deleted before enclosing context manager exit

2021-11-22 Thread Zachary Ware
Change by Zachary Ware : -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue45833> ___ ___ Python-bugs-list

[issue45833] NamedTemporaryFile deleted before enclosing context manager exit

2021-11-17 Thread Zachary Ware
Zachary Ware added the comment: It's a bit convoluted, but the file is actually deleted before the `os.stat` call. Because there are no references to anything but the `name` (which is just a string), the `_GeneratorContextManager` (result of `my_tmp_file`) and the `_TemporaryFileWrapper

[issue45825] Heap Segmentation Fault

2021-11-17 Thread Zachary Ware
Zachary Ware added the comment: In general, as soon as you touch ctypes you're on your own :). ctypes has no protections for this kind of case, so you need to protect yourself. If you came across this some way that *should* have been safe, please provide more information. But just passing

[issue45712] Typo in "control flow" documentation

2021-11-08 Thread Zachary Ware
Zachary Ware added the comment: New changeset 7484a5c82a2dfc106bb1e4b060cad2df00521bfd by 180909 in branch 'main': Closes bpo-45712: Add missing word in control flow tutorial (GH-29460) https://github.com/python/cpython/commit/7484a5c82a2dfc106bb1e4b060cad2df00521bfd -- nosy

[issue40051] Give proper link in help(idlelib/turtledemo/tkinter.sub/test_*/?)

2021-11-07 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +27713 stage: test needed -> patch review pull_request: https://github.com/python/cpython/pull/29459 ___ Python tracker <https://bugs.python.org/issu

[issue45734] Spam

2021-11-05 Thread Zachary Ware
Change by Zachary Ware : Removed file: https://bugs.python.org/file50427/logo-thumbnail.png ___ Python tracker <https://bugs.python.org/issue45734> ___ ___ Python-bug

[issue45734] Spam

2021-11-05 Thread Zachary Ware
Change by Zachary Ware : Removed file: https://bugs.python.org/file50428/logo-thumbnail.png ___ Python tracker <https://bugs.python.org/issue45734> ___ ___ Python-bug

[issue45734] Spam

2021-11-05 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg405844 ___ Python tracker <https://bugs.python.org/issue45734> ___ ___ Python-bugs-list m

[issue45734] Spam

2021-11-05 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg405845 ___ Python tracker <https://bugs.python.org/issue45734> ___ ___ Python-bugs-list m

[issue45734] Spam

2021-11-05 Thread Zachary Ware
Change by Zachary Ware : -- components: -Build nosy: -skillovillaofficial resolution: -> not a bug stage: -> resolved status: open -> closed title: Data Science and Machine Learning Course -> Spam type: performance -> version

[issue40051] Give proper link in help(idlelib/turtledemo/tkinter.sub/test_*/?)

2021-11-05 Thread Zachary Ware
Zachary Ware added the comment: This actually turned out to be less effort than I expected (though I still should have been asleep 2 hours ago), so I've gone ahead and opened GH-29419 to implement what I suggested. -- stage: patch review -> test nee

[issue40051] Give proper link in help(idlelib/turtledemo/tkinter.sub/test_*/?)

2021-11-05 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +patch pull_requests: +27672 stage: test needed -> patch review pull_request: https://github.com/python/cpython/pull/29419 ___ Python tracker <https://bugs.python.org/issu

[issue45717] Bad link to python docs in help(_hashlib)

2021-11-04 Thread Zachary Ware
Zachary Ware added the comment: I'm closing this as a duplicate of bpo-40051, as it's basically another manifestation of that issue. However, any module named with a leading underscore is a private module, and won't have documentation. The source for _hashlib can be found in Modules

[issue40051] Give proper link in help(idlelib/turtledemo/tkinter.sub/test_*/?)

2021-11-04 Thread Zachary Ware
Zachary Ware added the comment: Option 4: generate a list of modules (or a mapping of module names to documentation files) that have documentation when generating Lib/pydoc_data/topics.py, and teach pydoc.help to not include the link when it knows the module doesn't have documentation

[issue45712] Typo in "control flow" documentation

2021-11-04 Thread Zachary Ware
Change by Zachary Ware : -- versions: +Python 3.10 ___ Python tracker <https://bugs.python.org/issue45712> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45712] Typo in "control flow" documentation

2021-11-04 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +easy, newcomer friendly stage: -> needs patch ___ Python tracker <https://bugs.python.org/issue45712> ___ ___ Python-

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-04 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +3.11regression stage: -> needs patch ___ Python tracker <https://bugs.python.org/issue45709> ___ ___ Python-bugs-lis

[issue45436] test_tk.test_configure_type() fails with Tcl/Tk 8.6.11

2021-10-25 Thread Zachary Ware
Zachary Ware added the comment: Thanks for tracking that down! Any word on the tk Menu type parameter change? -- ___ Python tracker <https://bugs.python.org/issue45

[issue45601] test_tk and test_ttk_guionly fail with resource not availiable

2021-10-25 Thread Zachary Ware
Zachary Ware added the comment: The failure that you saw was due to a change in Tcl/Tk 8.6.11; we recently updated our tests to handle that change in bpo-45436; the fixes have not been released at any version yet, but the fixes have been applied back to 3.7. The "resource not avai

[issue29844] Windows Python installers not installing DLL to System32/SysWOW64

2021-10-21 Thread Zachary Ware
Zachary Ware added the comment: New changeset 098a33f6a60ca2df88e03024ac9d8da507cfa5c8 by Zachary Ware in branch 'main': bpo-29844: Remove obsolete paragraph from Tools/msi/README.txt (GH-29141) https://github.com/python/cpython/commit/098a33f6a60ca2df88e03024ac9d8da507cfa5c8

[issue29844] Windows Python installers not installing DLL to System32/SysWOW64

2021-10-21 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +patch pull_requests: +27417 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/29141 ___ Python tracker <https://bugs.python.org/issu

[issue42074] setup error on windows

2021-10-21 Thread Zachary Ware
Zachary Ware added the comment: Closing due to lack of response. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue42358] Python 3.9.0 unable to detect ax_cv_c_float_words_bigendian value on bigendian system

2021-10-21 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> out of date stage: -> resolved status: open -> closed title: Python 3.9.0 unable to detect ax_cv_c_float_words_bigendian value on nigendan system -> Python 3.9.0 unable to detect ax_cv_c_float_words_bigendian value on bige

[issue29370] "./configure --enable-optimizations && make install" does not install files in ${BINDIR} and ${LIBDIR}

2021-10-21 Thread Zachary Ware
Zachary Ware added the comment: I can't reproduce this one with current main, so I'm closing as out of date. If someone can still reproduce with a current version, please reopen or leave a message with details. -- nosy: +zach.ware resolution: -> out of date stage: -> re

[issue23120] installation order of 32bit and 64bit python seems to matter

2021-10-21 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

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

2021-10-21 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue40906> ___ ___

[issue45436] test_tk.test_configure_type() fails with Tcl/Tk 8.6.11

2021-10-21 Thread Zachary Ware
Zachary Ware added the comment: I'm not sure there's much utility to keeping this issue open: the test failures are fixed with a mild but not unprecedented weakening of the tests, and Tcl/Tk 8.6.11 is in the wild and will remain there, so our tests are likely to need to continue handling

[issue43139] test_ttk test_compound, test_tk test_type fail with Tk 8.6.11.1

2021-10-21 Thread Zachary Ware
Zachary Ware added the comment: Closing as a duplicate of bpo-45436; fixes to the tests were committed with that issue number. -- nosy: +zach.ware resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> test_tk.test_configure_type() fails

[issue45548] Update Modules/Setup

2021-10-21 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware stage: -> patch review ___ Python tracker <https://bugs.python.org/issue45548> ___ ___ Python-bugs-list mai

[issue45548] Update Modules/Setup

2021-10-21 Thread Zachary Ware
Change by Zachary Ware : -- stage: patch review -> ___ Python tracker <https://bugs.python.org/issue45548> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue40051] Dead link in help(idlelib/turtledemo/tkinter.sub/test_*/?)

2021-10-20 Thread Zachary Ware
Zachary Ware added the comment: This one got caught up in the purge of 2to3 issues, but it's about more than just 2to3. Reopening. -- components: +Documentation, Library (Lib) -2to3 (2.x to 3.x conversion tool) nosy: +zach.ware resolution: wont fix -> stage: resolved -> needs

[issue38371] Tkinter: deprecate the split() method

2021-10-19 Thread Zachary Ware
Zachary Ware added the comment: New changeset 085ccb0f177988065dbe9ef4c5cda434560066bc by Zachary Ware in branch 'main': bpo-38371: Remove remaining use of tk.split from bigmem tcl test (GH-29082) https://github.com/python/cpython/commit/085ccb0f177988065dbe9ef4c5cda434560066bc

  1   2   3   4   5   6   7   8   9   10   >