Add another GHOP student to ACKS.

This commit is contained in:
Georg Brandl 2007-12-06 00:24:23 +00:00
parent 18679948c4
commit 923ad7a948
2 changed files with 3 additions and 2 deletions

View 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

View 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