Implement list pop method
Open
bug
Contributhon2019
- Dominant language
- Go
- Stars
- 1k
- Forks
- 105
- PR merge metrics
- No merged PRs in 30d
Description
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'"
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.