ALIGNMENT_SHIFT is not used
diff --git a/Python/pyarena.c b/Python/pyarena.c
index c5491e9..24a7374 100644
--- a/Python/pyarena.c
+++ b/Python/pyarena.c
@@ -13,7 +13,6 @@
 
 #define DEFAULT_BLOCK_SIZE 8192
 #define ALIGNMENT		8
-#define ALIGNMENT_SHIFT		3
 #define ALIGNMENT_MASK		(ALIGNMENT - 1)
 #define ROUNDUP(x)		(((x) + ALIGNMENT_MASK) & ~ALIGNMENT_MASK)