Skip to content

The "get" function is not implemented in the Dict. #105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Sungmin-Joo opened this issue Sep 29, 2019 · 0 comments · Fixed by #106
Closed

The "get" function is not implemented in the Dict. #105

Sungmin-Joo opened this issue Sep 29, 2019 · 0 comments · Fixed by #106

Comments

@Sungmin-Joo
Copy link
Contributor

in gpython

>>>> d = {'a' : 1}
>>>> d.get('a')
Traceback (most recent call last):
  File "test.py", line 13, in <module>
    FIXME line of source goes here
AttributeError: "'dict' has no attribute 'get'"
2019/09/29 16:24:04 AttributeError: "'dict' has no attribute 'get'"

in python

>>>> d = {'a' : 1}
>>>> d.get('a')
1
@Sungmin-Joo Sungmin-Joo changed the title The "get" function is not implemented in the fixture. The "get" function is not implemented in the Ditct. Sep 29, 2019
@Sungmin-Joo Sungmin-Joo changed the title The "get" function is not implemented in the Ditct. The "get" function is not implemented in the Dict. Sep 29, 2019
corona10 pushed a commit that referenced this issue Oct 5, 2019
Implement the "get" function and add unit test.
fixes #105
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant