summaryrefslogtreecommitdiff
path: root/src/hash_template.c
diff options
context:
space:
mode:
authorDwayne Litzenberger <dlitz@dlitz.net>2013-07-14 16:21:16 -0700
committerDwayne Litzenberger <dlitz@dlitz.net>2013-07-14 19:14:35 -0700
commitab8fc54acaa511d224a9855f9cfc253e7d280547 (patch)
tree782103f8180f437f69c20293bbde8d145304fc1c /src/hash_template.c
parent1b309c67633759a5449cbdb38d18f86c861b53c6 (diff)
downloadpycrypto-ab8fc54acaa511d224a9855f9cfc253e7d280547.tar.gz
Py3k cleanup: staticforward and Py_TYPE
Diffstat (limited to 'src/hash_template.c')
-rw-r--r--src/hash_template.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/hash_template.c b/src/hash_template.c
index 1bc6847..eb98224 100644
--- a/src/hash_template.c
+++ b/src/hash_template.c
@@ -46,11 +46,7 @@ typedef struct {
/* Please see PEP3123 for a discussion of PyObject_HEAD and changes made in 3.x to make it conform to Standard C.
* These changes also dictate using Py_TYPE to check type, and PyVarObject_HEAD_INIT(NULL, 0) to initialize
*/
-#ifdef IS_PY3K
-static PyTypeObject ALGtype;
-#else
staticforward PyTypeObject ALGtype;
-#endif
static ALGobject *
newALGobject(void)