Paul "TBBle" Hampson

Results 225 comments of Paul "TBBle" Hampson

@galik: A status value that changes the meaning of other results from a function is basically what [P0157](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/p0157r0.html) is surveying. For your given example, where the return value is useless...

If you want to return a status code _and_ an object, that's also part of [P0157](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/p0157r0.html)'s survey. In that case, the other current proposal, status_value ([N4233](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4233.html)) works roughly the same...

Maybe I've overlooked something, but before [P0135R0](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/p0135r0.html), I don't believe there was any guarantee of copy elision. `return {value1, value2};` constructs a temporary _there_ and then returns it, which is...

Huh, I just noticed that bert:decode_term/1 doesn't decode regexes or times either. So maybe that should be supported? Depends on the rationale for not having that support in bert:decode_term/1 already.

I just came here to report exactly this. Perhaps it is a mistake or refactoring issue, and the `False` is supposed to be for when the `SetConsoleMode` fails, not when...

This looks like a known issue per https://github.com/pypa/pip/issues/6264#issuecomment-685230919, which is not python-poetry specific, but triggered by pip when > a PEP 517 build of a package is performed, its build...

Repro case for my diagnosis above, with fresh python 3.8.0. (I _intended_ to grab 3.8 latest, but was inattentive...) Specifically, I have not run the following, which is usually the...

Code-complete works because pylance bundles [the stubs for `six.moves` from typeshed](https://github.com/python/typeshed/blob/master/stubs/six/six/moves/__init__.pyi). Perhaps pylance should just suppress `reportMissingModuleSource` for `six.moves` and sub-modules of it when `six` itself is found, as a...

I hit this issue as well in 2.2.19, and the workaround in https://github.com/hashicorp/vagrant/issues/11945#issuecomment-918763938 turned out to be insufficient in my environment. I ended up with the following block: ``` $DSContext...

The [upstream fix](https://github.com/kubernetes/kubernetes/pull/92109) for this has landed in k8s master, so will be in 1.19, which should be available in EKS sometime in 2021.