This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients benjamin.peterson, georg.brandl, gvanrossum, jmillikin, pitrou, rhettinger
Date 2011-01-04.03:22:17
SpamBayes Score 0.013067703
Marked as misclassified No
Message-id <1294111339.79.0.649086794838.issue5945@psf.upfronthosting.co.za>
In-reply-to
Content
Here's a code search link:

 http://www.google.com/codesearch?as_q=PyMapping_Check

And here's how it currently used internal to the Python codebase:

$ ack --cc PyMapping_CheckInclude/abstract.h
1125:     PyAPI_FUNC(int) PyMapping_Check(PyObject *o);

Modules/posixmodule.c
3585:    if (!PyMapping_Check(env)) {
3764:    if (!PyMapping_Check(env)) {
3950:    if (!PyMapping_Check(env)) {

Objects/abstract.c
1987:PyMapping_Check(PyObject *o)

Objects/frameobject.c
605:        (locals != NULL && !PyMapping_Check(locals))) {

PC/_subprocess.c
340:    if (! PyMapping_Check(environment)) {

Python/bltinmodule.c
700:    if (locals != Py_None && !PyMapping_Check(locals)) {
705:        PyErr_SetString(PyExc_TypeError, PyMapping_Check(globals) ?
794:    if (!PyMapping_Check(locals)) {
History
Date User Action Args
2011-01-04 03:22:19rhettingersetrecipients: + rhettinger, gvanrossum, georg.brandl, pitrou, benjamin.peterson, jmillikin
2011-01-04 03:22:19rhettingersetmessageid: <1294111339.79.0.649086794838.issue5945@psf.upfronthosting.co.za>
2011-01-04 03:22:17rhettingerlinkissue5945 messages
2011-01-04 03:22:17rhettingercreate