Chris Goes

Results 44 comments of Chris Goes

This is still an issue as of Hug 2.4.1

``` import warnings warnings.simplefilter("ignore") ``` Or when you run Python: `python -W ignore script.py` [Source](https://stackoverflow.com/questions/14463277/how-to-disable-python-warnings) Many libraries make use of this module, so if you're shipping a user-facing terminal app...

The original does not yet support Python 3 in the full release, only the release candidates AFAIK.

@gpotter2 Please don't post the same copy-paste comment in every issue on this repo. If the information is relevant to all, open a separate issue. The rc branch isn't done...

I ran into issues running Scapy with Anaconda. My solution was to uninstall anaconda, and use the basic python install from python.org. My platform is the same as yours, Win...

Why have a separate argument for Pipfile instead of using `-f` and checking the filename?

What's the specific issue you're having? And what version of Windows, Python, and Pip were you using? It works for me on Windows 10 with Python 3.7 and Pip 18.1,...

@etingof Yes, setuptools entrypoints are much better behaved on Windows. It would likely fix most of these issues, in addition to being slightly cleaner (`snmpsimd` versus `snmpsimd.py`).

Just poking through the PRs, it seems some folks have forked it and continued development, including addressing most of the outstanding PRs. https://github.com/bazaar-projects/docopt-ng

So the solution is to encode the defaults wherever in your code you're parsing the arguments. Isn't that somewhat contrary to the purpose of docopt?