[Python-checkins] r45372 - python/trunk/Python/pyarena.c
neal.norwitz
python-checkins at python.org
Fri Apr 14 05:53:34 CEST 2006
Author: neal.norwitz
Date: Fri Apr 14 05:53:34 2006
New Revision: 45372
Modified:
python/trunk/Python/pyarena.c
Log:
ALIGNMENT_SHIFT is not used
Modified: python/trunk/Python/pyarena.c
==============================================================================
--- python/trunk/Python/pyarena.c (original)
+++ python/trunk/Python/pyarena.c Fri Apr 14 05:53:34 2006
@@ -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)
More information about the Python-checkins
mailing list