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
Change by Zachary Ware :
--
resolution: -> works for me
status: open -> pending
___
Python tracker
<https://bugs.python.org/issue47183>
___
___
Pyth
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
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
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 wh
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
resol
Change by Zachary Ware :
--
nosy: +zach.ware
___
Python tracker
<https://bugs.python.org/issue47062>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zachary Ware :
--
nosy: +jaraco
___
Python tracker
<https://bugs.python.org/issue47060>
___
___
Python-bugs-list mailing list
Unsubscribe:
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.o
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
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://
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 h
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
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 unfea
Change by Zachary Ware :
--
resolution: -> works for me
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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 su
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
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
Change by Zachary Ware :
--
resolution: -> third party
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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
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
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 wi
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 -
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
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
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&
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
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
Zachary Ware added the comment:
Thanks for the patch!
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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
Change by Zachary Ware :
--
nosy: +zach.ware
___
Python tracker
<https://bugs.python.org/issue46565>
___
___
Python-bugs-list mailing list
Unsubscribe:
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.
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/7c8d1f0238842fb8da099e797eea59
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/a8912a0f8d9eba6d502c37d51f
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.
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
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://bug
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
Change by Zachary Ware :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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:
Change by Zachary Ware :
--
nosy: +davin, pitrou
versions: +Python 3.10, Python 3.11, Python 3.9
___
Python tracker
<https://bugs.python.org/issue45554>
___
___
Change by Zachary Ware :
--
nosy: +zach.ware
___
Python tracker
<https://bugs.python.org/issue46425>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zachary Ware :
--
nosy: +erlendaasland, zach.ware
stage: -> needs patch
type: -> enhancement
versions: +Python 3.11
___
Python tracker
<https://bugs.python.org/i
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 r
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
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
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
Change by Zachary Ware :
--
nosy: +414039482 -zach.ware
___
Python tracker
<https://bugs.python.org/issue46280>
___
___
Python-bugs-list mailing list
Unsub
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
Change by Zachary Ware :
--
nosy: +414039482
___
Python tracker
<https://bugs.python.org/issue46280>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zachary Ware :
--
nosy: -booth1664, christian.heimes
title: flash drive -> Spam
type: compile error ->
___
Python tracker
<https://bugs.python.org/i
Change by Zachary Ware :
--
components: +Library (Lib)
nosy: +vinay.sajip
___
Python tracker
<https://bugs.python.org/issue46207>
___
___
Python-bugs-list mailin
Change by Zachary Ware :
--
hgrepos: -413
___
Python tracker
<https://bugs.python.org/issue43424>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zachary Ware :
--
Removed message: https://bugs.python.org/msg408519
___
Python tracker
<https://bugs.python.org/issue46069>
___
___
Python-bugs-list m
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
Change by Zachary Ware :
--
Removed message: https://bugs.python.org/msg407658
___
Python tracker
<https://bugs.python.org/issue31148>
___
___
Python-bugs-list m
Change by Zachary Ware :
--
Removed message: https://bugs.python.org/msg407637
___
Python tracker
<https://bugs.python.org/issue31148>
___
___
Python-bugs-list m
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 performan
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/9f2f7e42269db74a89fc8cd74d82a8
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
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
Change by Zachary Ware :
Removed file: https://bugs.python.org/file50463/PSX_20210903_080553.jpg
___
Python tracker
<https://bugs.python.org/issue45943>
___
___
Pytho
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
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 thin
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
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
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/f9de97aae5fe9dafb58a8099171f4a
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
Change by Zachary Ware :
--
stage: -> resolved
status: pending -> closed
___
Python tracker
<https://bugs.python.org/issue45833>
___
___
Python-bugs-list
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 `_TemporaryFileWr
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 pa
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
-
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
Change by Zachary Ware :
Removed file: https://bugs.python.org/file50427/logo-thumbnail.png
___
Python tracker
<https://bugs.python.org/issue45734>
___
___
Python-bug
Change by Zachary Ware :
Removed file: https://bugs.python.org/file50428/logo-thumbnail.png
___
Python tracker
<https://bugs.python.org/issue45734>
___
___
Python-bug
Change by Zachary Ware :
--
Removed message: https://bugs.python.org/msg405844
___
Python tracker
<https://bugs.python.org/issue45734>
___
___
Python-bugs-list m
Change by Zachary Ware :
--
Removed message: https://bugs.python.org/msg405845
___
Python tracker
<https://bugs.python.org/issue45734>
___
___
Python-bugs-list m
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
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 -> tes
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
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 f
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 document
Change by Zachary Ware :
--
versions: +Python 3.10
___
Python tracker
<https://bugs.python.org/issue45712>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zachary Ware :
--
keywords: +easy, newcomer friendly
stage: -> needs patch
___
Python tracker
<https://bugs.python.org/issue45712>
___
___
Python-
Change by Zachary Ware :
--
keywords: +3.11regression
stage: -> needs patch
___
Python tracker
<https://bugs.python.org/issue45709>
___
___
Python-bugs-lis
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
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
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/098a33f6a60ca2df88e03024ac9d8d
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
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
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
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:
Change by Zachary Ware :
--
resolution: -> out of date
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Zachary Ware :
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue40906>
___
___
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
continu
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
Change by Zachary Ware :
--
nosy: +zach.ware
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue45548>
___
___
Python-bugs-list mai
Change by Zachary Ware :
--
stage: patch review ->
___
Python tracker
<https://bugs.python.org/issue45548>
___
___
Python-bugs-list mailing list
Unsubscrib
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 ->
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/085ccb0f177988065dbe9ef4c5cda4
1 - 100 of 2740 matches
Mail list logo