为什么不能在列表理解中使用可迭代解包?

The*_*zer 7 python list-comprehension python-3.x iterable-unpacking

当我尝试在列表理解中解压列表时:

[*parent.rules for parent in parents if hasattr(parent, "rules")]
Run Code Online (Sandbox Code Playgroud)

我收到错误:

SyntaxError: iterable unpacking cannot be used in comprehension
Run Code Online (Sandbox Code Playgroud)

虽然我知道还有其他方法可以做到这一点,但这似乎是最明显和 Pythonic 的方法。为什么 Python 不允许这种行为?