Skip to content
This repository has been archived by the owner on May 31, 2020. It is now read-only.

Refs #36 Implemented list.__rmul__ conversion method. #959

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/common/org/python/types/List.java
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ public org.python.Object __imul__(org.python.Object other) {
args = {"other"}
)
public org.python.Object __rmul__(org.python.Object other) {
throw new org.python.exceptions.NotImplementedError("list.__rmul__() has not been implemented.");
return __mul__(other);
}

@org.python.Method(
Expand Down