[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/issue47194>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue47183>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.append('..')
import a
print(a.multiply.__doc__)

D:\issue47148_test\parent\another folder>py b.py
multiply stuff


My best advice would be to try to reproduce it again yourself in a clean 
directory, and/or remove all `*.pyc` files and `__pycache__` directories from 
your project and try again, making sure you have no environment variables 
starting with `PYTHON` set.  If you still find you're having trouble, please 
reach out in the Users category of discuss.python.org.

--
stage:  -> resolved
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue47148>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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:

~/issue47148_test/parent/another folder $ cat ../a.py 
def multiply():
"""multiply stuff"""
return 69*420
~/issue47148_test/parent/another folder $ cat b.py 
import sys
sys.path.append('..')
import a
print(a.multiply.__doc__)
~/issue47148_test/parent/another folder $ python b.py 
multiply stuff
~/issue47148_test/parent/another folder $ python -O b.py 
multiply stuff
~/issue47148_test/parent/another folder $ python -OO b.py 
None

--
nosy: +zach.ware
resolution:  -> works for me
status: open -> pending

___
Python tracker 
<https://bugs.python.org/issue47148>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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:  -> third party
stage:  -> resolved
status: open -> closed
type: compile error -> behavior

___
Python tracker 
<https://bugs.python.org/issue47112>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue46566>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue46982>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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://bugs.python.org/issue46890>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 
recommended to update to Python 3.9 or later if at all possible.

Also, it seems likely that the problem is actually in a third-party extension 
module rather than Python itself, though it's impossible to tell for sure from 
what information is here.

For further assistance, you can try the Users category of discuss.python.org, 
the python-l...@python.org mailing list, or a forum specific to Anaconda 
(though I'm not familiar with one myself).

--
nosy: +zach.ware
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue46839>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 tracker 
<https://bugs.python.org/issue46819>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.  Certainly possible for a linter, though :)

--

___
Python tracker 
<https://bugs.python.org/issue46819>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue46800>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 and would require quite some gymnastics 
to continue supporting while also warning on an empty set.

--
nosy: +ncoghlan, yselivanov, zach.ware

___
Python tracker 
<https://bugs.python.org/issue46819>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue46800>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 to 3.9.10 
or 3.10.2.  On Windows, OpenSSL is included with Python, and is most easily 
updated by updating Python.

And lastly, please use the comment field rather than cramming your comments 
into the title field.

--
nosy: +zach.ware
resolution:  -> third party
stage:  -> resolved
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue46795>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue46792>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 
<https://bugs.python.org/issue46783>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
versions: +Python 3.11

___
Python tracker 
<https://bugs.python.org/issue46780>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 with no 
trailing newline and blurb-it isn't going to add a trailing newline, though. 
(+mdk)

--
nosy: +mdk, zach.ware

___
Python tracker 
<https://bugs.python.org/issue46586>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 -> closed

___
Python tracker 
<https://bugs.python.org/issue46683>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 building with 
`./configure --enable-shared`?  If so, my best guess would be that your new 
`./python` binary is picking up the system `libpython3.6.so`.  Try 
`LD_LIBRARY_PATH=$(pwd) ./python --version`.

--
resolution:  -> not a bug
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue46683>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue46683>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 on one of those platforms, you may need to go through 
some extra steps to replace an existing 3.6.8 install with 3.6.15, and at that 
point you would likely be better off upgrading to 3.10 (or at least 3.9, which 
is the oldest release that still has a current binary installer).

--
nosy: +eric.smith, zach.ware
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue46683>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 tracker 
<https://bugs.python.org/issue45436>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
stage:  -> resolved
status: open -> closed
type: compile error -> behavior
versions:  -Python 3.10

___
Python tracker 
<https://bugs.python.org/issue46641>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue46584>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue46570>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue46390>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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


--

___
Python tracker 
<https://bugs.python.org/issue29844>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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


--

___
Python tracker 
<https://bugs.python.org/issue29844>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 -Python 3.8

___
Python tracker 
<https://bugs.python.org/issue29844>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue10943>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue7057>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 power; there is no universal 
recommendation, but hundreds of thousands of iterations may be reasonable."  
This avoids bikeshedding a specific number, but still gives a general idea of 
the magnitude of number involved.

--
nosy: +zach.ware

___
Python tracker 
<https://bugs.python.org/issue42982>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue46316>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 
<https://bugs.python.org/issue46316>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue46402>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 low-priority issue.

--
components: +macOS
nosy: +ned.deily, ronaldoussoren, zach.ware
stage:  -> backport needed
type:  -> behavior
versions: +Python 3.10

___
Python tracker 
<https://bugs.python.org/issue46351>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 -> behavior

___
Python tracker 
<https://bugs.python.org/issue46314>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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, Subinterpreters, Tests, Tkinter, Unicode, Windows, 
XML, asyncio, ctypes, email, macOS
nosy:  -Alex.Willmer, alwaysasetup, asvetlov, barry, dstufft, eric.araujo, 
ezio.melotti, koobs, larry, lys.nikolaou, miss-islington, mrabarnett, 
ned.deily, pablogsal, paul.moore, r.david.murray, ronaldoussoren, steve.dower, 
terry.reedy, tim.golden, vstinner, yselivanov, zach.ware
type: security -> enhancement

___
Python tracker 
<https://bugs.python.org/issue45723>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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`, `\LF`, and `\CRLF` are treated the same, which might be an 
important detail in the reference section.

I don't have a great suggestion to offer, though.

--
nosy: +zach.ware

___
Python tracker 
<https://bugs.python.org/issue46293>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 issues without constantly removing you from the nosy 
list.

--
nosy: +zach.ware

___
Python tracker 
<https://bugs.python.org/issue46280>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue46243>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue46069>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 benefit from this? Reducing several hundred 
thousand lines of code by 148 is not a compelling benefit :)

--
nosy: +zach.ware

___
Python tracker 
<https://bugs.python.org/issue45975>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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


--

___
Python tracker 
<https://bugs.python.org/issue45916>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue45916>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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)`.  The same syntax can be used to 
define your own function with positional-only arguments, see 
https://docs.python.org/3/tutorial/controlflow.html#positional-only-parameters 
or https://docs.python.org/3/reference/compound_stmts.html#function-definitions

--
nosy: +zach.ware
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue45958>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue45943>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 and others in the 
same situation, though.

--
assignee:  -> docs@python
components: +Documentation
nosy: +docs@python, zach.ware

___
Python tracker 
<https://bugs.python.org/issue45916>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue44391>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 and the 
next v3.11 alpha.

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed
versions: +Python 3.11

___
Python tracker 
<https://bugs.python.org/issue45616>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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


--

___
Python tracker 
<https://bugs.python.org/issue45616>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue45616>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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` (result of `my_tmp_file().__enter__()`) are both 
destroyed.  Because `NamedTemporaryFile` is called with `delete=True` 
(default), the `_TemporaryFileWrapper` has a `_closer` attribute which is a 
`_TemporaryFileCloser`, which calls `self.close()` in `__del__`, which deletes 
the file.

If a reference to the result of `my_tmp_file()` is saved anywhere along the 
way, none of the objects are destroyed and the file still exists.  This also 
wouldn't happen in an implementation without reference counting.

--
nosy: +zach.ware
resolution:  -> not a bug
status: open -> pending

___
Python tracker 
<https://bugs.python.org/issue45833>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 a random memory address to ctypes is likely 
to cause segfaults or worse.

--
nosy: +zach.ware
resolution:  -> not a bug
status: open -> pending

___
Python tracker 
<https://bugs.python.org/issue45825>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: +zach.ware
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue45712>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue40051>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 -> 
versions:  -Python 3.9

___
Python tracker 
<https://bugs.python.org/issue45734>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 needed

___
Python tracker 
<https://bugs.python.org/issue40051>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue40051>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/_hashopenssl.c.

--
nosy: +zach.ware
resolution:  -> duplicate
stage:  -> resolved
status: open -> closed
superseder:  -> Give proper link in 
help(idlelib/turtledemo/tkinter.sub/test_*/?)

___
Python tracker 
<https://bugs.python.org/issue45717>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.

This is a much more complete solution that also avoids creating links for 
private modules (see bpo-45717), but is significantly more effort to implement.

--
nosy: +zach.ware

___
Python tracker 
<https://bugs.python.org/issue40051>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue45436>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 available" not is due to your `-u` flags, as noted by E. Paine.

--
nosy: +zach.ware
resolution:  -> out of date
stage:  -> resolved
status: open -> closed
type: compile error -> behavior

___
Python tracker 
<https://bugs.python.org/issue45601>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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


--

___
Python tracker 
<https://bugs.python.org/issue29844>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue29844>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue42074>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 bigendian system

___
Python tracker 
<https://bugs.python.org/issue42358>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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:  -> resolved
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue29370>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue23120>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 its behavior (buggy or not) in perpetuity.

By all means, please continue pursuing the change with Tcl/Tk :).  I'm just not 
sure what else there is for us to do here.

--
stage: patch review -> commit review

___
Python tracker 
<https://bugs.python.org/issue45436>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 with Tcl/Tk 8.6.11

___
Python tracker 
<https://bugs.python.org/issue43139>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 patch
status: closed -> open
superseder: Close 2to3 issues and list them here -> 
title: Dead link in help(lib2to3/idlelib/turtledemo/tkinter.sub/test_*/?) -> 
Dead link in help(idlelib/turtledemo/tkinter.sub/test_*/?)
versions: +Python 3.11 -Python 3.8

___
Python tracker 
<https://bugs.python.org/issue40051>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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


--

___
Python tracker 
<https://bugs.python.org/issue38371>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



  1   2   3   4   5   6   7   8   9   10   >