Message3319
| Author |
tim.peters |
| Recipients |
| Date |
2001年02月12日.20:21:42 |
| SpamBayes Score |
| Marked as misclassified |
| Message-id |
| In-reply-to |
| Content |
Raised priority, assigned to me.
Offhand, looks like one of those cases where the worker function (listreverse) was changed to use PyArg_ParseTuple, but the API wrapper function (PyList_Reverse) passes NULL for args instead of an empty tuple. Boom. list.reverse() at Python level uses the worker function directly. so only an extension module would bump into this (PyList_Reverse isn't used anywhere within Python).
whack, this should get fixed for the 2.1b1 release. In the meantime, try invoking the reverse *method* on your list object. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2007年08月23日 13:53:08 | admin | link | issue232008 messages |
| 2007年08月23日 13:53:08 | admin | create |
|