abseil-py icon indicating copy to clipboard operation
abseil-py copied to clipboard

Abseil Common Libraries (Python)

Results 30 abseil-py issues
Sort by recently updated
recently updated
newest added

Initial version. Includes doc/Makefile with instructions for building sphinx docs locally. The local sphinx docs build uses a slightly different process than readthedocs (executing the sphinx-apidoc binary vs using the...

mypy is stricter when it comes to propagation of None values.

This pull request includes a couple of fixes were mypy appears to be stricter than pytype, and adds PEP 561 markings so that mypy knows that the module contains type...

cla: yes

This would allow users to take advantage of the error handling here while still being able to pass custom options on to FLAGS. An alternative approach would just pass all...

cla: yes

There's something odd going on with absl.flags and interacting very badly with multiprocessing when using 'spawn' as a start method. This is on MacOS 11.4, using homebrew's version of Python...

Sometimes we have some interface and we would like to write a generic test suite for it, so that concrete implementations just reuse it. The problem with Python's `unittest` (and...

Are there any plans to support a `flags.DEFINE_path` or something similar that utilizes python's `pathlib` module to support declaring `os.PathLike` operations for the default option? For context, I often find...

Would it be possible to get a new function `declare_key_flags()` that behaves like `declare_key_flag()` but takes a Collection of flags instead of a single flag? It would make it easier...

The `-v` flag can be used to enable vlog messages across all files, but is it possible to enable only for a specific file(s)? I think the C++ logging library...

Hi, I want to compile my python app using absl-py into executable using Cython. I tried it with just the example from absl import app from absl import flags FLAGS...