Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/library/zoneinfo.rst
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ The behavior of a ``ZoneInfo`` file depends on how it was constructed:
constructed from ``ZoneInfo("Europe/Berlin")``, one would expect the
following behavior:

.. code-block::
.. code-block:: pycon

>>> a = ZoneInfo("Europe/Berlin")
>>> b = pickle.loads(europe_berlin_pkl)
Expand All @@ -314,7 +314,7 @@ The behavior of a ``ZoneInfo`` file depends on how it was constructed:
constructed from ``ZoneInfo.no_cache("Europe/Berlin")``, one would expect
the following behavior:

.. code-block::
.. code-block:: pycon

>>> a = ZoneInfo("Europe/Berlin")
>>> b = pickle.loads(europe_berlin_pkl_nc)
Expand Down