Home
last modified time | relevance | path

Searched refs:allow_abbrev (Results 1 – 8 of 8) sorted by relevance

/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-unittests/
Dto_toml.py21 allow_abbrev=False
/third_party/python/Lib/
Dargparse.py1705 allow_abbrev=True, argument
1724 self.allow_abbrev = allow_abbrev
2248 if self.allow_abbrev:
/third_party/python/Misc/NEWS.d/
D3.5.0a2.rst271 Add allow_abbrev parameter to argparse.ArgumentParser. Patch by Jonathan
D3.9.0a4.rst447 ``allow_abbrev=False`` was ignored for long options that used a prefix
D3.9.0a1.rst2826 An :class:`~argparse.ArgumentParser` with ``allow_abbrev=False`` no longer
/third_party/python/Doc/library/
Dargparse.rst145 add_help=True, allow_abbrev=True, exit_on_error=True)
187 *allow_abbrev* parameter was added.
190 In previous versions, *allow_abbrev* also disabled grouping of short
551 allow_abbrev section in ArgumentParser objects
558 This feature can be disabled by setting ``allow_abbrev`` to ``False``::
560 >>> parser = argparse.ArgumentParser(prog='PROG', allow_abbrev=False)
1535 The :meth:`~ArgumentParser.parse_args` method :ref:`by default <allow_abbrev>`
1551 This feature can be disabled by setting :ref:`allow_abbrev` to ``False``.
/third_party/python/Lib/test/
Dtest_argparse.py808 parser_signature = Sig(allow_abbrev=False)
825 parser_signature = Sig(prefix_chars='+', allow_abbrev=False)
842 parser_signature = Sig(allow_abbrev=False)
861 parser_signature = Sig(prefix_chars='+', allow_abbrev=False)
/third_party/python/Doc/whatsnew/
D3.5.rst768 :ref:`allow_abbrev` to ``False``. (Contributed by Jonathan Paugh,