[issue39546] argparse: allow_abbrev=False is ignored for alternative prefix characters

2020-03-03 Thread Petr Viktorin
Change by Petr Viktorin : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue39546] argparse: allow_abbrev=False is ignored for alternative prefix characters

2020-02-18 Thread miss-islington
miss-islington added the comment: New changeset e412cbba52e7cf6699720d99a4b88baef92db7b2 by Miss Islington (bot) in branch '3.8': [3.8] bpo-39546: argparse: Honor allow_abbrev=False for specified prefix_chars (GH-18337) (GH-18543)

[issue39546] argparse: allow_abbrev=False is ignored for alternative prefix characters

2020-02-18 Thread miss-islington
miss-islington added the comment: New changeset 8edfc47baec7ff4cb1b9db83dd35c8ffc1d498a4 by Kyle Meyer in branch 'master': bpo-39546: argparse: Honor allow_abbrev=False for specified prefix_chars (GH-18337) https://github.com/python/cpython/commit/8edfc47baec7ff4cb1b9db83dd35c8ffc1d498a4

[issue39546] argparse: allow_abbrev=False is ignored for alternative prefix characters

2020-02-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +17920 pull_request: https://github.com/python/cpython/pull/18543 ___ Python tracker ___

[issue39546] argparse: allow_abbrev=False is ignored for alternative prefix characters

2020-02-04 Thread hai shi
hai shi added the comment: Good catch, it apprears in my python env(master base) too. -- nosy: +paul.j3, rhettinger, shihai1991 ___ Python tracker ___

[issue39546] argparse: allow_abbrev=False is ignored for alternative prefix characters

2020-02-03 Thread Kyle Meyer
Change by Kyle Meyer : -- keywords: +patch pull_requests: +17709 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18337 ___ Python tracker ___

[issue39546] argparse: allow_abbrev=False is ignored for alternative prefix characters

2020-02-03 Thread Kyle Meyer
New submission from Kyle Meyer : As of Python v3.8.0 (specifically commit b1e4d1b603), specifying `allow_abbrev=False` does not disable abbreviation for prefix characters other than '-'. --8<---cut here---start->8--- import argparse parser =