summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwayne Litzenberger <dlitz@dlitz.net>2013-07-14 18:14:32 -0700
committerDwayne Litzenberger <dlitz@dlitz.net>2013-07-14 19:14:35 -0700
commitf5a862ea2db39dbebe27ba7f8e17a2bcbbd18ef2 (patch)
tree77f7e80a84f4932b47422d72af18838dd33ca6d7
parent27ef33b36779bc19b89dd77b976e5500cfabc144 (diff)
downloadpycrypto-f5a862ea2db39dbebe27ba7f8e17a2bcbbd18ef2.tar.gz
Py3k cleanup: PyBytesObject
-rw-r--r--src/_counter.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/_counter.c b/src/_counter.c
index 0863539..d8805db 100644
--- a/src/_counter.c
+++ b/src/_counter.c
@@ -32,11 +32,7 @@
static int
CounterObject_init(PCT_CounterObject *self, PyObject *args, PyObject *kwargs)
{
-#ifdef IS_PY3K
PyBytesObject *prefix=NULL, *suffix=NULL, *initval=NULL;
-#else
- PyStringObject *prefix=NULL, *suffix=NULL, *initval=NULL;
-#endif
int allow_wraparound = 0;
Py_ssize_t size;