Frazer McLean

Results 31 comments of Frazer McLean

Please don't be dismissive. I already moved the array to a const in my code to prevent the extra semicolon. Unless I'm mistaken, I don't think it's ambiguous. If prettier...

Yes 1.4.1 works fine for me, just noticed it after a `yarn upgrade`.

@dschult @seberg Thanks for the work on this. I didn't find any mention in the docs about incompatibilities with `importlib.util.LazyLoader`, and to be honest I'm not sure if it's a...

I assume it's the same issue but I saw this trying to format some parsed dates as UTC. You can see the issue even if the input dates are UTC...

I think I'll be submitting this to PyPI with a slightly different name, if only because I can't find any other implementations of a bloom filter that support Python 3...

Based on [Annex D: SPDX license expressions](https://spdx.github.io/spdx-spec/v2.3/SPDX-license-expressions/), shouldn't I be able to parse `Apache-2.0+`, for example? ```python >>> from license_expression import get_spdx_licensing >>> licensing = get_spdx_licensing() >>> licensing.parse("Apache-2.0+", validate=True, strict=True)...

@pombredanne thank you for the thorough response! I didn't see `Apache-2.0+` in the wild with my dependencies. I am evaluating the use of this library to parse licenses and I...

I clicked the resolve conflict button in the UI since you mentioned it. I'll bother rebasing if it a) looks like it'll be merged and b) won't be squashed…

They *are* all `None` if not present, the empty value is used if the directive is present but has no argument: ```pycon >>> from werkzeug.http import parse_cache_control_header >>> parse_cache_control_header("max-stale").max_stale '*'...