Christopher Barber

Results 103 comments of Christopher Barber

I pushed some changes to my fork that allow later versions of Xcode and use Xcode by default to build everything except boost.

I haven't seen that. Are you sure you don't have another program using port 2000?

I am seeing the same thing for specific docstring checks that were disabled in the `.pylintrc` file (using 2.5.3). I assume this is the same issue: ```python # pylint: enable=missing-docstring...

As a workaround, you can apply the decorator after the class declaration: ```python class MyCommandSet(cmd2.CommandSet): ... cmd2.with_default_category("stuff")(MyCommandSet) ```

Wish poetry would stop resisting implementation of python standards. Even if use of the arbitrary equality clause is for corner cases, it is still there for a reason. And it...

I see. I would consider trying to work on it but only if I thought there was a very good chance that it would be accepted.

Not sure why MIT is considered to be that much "friendlier". I doubt it matters either way. I always use Apache 2 for my projects.

As I said, given a cleaned up docstring, I need to be able to convert any offset into that string into correct line and column. This is non-trivial because the...

Basically, I plan to use it when logging warnings on bad crossrefs in doc strings. Here is what my current code looks like (but I am still working on this):...

FYI, I have implemented this in my own tool for now and unless I am missing some subtlety it just requires adding the package's dependencies. https://zuzukin.github.io/whl2conda/latest/cli/whl2conda-install.html