| 2088 | }; |
| 2089 | |
| 2090 | int AddConstant(PyObject *dict, const char *key, long value) |
| 2091 | { |
| 2092 | PyObject *oval = PyInt_FromLong(value); |
| 2093 | if (!oval) |
| 2094 | { |
| 2095 | return 1; |
| 2096 | } |
| 2097 | int rc = PyDict_SetItemString(dict, (char*)key, oval); |
| 2098 | Py_DECREF(oval); |
| 2099 | return rc; |
| 2100 | } |
| 2101 | |
| 2102 | #define ADD_CONSTANT(tok) AddConstant(dict, #tok, tok) |
| 2103 |
no outgoing calls
no test coverage detected