Christian Clauss

Results 842 issues of Christian Clauss

https://github.com/overtrue/phplint Test results: https://github.com/cclauss/moodle-mod_hvp/actions Because Travis CI seems to be on vacation https://travis-ci.org/github/h5p Also, Fix typos in readme to test new phplint release

https://pypi.org/project/anyjson/ has not been released since 2012 and its installation utilizes `use_2to3=True` which was [removed in `setuptools` v58.0.0](https://setuptools.pypa.io/en/latest/history.html#v58-0-0) because `2to3` is being removed from Python. Workaround: Downgrading via `pip install...

Test results: https://github.com/cclauss/python-crfsuite/actions Related to #131

## What do these changes do? https://github.com/actions/setup-python/releases ## Are there changes in behavior for the user? ## Related issue number ## Checklist - [x] I think the code is well...

$ `python3 -m flake8 . --count --select=E9,F63,F7,F82,Y --show-source --statistics` ``` ./src/editor/ifacer.py:245:4: F821 undefined name 'printEventDefs' printEventDefs(definition, output) ^ ./src/editor/ifacer.py:248:4: F821 undefined name 'printEventPrivates' printEventPrivates(definition, output) ^ ./src/editor/ifacer.py:251:4: F821 undefined name...

bug

Python type hints would be an interesting direction once Python 2 support is dropped... $ `mypy --ignore-missing-imports .` ``` montydb/montydb/types/_bson.py:279: error: Need type annotation for 'custom_json_hooks' (hint: "custom_json_hooks: Dict[, ]...

enhancement

Test results: https://github.com/cclauss/python-user-agents/actions

https://devguide.python.org/#status-of-python-branches vs. https://devguide.python.org/devcycle/#end-of-life-branches https://www.appveyor.com/docs/lang/python

Test results: https://github.com/cclauss/user_agent/actions

This works on macOS. ```python elif query.split()[0] in ("calculate", "math"): print_and_speak(str(eval(query.replace("calculate", "").replace("math", "")))) ```