diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-01-16 02:26:23 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-01-16 02:26:23 (GMT) |
commit | 9487c4db8295c2651759217a6310f93a94158822 (patch) | |
tree | b3d7d52317d34a00c2d586ea1c2c8064ceb30f00 /Objects | |
parent | ad9c569825a2aa550a76cfb29fa23d80648be98e (diff) | |
download | cpython-9487c4db8295c2651759217a6310f93a94158822.zip cpython-9487c4db8295c2651759217a6310f93a94158822.tar.gz cpython-9487c4db8295c2651759217a6310f93a94158822.tar.bz2 |
comment about how flags could be expanded
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodectype.c | 1 |
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; |