go-python / go-python/gpython

Implement list pop method

Open
#95 2 comments 1 reaction 1 assignee Claimed by @deeesp View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.