summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-04-14 03:53:34 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-04-14 03:53:34 (GMT)
commit8c0dc84398f4966ce368ac9606444437b6d1c1f0 (patch)
treeec7acf7accd96ab280c6b1509d536540a9678f6d /Python
parent7db4f2460f45c2d43477c5cf852abbb84b65deff (diff)
downloadcpython-8c0dc84398f4966ce368ac9606444437b6d1c1f0.zip
cpython-8c0dc84398f4966ce368ac9606444437b6d1c1f0.tar.gz
cpython-8c0dc84398f4966ce368ac9606444437b6d1c1f0.tar.bz2
ALIGNMENT_SHIFT is not used
Diffstat (limited to 'Python')
-rw-r--r--Python/pyarena.c1
1 files changed, 0 insertions, 1 deletions
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)