• Home
  • Raw
  • Download

Lines Matching +full:xml +full:- +full:name +full:- +full:validator

11 ## 1.4.0 (2023-01-11)
29 ## 1.3.0 (2022-10-11)
35 `absl.flags.FlagValues.set_default` interface which takes a flag name.
37 addition to flag name(s) as their first positional argument:
38 - `flags.register_validator`
39 - `flags.validator`
40 - `flags.register_multi_flags_validator`
41 - `flags.multi_flags_validator`
42 - `flags.mark_flag_as_required`
43 - `flags.mark_flags_as_required`
44 - `flags.mark_flags_as_mutual_exclusive`
45 - `flags.mark_bool_flags_as_mutual_exclusive`
46 - `flags.declare_key_flag`
54 millisecond precision in XML test result output.
57 - `flags.register_validator`
58 - `flags.validator`
59 - `flags.register_multi_flags_validator`
60 - `flags.multi_flags_validator`
61 - `flags.mark_flag_as_required`
62 - `flags.mark_flags_as_required`
63 - `flags.mark_flags_as_mutual_exclusive`
64 - `flags.mark_bool_flags_as_mutual_exclusive`
65 - `flags.declare_key_flag`
67 ## 1.2.0 (2022-07-18)
73 ## 1.1.0 (2022-06-01)
78 * `absl-py` no longer depends on `six`.
80 ## 1.0.0 (2021-11-09)
84 * `absl-py` no longer supports Python 2.7, 3.4, 3.5. All versions have reached
85 end-of-life for more than a year now.
86 * New releases will be tagged as `vX.Y.Z` instead of `pypi-vX.Y.Z` in the git
89 ## 0.15.0 (2021-10-19)
93 * (testing) #128: When running bazel with its `--test_filter=` flag, it now
94 treats the filters as `unittest`'s `-k` flag in Python 3.7+.
96 ## 0.14.1 (2021-09-30)
100 * Top-level `LICENSE` file is now exported in bazel.
102 ## 0.14.0 (2021-09-21)
111 ## 0.13.0 (2021-06-14)
122 * (app) Annotated the `flag_parser` paramteter of `run` as keyword-only. This
123 keyword-only constraint will be enforced at runtime in a future release.
128 ## 0.12.0 (2021-03-08)
138 parameter or as kwargs-like dicts of parameter values.
139 * (testing) Added public flag holders for `--test_srcdir` and `--test_tmpdir`.
148 ## 0.11.0 (2020-10-27)
157 This resolves an issue where multi-flag validators rely on specific flag
163 ## 0.10.0 (2020-08-19)
169 * (logging) `--logger_levels`: allows specifying the log levels of loggers.
175 * (testing,app) Added `--pdb` flag: When true, uncaught exceptions will be
176 handled by `pdb.post_mortem`. This is an alias for `--pdb_post_mortem`.
203 ## 0.9.0 (2019-12-17)
215 ## 0.8.1 (2019-10-08)
221 * (testing) `create_tempfile` will overwrite pre-existing read-only files.
223 ## 0.8.0 (2019-08-26)
233 `--incompatible_allow_python_version_transitions=true` is set.
236 --test_tag_filters=-python[23]` to ignore the other version.
239 * (testing) `absltest` now integrates better with `--pdb_post_mortem`.
249 ## 0.7.1 (2019-03-12)
269 ## 0.7.0 (2019-01-11)
275 * (flags) Multi-flags now accept any Iterable type for the default value
279 * (testing) Most of absltest is now type-annotated.
293 when deserialized, won't cause --help to be invoked, thus ending the
296 empty --flagfile is allowed; --nohelp and --help=false don't display help
297 * (flags) An empty --flagfile value (e.g. "--flagfile=" or "--flagfile=''"
308 ## 0.6.0 (2018-10-22)
316 ## 0.5.0 (2018-09-17)
323 ## 0.4.1 (2018-08-28)
331 * XML test output is written at the end of all test execution.
335 ## 0.4.0 (2018-08-14)
339 * argparse integration: absl-registered flags can now be accessed via argparse
348 ## 0.3.0 (2018-07-25)
353 called. Useful for program-wide initialization that library code may need.
356 * `absltest.mock`: alias to unittest.mock (PY3) for better unittest drop-in
364 * Make --helpfull work with unicode flag help strings.