Implement float is_integer method
Aberta
Contributhon2019
- Linguagem predominante
- Go
- Estrelas
- 1k
- Forks
- 105
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Descrição
## 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.
Guia de contribuição
Nenhum guia de contribuição indexado para este repositório
Avaliação
Esta issue ainda não foi avaliada.