Implement list pop method
Aberta
bug
Contributhon2019
- Linguagem predominante
- Go
- Estrelas
- 1k
- Forks
- 105
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Descrição
Attribute errors occured using list.
**Python (expected)**
```
>>> a.pop()
4
>>>a
[1,2,3]
>>>a.pop(1)
2
>>>a
[1,3]
```
**gpython (Actual)**
```
>>> a = [1,2,3,4]
>>> a.pop()
Traceback (most recent call last):
File "", line 1, in
FIXME line of source goes here
AttributeError: "'list' has no attribute 'pop'"
```
Guia de contribuição
Nenhum guia de contribuição indexado para este repositório
Avaliação
Esta issue ainda não foi avaliada.