diff options
author | Guido van Rossum <guido@python.org> | 1994-08-01 11:34:53 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-01 11:34:53 +0000 |
commit | b6775db241f5fe5e3dc2ca09fc6c9e6164d4b2af (patch) | |
tree | 9362939305b2d088b8f19a530c9015d886bc2801 /Include/errcode.h | |
parent | 2979b01ff88ac4c5b316d9bf98edbaaaffac8e24 (diff) | |
download | cpython-git-b6775db241f5fe5e3dc2ca09fc6c9e6164d4b2af.tar.gz |
Merge alpha100 branch back to main trunk
Diffstat (limited to 'Include/errcode.h')
-rw-r--r-- | Include/errcode.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Include/errcode.h b/Include/errcode.h index d2a2ac6638..e8db943df6 100644 --- a/Include/errcode.h +++ b/Include/errcode.h @@ -5,7 +5,7 @@ extern "C" { #endif /*********************************************************** -Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, +Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum, Amsterdam, The Netherlands. All Rights Reserved @@ -29,11 +29,15 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ /* Error codes passed around between file input, tokenizer, parser and - interpreter. This was necessary so we can turn them into Python - exceptions at a higher level. */ + interpreter. This is necessary so we can turn them into Python + exceptions at a higher level. Note that some errors have a + slightly different meaning when passed from the tokenizer to the + parser than when passed from the parser to the interpreter; e.g. + the parser only returns E_EOF when it hits EOF immediately, and it + never returns E_OK. */ #define E_OK 10 /* No error */ -#define E_EOF 11 /* (Unexpected) EOF read */ +#define E_EOF 11 /* End Of File */ #define E_INTR 12 /* Interrupted */ #define E_TOKEN 13 /* Bad token */ #define E_SYNTAX 14 /* Syntax error */ |