File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1606,7 +1606,7 @@ iterations of the loop.
1606
1606
1607
1607
value = STACK.pop()
1608
1608
result = func(value)
1609
- STACK.push (result)
1609
+ STACK.append (result)
1610
1610
1611
1611
* ``oparg == 1 ``: call :func: `str ` on *value *
1612
1612
* ``oparg == 2 ``: call :func: `repr ` on *value *
@@ -1623,7 +1623,7 @@ iterations of the loop.
1623
1623
1624
1624
value = STACK.pop()
1625
1625
result = value.__format__("")
1626
- STACK.push (result)
1626
+ STACK.append (result)
1627
1627
1628
1628
Used for implementing formatted literal strings (f-strings).
1629
1629
@@ -1636,7 +1636,7 @@ iterations of the loop.
1636
1636
spec = STACK.pop()
1637
1637
value = STACK.pop()
1638
1638
result = value.__format__(spec)
1639
- STACK.push (result)
1639
+ STACK.append (result)
1640
1640
1641
1641
Used for implementing formatted literal strings (f-strings).
1642
1642
@@ -1783,7 +1783,7 @@ iterations of the loop.
1783
1783
arg2 = STACK.pop()
1784
1784
arg1 = STACK.pop()
1785
1785
result = intrinsic2(arg1, arg2)
1786
- STACK.push (result)
1786
+ STACK.append (result)
1787
1787
1788
1788
The operand determines which intrinsic function is called:
1789
1789
You can’t perform that action at this time.
0 commit comments