Remove explicit highlighting as pygments doesn't seem to be installed

This commit is contained in:
Antoine Pitrou 2017-09-08 16:36:02 +02:00
parent cb7ebc00b4
commit 88b326e653
1 changed files with 3 additions and 3 deletions

View File

@ -128,7 +128,7 @@ or threaded.
An internal structure ``gc_mutex`` is added to avoid two GC runs at once: An internal structure ``gc_mutex`` is added to avoid two GC runs at once:
.. code-block:: c .. code-block::
static struct { static struct {
PyThread_type_lock collecting; /* taken when collecting */ PyThread_type_lock collecting; /* taken when collecting */
@ -139,7 +139,7 @@ An internal structure ``gc_mutex`` is added to avoid two GC runs at once:
An internal structure ``gc_thread`` is added to handle synchronization with An internal structure ``gc_thread`` is added to handle synchronization with
the GC thread: the GC thread:
.. code-block:: c .. code-block::
static struct { static struct {
PyThread_type_lock wakeup; /* acts as an event PyThread_type_lock wakeup; /* acts as an event
@ -174,7 +174,7 @@ Here is a proposed pseudo-code for the main primitives, public and internal,
required for implementing this PEP. All of them will be implemented in C required for implementing this PEP. All of them will be implemented in C
and live inside the ``gc`` module, unless otherwise noted: and live inside the ``gc`` module, unless otherwise noted:
.. code-block:: python .. code-block::
def collect_with_callback(generation): def collect_with_callback(generation):
""" """