summaryrefslogtreecommitdiffstats
path: root/Objects/unicodectype.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-01-16 02:26:23 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-01-16 02:26:23 (GMT)
commit9487c4db8295c2651759217a6310f93a94158822 (patch)
treeb3d7d52317d34a00c2d586ea1c2c8064ceb30f00 /Objects/unicodectype.c
parentad9c569825a2aa550a76cfb29fa23d80648be98e (diff)
downloadcpython-9487c4db8295c2651759217a6310f93a94158822.zip
cpython-9487c4db8295c2651759217a6310f93a94158822.tar.gz
cpython-9487c4db8295c2651759217a6310f93a94158822.tar.bz2
comment about how flags could be expanded
Diffstat (limited to 'Objects/unicodectype.c')
-rw-r--r--Objects/unicodectype.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/unicodectype.c b/Objects/unicodectype.c
index a10d319..b21fd35 100644
--- a/Objects/unicodectype.c
+++ b/Objects/unicodectype.c
@@ -34,6 +34,7 @@ typedef struct {
const int upper;
const int lower;
const int title;
+ /* Note if more flag space is needed, decimal and digit could be unified. */
const unsigned char decimal;
const unsigned char digit;
const unsigned short flags;