aboutsummaryrefslogtreecommitdiff
path: root/absl/flags
AgeCommit message (Expand)Author
2022-10-03Fix typo in documentationAbseil Team
2022-09-20Add a flags.set_default function.Abseil Team
2022-09-13Support FlagHolders in flag module-level functions.Abseil Team
2022-09-09Remove Python 2 compat code.Abseil Team
2022-08-24Expose the public APIs as the `__all__` attribute in `absl/flags/__init__.py`.Yilei Yang
2022-08-19Update some of the docstrings to be compatible with `reST`, in preparation to...Yilei Yang
2022-07-18Work around a Pytype issue in `DEFINE_multi_enum_class`'s return value where ...Yilei Yang
2022-06-08Remove the unnecessary Python 2 related future imports.Yilei Yang
2022-05-23Make FlagHolder unconditionally generic.John Aslanides
2022-05-06Remove the py2/py3 compatibility module _collections_abc.Yilei Yang
2022-05-05Remove the use of six in absl.flags.Yilei Yang
2022-03-22Remove the use of third party `mock` package and future imports in these tests.Yilei Yang
2022-03-21Remove comments, license is declared in the LICENSE file.Yilei Yang
2022-02-22Enumerate possible values in multi_enum flag help.Abseil Team
2022-02-08Prevent the truthiness of absl.flags Flag instances from being tested in a bo...Gregory P. Smith
2022-01-24Remove PY2-ism in absl's own unit tests.Yilei Yang
2022-01-20Merge changes from github.Yilei Yang
2021-11-05Set the stacklevel=2 in those UserWarnings, so that they are emitted where th...Yilei Yang
2021-10-25Drop the support of Python 2.7, 3.4, and 3.5. All versions have reached end-o...Yilei Yang
2021-09-29Remove these exports_files, those LICENSE files no longer exist in their dire...Yilei Yang
2021-07-26absl: Expose the `.present` property from `Flag` on `FlagHolder`Abseil Team
2021-07-19Fix #171: add an ignored `default=` argument to our custom actions.Yilei Yang
2021-06-14Stop testing Python 2 in absl.Yilei Yang
2021-06-08Update docstring.Yilei Yang
2021-04-30Shows all missing required flags in error message, instead of just the first ...Abseil Team
2021-04-19Add the missing syntactic_help attribute annotation on ArgumentParserYilei Yang
2021-04-16Add the missing annotation `Flag.default_as_str`.Yilei Yang
2021-03-30Add `Flag.default_unparsed` to annotations.Yilei Yang
2021-03-04Expose the --test_tmpdir and --test_srcdir flags as public flag holders.Yilei Yang
2021-02-26Add EnumClassListSerializer to the public namespaceAbseil Team
2021-02-12Fix CsvListSerializer to honor its list_sep parameter.Abseil Team
2021-02-09Add type annotations for `EnumClassSerializer`Abseil Team
2021-02-08Expose EnumClassSerializer.Abseil Team
2021-01-29Fix the type annotation for DEFINE_xxx functions where the intention for the ...Yilei Yang
2021-01-20Fixed some pyi errors in flags/_define.pyiAbseil Team
2021-01-19Remove obsolete comments, default values don't belong to `.pyi` files anyway.Yilei Yang
2021-01-06Replace the default values in `.pyi` files with `...` as they don't belong th...Yilei Yang
2020-12-23Add a required argument to DEFINE_* methods.Abseil Team
2020-12-15Use better annotations for the FlagValues magic methods.Yilei Yang
2020-12-02Fix #159: Remove the unnecessary LICENSE files in non-third-party sub-directo...Yilei Yang
2020-11-20Fix absl flagvalues pyi to use python-compatible syntaxAbseil Team
2020-11-19Fix absl flagvalues pyi to use python-compatible syntaxPeter Hawkins
2020-11-19Fix absl flagvalues pyi to use python-compatible syntaxAbseil Team
2020-10-22Surface inappropriate usage of a `FlagHolder` object as a runtime errorMatt McDonald
2020-09-30In flagsaver, set multiple flags together before their validators run.Karol M. Langner
2020-08-24Amend comments on mark_flag_as_required and mark_flags_as_required so they do...Near Privman
2020-08-03Make `DEFINE_enum_class` values case-insensitive by default.Abseil Team
2020-06-23Remove unused private method.Yilei Yang
2020-06-09The generic parameter of FlagHolder now represents the type of value().Abseil Team
2020-05-28Add type annotations for absl flags (Take 2)Abseil Team