Alex Jasmin

Results 11 comments of Alex Jasmin

The documentation is somewhat misleading > stderr > Prints its input in *raw* and *compact* mode to stderr with no additional decoration, not even a newline. Would let you believe...

> ``` > $ bazel build -c opt @upb//python/dist:binary_wheel > ``` That works, Thank You! I must confess I have minimal knowledge of bazel. It may be instructive to have...

mypy is reporting errors on the generated stubs. Those may have to be addressed first. The stubs generated for enums use a metaclass not deriving from `type`, which causes an...

Note that UNC (network) path should be recognized as normal file paths by the windows API and standard C/C++ functions on Windows. I'm not sure what the problem is here...

python/README still doesn't cover building a wheel that bundles the upb extension. The bazel command above can be documented without having to share any proprietary code.

I generally like to keep my prompt short and show only the last or last few paths parts. Though, when using `z` I want to see exactly where I end...

It doesn't seem production ready yet. mypy gives a bunch of errors running on the --pyi_out generated stubs

Personally I'd like to see an on/off switch in the Firebug UI itself (perhaps under the script tab menu). Can the Firebug UI be extended this way?

This needs to have a `py.typed` file under `src/isodate` otherwise type checkers will treat the package as untyped. Also add to MANIFEST.in

> > This needs to have a `py.typed` file under `src/isodate` otherwise type checkers will treat the package as untyped. > > I'm not familiar with python packaging, did I...