summaryrefslogtreecommitdiff
path: root/src/block_template.c
diff options
context:
space:
mode:
authorDwayne Litzenberger <dlitz@dlitz.net>2013-07-14 16:17:01 -0700
committerDwayne Litzenberger <dlitz@dlitz.net>2013-07-14 19:14:35 -0700
commitea2cf0afd8ccbaa406b107285648e024bc900b64 (patch)
tree690b33a3e056246b3800ae9dd44ff504da4dace7 /src/block_template.c
parent7e09a5fb6c2db866b3fc7e4d27cdbbe3ac795cc8 (diff)
downloadpycrypto-ea2cf0afd8ccbaa406b107285648e024bc900b64.tar.gz
Py3k cleanup: PyModule_AddIntConstant
Diffstat (limited to 'src/block_template.c')
-rw-r--r--src/block_template.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/block_template.c b/src/block_template.c
index 6a1ec93..f12fbfb 100644
--- a/src/block_template.c
+++ b/src/block_template.c
@@ -761,9 +761,6 @@ static struct PyModuleDef moduledef = {
/* Deal with old API in Python 2.1 */
#if PYTHON_API_VERSION < 1011
-#define PyModule_AddIntConstant(m,n,v) {PyObject *o=PyInt_FromLong(v); \
- if (o!=NULL) \
- {PyDict_SetItemString(PyModule_GetDict(m),n,o); Py_DECREF(o);}}
#define PyInt_CheckExact PyInt_Check
#endif