Implement float is_integer method
Abierto
Contributhon2019
- Lenguaje dominante
- Go
- Estrellas
- 1k
- Forks
- 105
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
## python
```
>>> a = 10.0
>>> type(a)
>>> a.is_integer()
True
```
## gpython
```
>>> a = 10.0
>>> type(a)
>>> a.is_integer()
Traceback (most recent call last):
File "", line 1, in
FIXME line of source goes here
AttributeError: "'float' has no attribute 'is_integer'"
```
`is_integer()` method does not exist.
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.