Eine Klasse zu einer Tabelle in Sphinx hinzufügen?

Ich habe eine Tabelle in rst und möchte ihr eine Klasse hinzufügen, wenn ich mit Sphinx HTML kompiliere. Gemäßthe docs, ein @ hinzufüg.. class::ie Direktive @ vor der Tabelle sollte die Klasse der Tabelle hinzufügen, fügt jedoch stattdessen eine Definitionsliste hinzu.

Der Tabellencode lautet:

.. class:: special

== == ==
a  b  c
1  2  3
== == ==

was in ... endet

<dl class="class">
<dt id="special">
<em class="property">class </em><code class="descname">special<a class="headerlink" href="#special" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>

<table border="1" class="docutils">
<colgroup>
<col width="33%" />
<col width="33%" />
<col width="33%" />
</colgroup>
<tbody valign="top">
<tr class="row-odd"><td>a</td>
<td>b</td>
<td>c</td>
</tr>
<tr class="row-even"><td>1</td>
<td>2</td>
<td>3</td>
</tr>
</tbody>
</table>

Was mache ich falsch? Ich benutze Sphinx 1.3.1