]> granicus.if.org Git - python/commitdiff
Add another GHOP student to ACKS.
authorGeorg Brandl <georg@python.org>
Thu, 6 Dec 2007 00:24:23 +0000 (00:24 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 6 Dec 2007 00:24:23 +0000 (00:24 +0000)
Doc/ACKS.txt
Doc/c-api/newtypes.rst

index 5a66727dea826629172ac6a0443d96b47a421a6e..7004f65333280f0958b9f8a90d12f68c807becf3 100644 (file)
@@ -121,6 +121,7 @@ docs@python.org), and we'll be glad to correct the problem.
 * Vincent Marchetti
 * Laura Matson
 * Daniel May
+* Rebecca McCreary
 * Doug Mennella
 * Paolo Milani
 * Skip Montanaro
index 827d70c34be17f5d8da63eed1be3fac817dc3f34..61c30f66b1dd0551a28b462bc5dff14474dc763a 100644 (file)
@@ -1592,13 +1592,13 @@ Sequence Object Structures
 .. cmember:: binaryfunc PySequenceMethods.sq_concat
 
    This function is used by :cfunc:`PySequence_Concat` and has the same
-   signature.  It is also used by the `+` operator, after trying the numeric
+   signature.  It is also used by the ``+`` operator, after trying the numeric
    addition via the :attr:`tp_as_number.nb_add` slot.
 
 .. cmember:: ssizeargfunc PySequenceMethods.sq_repeat
 
    This function is used by :cfunc:`PySequence_Repeat` and has the same
-   signature.  It is also used by the `*` operator, after trying numeric
+   signature.  It is also used by the ``*`` operator, after trying numeric
    multiplication via the :attr:`tp_as_number.nb_mul` slot.
 
 .. cmember:: ssizeargfunc PySequenceMethods.sq_item