Results 797 comments of James Addison

@fduwjj By the way, your comment at https://github.com/pytorch/pytorch/issues/92319#issuecomment-1396243726 (comparing what looks like sensible behaviour in Py3.9 with what looks like a weird behaviour change in Py3.11) inspired an attempt to...

Please note: there is a pull request with a potential solution to this high-priority blocker, but please confirm that any and all questions raised in #85559 are resolved before looking...

> Perform an (efficient) lookup It might be worth checking my claim about this. I _thought_ that `IntFlag` membership tests should be trivially efficient; I'm less certain about that currently,...

> > Perform an (efficient) lookup > > It might be worth checking my claim about this. I _thought_ that `IntFlag` membership tests should be trivially efficient; I'm less certain...

If someone else wants to develop a fix implementation of their own -- say, for verification or training purposes -- then some approximate guidance I'd be happy to share (and...

Re: `@validate_arguments` I'm not exactly sure how to phrase this feedback yet, but would like to share some thoughts. Perhaps this minimal-ish repro case is a start: ``` Python 3.11.2...

Perfect - thanks, @the-matt-morris - adding `smart_union` produces the behaviour that I was expecting. And now I've read that there's a possibility that `smart_union` [may be enabled by default after...

As I've mentioned in a [bugreport comment a few moments ago](https://github.com/nedbat/coveragepy/issues/1488#issuecomment-2241234927), I don't think I had understood a detail about the extent of the requirement to support filenames without dotted...

Sphinx v7.4.0 introduces support for the `.jinja` suffix on template filenames - it may take some time before downstream Sphinx ecosystem themes/extensions, but as they do, I hope that the...

Thank you. Here is a sample that recreates the situation: ```python # Sample code derived from: https://docs.python.org/3/library/http.server.html#http.server.SimpleHTTPRequestHandler and sphinx: https://github.com/sphinx-doc/sphinx.git from contextlib import contextmanager from http.server import SimpleHTTPRequestHandler, ThreadingHTTPServer import...