mirror of
https://github.com/python/cpython.git
synced 2025-12-10 11:00:14 +00:00
Issue #2333: Backport set and dict comprehensions syntax.
This commit is contained in:
parent
0ca7452794
commit
b646547bb4
26 changed files with 1296 additions and 352 deletions
|
|
@ -685,7 +685,9 @@ class StackDepthTracker:
|
|||
effect = {
|
||||
'POP_TOP': -1,
|
||||
'DUP_TOP': 1,
|
||||
'LIST_APPEND': -2,
|
||||
'LIST_APPEND': -1,
|
||||
'SET_ADD': -1,
|
||||
'MAP_ADD': -2,
|
||||
'SLICE+1': -1,
|
||||
'SLICE+2': -1,
|
||||
'SLICE+3': -2,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue