arg parsing truncates at hash
Đang mở
bug
- Ngôn ngữ chính
- Python
- Star
- 28.2k
- Fork
- 1.5k
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
Fire's arg parser truncates strings with hashes (#) in them. Simple test:
test.py:
```
import fire
def test(a): print(a, type(a))
fire.Fire(test)
```
```
> python test.py hi#there
hi
> python test.py "hi#there"
hi
```
If this is by design, it doesn't appear to be documented anywhere.
Hướng dẫn đóng góp
Đánh giá
Issue này chưa được đánh giá.