diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-28 04:58:51 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-28 04:58:51 +0000 |
commit | bcbd562ae06d5ddc3c4b96e58d3b2afc67dfa4cf (patch) | |
tree | bd634c37889af6841565e7e2ca2f19c878cf6765 /Parser/tokenizer.c | |
parent | c382ea1834168a2c716b764f29a5da06c1984420 (diff) | |
download | cpython-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.c | 8 |
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); |