summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-12-06 00:24:23 (GMT)
committerGeorg Brandl <georg@python.org>2007-12-06 00:24:23 (GMT)
commit923ad7a9488c9b514c8e27315179ada1d142f3e5 (patch)
tree5c96d8cf9c5ce785316172af29753d087683d093
parent18679948c4a06613763ae351160dd072567067a1 (diff)
downloadcpython-923ad7a9488c9b514c8e27315179ada1d142f3e5.zip
cpython-923ad7a9488c9b514c8e27315179ada1d142f3e5.tar.gz
cpython-923ad7a9488c9b514c8e27315179ada1d142f3e5.tar.bz2
Add another GHOP student to ACKS.
-rw-r--r--Doc/ACKS.txt1
-rw-r--r--Doc/c-api/newtypes.rst4
2 files changed, 3 insertions, 2 deletions
diff --git a/Doc/ACKS.txt b/Doc/ACKS.txt
index 5a66727..7004f65 100644
--- a/Doc/ACKS.txt
+++ b/Doc/ACKS.txt
@@ -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
diff --git a/Doc/c-api/newtypes.rst b/Doc/c-api/newtypes.rst
index 827d70c..61c30f6 100644
--- a/Doc/c-api/newtypes.rst
+++ b/Doc/c-api/newtypes.rst
@@ -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