~ubuntu-branches/ubuntu/precise/python3.2/precise-proposed

« back to all changes in this revision

Viewing changes to Include/token.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-03-09 18:40:39 UTC
  • mfrom: (30.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120309184039-j3yk2emxr1plyo21
Tags: 3.2.3~rc1-1
* Python 3.2.3 release candidate 1.
* Update to 20120309 from the 3.2 branch.
* Fix libpython.a symlink. Closes: #660146.
* Build-depend on xauth.
* Run the gdb tests for the debug build only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#define EQUAL           22
35
35
#define DOT             23
36
36
#define PERCENT         24
37
 
/* #define BACKQUOTE    25 */
38
 
#define LBRACE          26
39
 
#define RBRACE          27
40
 
#define EQEQUAL         28
41
 
#define NOTEQUAL        29
42
 
#define LESSEQUAL       30
43
 
#define GREATEREQUAL    31
44
 
#define TILDE           32
45
 
#define CIRCUMFLEX      33
46
 
#define LEFTSHIFT       34
47
 
#define RIGHTSHIFT      35
48
 
#define DOUBLESTAR      36
49
 
#define PLUSEQUAL       37
50
 
#define MINEQUAL        38
51
 
#define STAREQUAL       39
52
 
#define SLASHEQUAL      40
53
 
#define PERCENTEQUAL    41
54
 
#define AMPEREQUAL      42
55
 
#define VBAREQUAL       43
56
 
#define CIRCUMFLEXEQUAL 44
57
 
#define LEFTSHIFTEQUAL  45
58
 
#define RIGHTSHIFTEQUAL 46
59
 
#define DOUBLESTAREQUAL 47
60
 
#define DOUBLESLASH     48
61
 
#define DOUBLESLASHEQUAL 49
62
 
#define AT              50      
63
 
#define RARROW          51
64
 
#define ELLIPSIS        52
 
37
#define LBRACE          25
 
38
#define RBRACE          26
 
39
#define EQEQUAL         27
 
40
#define NOTEQUAL        28
 
41
#define LESSEQUAL       29
 
42
#define GREATEREQUAL    30
 
43
#define TILDE           31
 
44
#define CIRCUMFLEX      32
 
45
#define LEFTSHIFT       33
 
46
#define RIGHTSHIFT      34
 
47
#define DOUBLESTAR      35
 
48
#define PLUSEQUAL       36
 
49
#define MINEQUAL        37
 
50
#define STAREQUAL       38
 
51
#define SLASHEQUAL      39
 
52
#define PERCENTEQUAL    40
 
53
#define AMPEREQUAL      41
 
54
#define VBAREQUAL       42
 
55
#define CIRCUMFLEXEQUAL 43
 
56
#define LEFTSHIFTEQUAL  44
 
57
#define RIGHTSHIFTEQUAL 45
 
58
#define DOUBLESTAREQUAL 46
 
59
#define DOUBLESLASH     47
 
60
#define DOUBLESLASHEQUAL 48
 
61
#define AT              49      
 
62
#define RARROW          50
 
63
#define ELLIPSIS        51
65
64
/* Don't forget to update the table _PyParser_TokenNames in tokenizer.c! */
66
 
#define OP              53
67
 
#define ERRORTOKEN      54
68
 
#define N_TOKENS        55
 
65
#define OP              52
 
66
#define ERRORTOKEN      53
 
67
#define N_TOKENS        54
69
68
 
70
69
/* Special definitions for cooperation with parser */
71
70