Skip to content

Commit b6763d1

Browse files
committed
[GR-43440] Add nb_inplace_power slot and cleanup math ops
PullRequest: graalpython/3697
2 parents 65b936e + a9632e4 commit b6763d1

File tree

125 files changed

+1674
-3000
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+1674
-3000
lines changed

graalpython/com.oracle.graal.python.annotations/src/com/oracle/graal/python/annotations/Slot.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,8 @@ enum SlotKind {
161161
nb_inplace_true_divide("__itruediv__"),
162162
/** foo @= bar */
163163
nb_inplace_matrix_multiply("__imatmul__"),
164+
/** foo **= bar */
165+
nb_inplace_power("__ipow__"),
164166
/** sequence length/size */
165167
sq_length("__len__"),
166168
/** sequence item: read element at index */

0 commit comments

Comments
 (0)