Felipe A. Hernandez

Results 16 issues of Felipe A. Hernandez

``` javascript var mq = require('css-mediaquery'); mq.parse('only screen and (min-width: 950px)') ``` ``` json [{ "inverse": false, "type": "screen", "expressions": [{ "modifier": "min", "feature": "width", "value": "950px" }] }] ```...

The python tool `coverage` is much more common and mainstream than `pytest-cov` (which requires non-standard `pytest` runner) see both [pytest-cov stats](https://libraries.io/pypi/pytest-cov) and [coverage stats](https://libraries.io/pypi/coverage) This means this plugin is not...

enhancement
help wanted

### Checklist - [x] The bug is reproducible against the latest release and/or `master`. - [x] There are no similar issues or pull requests to fix it yet. ### Describe...

feature
testclient

### Description of the Change Explicitly enables OpenRPC `rpc.discover` method. ### Alternate Designs The entire `rpc` method namespace restriction could be removed, but it's a bigger change that would require...

### Description json-rpc completely prevents the usage of `rpc.` method namespace, aimed at system extensions, preventing any user or library from implementing said extensions. https://github.com/pavlov99/json-rpc/blob/00b24a9e811d9ca89ec3b1570195c881687bbef4/jsonrpc/jsonrpc2.py#L74-L79 Nowhere in the JSON-RPC [specification](https://www.jsonrpc.org/specification#extensions)...

Chevron does not seem to enter scope with nested empty lists, which is non-compliant with spec Given this example: ```json {"arrays": [[1,2,3], []]} ``` ```mustache {{#arrays}} [{{#.}}{{.}}{{/.}}] is {{^.}}empty{{/.}}{{#0}}non empty{{/0}}...

feature request

Accesing package resources from filesystem is considered bad practice as it won't allow the package to be zip_safe (unable to use the package in compressed mode), breaking application 'freeze' functionality...

This module is not WSGI compliant. PEP-333 rules **start_response callable must be called** before wsgi app returns (or starts yielding), and here it isn't for websocket requests, which could make...

Given this example, explicitly allowed by [PEP8](https://www.python.org/dev/peps/pep-0008/#id19) (lit. `Backslashes may still be appropriate at times. For example, long, multiple with-statements cannot use implicit continuation, so backslashes are acceptable`): ```python async...

Swig 4 deprecated `-classic`. https://github.com/sangoma/python-ESL/blob/a9ce41832cbd23557183120dd5027631f70d6ea2/setup.py#L25 Relevant output (compilation fails with exit status 1): ``` swig -python -classic -c++ -DMULTIPLICITY -threads -I. -o ESL_wrap.cpp ESL.i Deprecated command line option: -classic. This...