Implement list pop method
Abierto
bug
Contributhon2019
- Lenguaje dominante
- Go
- Estrellas
- 1k
- Forks
- 105
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
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'"
```
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.