diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2011-10-09 10:38:36 +0200 |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2011-10-09 10:38:36 +0200 |
| commit | dcacb24f386ae1b107462181af42b6826ec15fb7 (patch) | |
| tree | ed05b3b498c8ef724d116a5c46c3fb20ce395773 /Python/_warnings.c | |
| parent | 08445566b23e60a05193826e327472776644c2b6 (diff) | |
| download | cpython-dcacb24f386ae1b107462181af42b6826ec15fb7.tar.gz | |
Add API for static strings, primarily good for identifiers.
Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing.
Diffstat (limited to 'Python/_warnings.c')
| -rw-r--r-- | Python/_warnings.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/_warnings.c b/Python/_warnings.c index 792e3ed6df..e5631079a9 100644 --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -18,11 +18,12 @@ static int check_matched(PyObject *obj, PyObject *arg) { PyObject *result; + _Py_identifier(match); int rc; if (obj == Py_None) return 1; - result = PyObject_CallMethod(obj, "match", "O", arg); + result = _PyObject_CallMethodId(obj, &PyId_match, "O", arg); if (result == NULL) return -1; |
