arg parsing truncates at hash
Abierto
bug
- Lenguaje dominante
- Python
- Estrellas
- 28.2k
- Forks
- 1.5k
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
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.
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.