[Python-checkins] r59377 - in python/trunk/Doc: ACKS.txt c-api/newtypes.rst

georg.brandl python-checkins at python.org
Thu Dec 6 01:24:23 CET 2007


Author: georg.brandl
Date: Thu Dec  6 01:24:23 2007
New Revision: 59377

Modified:
   python/trunk/Doc/ACKS.txt
   python/trunk/Doc/c-api/newtypes.rst
Log:
Add another GHOP student to ACKS.


Modified: python/trunk/Doc/ACKS.txt
==============================================================================
--- python/trunk/Doc/ACKS.txt	(original)
+++ python/trunk/Doc/ACKS.txt	Thu Dec  6 01:24:23 2007
@@ -121,6 +121,7 @@
 * Vincent Marchetti
 * Laura Matson
 * Daniel May
+* Rebecca McCreary
 * Doug Mennella
 * Paolo Milani
 * Skip Montanaro

Modified: python/trunk/Doc/c-api/newtypes.rst
==============================================================================
--- python/trunk/Doc/c-api/newtypes.rst	(original)
+++ python/trunk/Doc/c-api/newtypes.rst	Thu Dec  6 01:24:23 2007
@@ -1592,13 +1592,13 @@
 .. 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


More information about the Python-checkins mailing list