Update some doc code blocks to the 'pycon' lexer

These code blocks represent Python console sessions, not Python source
code. The pycon lexer understands the ">>>" prompt and output (e.g. a
traceback).
This commit is contained in:
Jon Dufresne 2020-12-19 17:55:54 -08:00
parent c1707d5d55
commit 5474b2c7d4
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ Fix regression seeking PNG files
This fixes a regression introduced in 7.1.0 when adding support for APNG files when calling
``seek`` and ``tell``:
.. code-block:: python
.. code-block:: pycon
>>> from PIL import Image
>>> with Image.open("Tests/images/hopper.png") as im:

View File

@ -9,7 +9,7 @@ This fixes a regression introduced in 7.1.0 when adding support for APNG files.
When calling ``seek(n)`` on a regular PNG where ``n > 0``, it failed to raise an
``EOFError`` as it should have done, resulting in:
.. code-block:: python
.. code-block:: pycon
AttributeError: 'NoneType' object has no attribute 'read'