mirror of
https://github.com/python/cpython.git
synced 2025-08-25 19:24:42 +00:00
gh-130907: Treat all module-level annotations as conditional (#131550)
This commit is contained in:
parent
5bf0f3666e
commit
922049b613
21 changed files with 221 additions and 53 deletions
|
@ -2026,6 +2026,10 @@ dummy_func(
|
|||
}
|
||||
}
|
||||
|
||||
pseudo(ANNOTATIONS_PLACEHOLDER, (--)) = {
|
||||
NOP,
|
||||
};
|
||||
|
||||
inst(DICT_UPDATE, (dict, unused[oparg - 1], update -- dict, unused[oparg - 1])) {
|
||||
PyObject *dict_o = PyStackRef_AsPyObjectBorrow(dict);
|
||||
PyObject *update_o = PyStackRef_AsPyObjectBorrow(update);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue