如何将重组文本中的文字块与块引用分开?

How can one separate a literal block from a blockquote in restructuredtext?

例如,如果我有:

.. code:: python
   import os
   this_is_the_last_code_line = 5

   Now I want this text to be a blockquote.

块引用被假定为文字代码块的一部分。有什么方法可以表明这些是单独的块吗?

使用 pull-quote directive.

.. code:: python

    import os
    this_is_the_last_code_line = 5

.. pull-quote::

    Now I want this text to be a blockquote.