summaryrefslogtreecommitdiff
path: root/Parser/tokenizer.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2008-03-28 04:58:51 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2008-03-28 04:58:51 +0000
commitbcbd562ae06d5ddc3c4b96e58d3b2afc67dfa4cf (patch)
treebd634c37889af6841565e7e2ca2f19c878cf6765 /Parser/tokenizer.c
parentc382ea1834168a2c716b764f29a5da06c1984420 (diff)
downloadcpython-bcbd562ae06d5ddc3c4b96e58d3b2afc67dfa4cf.tar.gz
Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings.
Rather than sprinkle casts throughout the code, change Py_CHARMASK to always cast it's result to an unsigned char. This should ensure we do the right thing when accessing an array with the result.
Diffstat (limited to 'Parser/tokenizer.c')
-rw-r--r--Parser/tokenizer.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index 799db20543..29fb114291 100644
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -27,14 +27,6 @@ extern char *PyOS_Readline(FILE *, FILE *, char *);
/* Don't ever change this -- it would break the portability of Python code */
#define TABSIZE 8
-/* Convert a possibly signed character to a nonnegative int */
-/* XXX This assumes characters are 8 bits wide */
-#ifdef __CHAR_UNSIGNED__
-#define Py_CHARMASK(c) (c)
-#else
-#define Py_CHARMASK(c) ((c) & 0xff)
-#endif
-
/* Forward */
static struct tok_state *tok_new(void);
static int tok_nextc(struct tok_state *tok);