Dylan Baker

Results 372 comments of Dylan Baker

@mathstuf If you can get the contents of `$builddir/meson-logs/*`that would be helpful, there's a lot of debugging info around arch detection that ends up there but not in the terminal.

Meson does specifically query the compiler to see what the actual architecture is on a given machine, since what we would otherwise get is what the python is built for,...

I think this is a typeshed issue https://github.com/python/typeshed/pull/15108

@eli-schwartz: updated with an ignore because this is a bad warning from a bug in typeshed.

Yeah, I think we need to have a version check instead of a `try/except`

I think we have consensus on this? I'm planning to merge this Friday unless there's objection.

> So, if you "have to", you'll use a tuple for the actual semantic purpose of a tuple, and if you don't have to, you maintain a meaningless nonsensical made-up...

That's simply not true. Tuples are basically structs with index lookup instead of attribute lookup. The fact that they are immutable is a design decision that python made, as is...

I'm done arguing this because all we're doing is making each other mad and not making any progress. I've changed to a tuple, but linked the issue from above, as...

Having worked on optimizing compilers, I'd expect that the optimizer would attempt to turn lists into tuples and sets into frozensets if it can, or even some lower level things...