| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Parser-tokenizer link interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  | #ifndef Py_PARSETOK_H
 | 
					
						
							|  |  |  | #define Py_PARSETOK_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |     int error; | 
					
						
							|  |  |  |     char *filename; | 
					
						
							|  |  |  |     int lineno; | 
					
						
							|  |  |  |     int offset; | 
					
						
							|  |  |  |     char *text; | 
					
						
							| 
									
										
										
										
											2000-07-11 17:53:00 +00:00
										 |  |  |     int token; | 
					
						
							|  |  |  |     int expected; | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | } perrdetail; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-22 23:53:36 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2001-07-16 05:37:24 +00:00
										 |  |  | #define PyPARSE_YIELD_IS_KEYWORD	0x0001
 | 
					
						
							| 
									
										
										
										
											2002-03-22 23:53:36 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-16 05:37:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(node *) PyParser_ParseString(char *, grammar *, int, | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |                                               perrdetail *); | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, char *, grammar *, int, | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |                                              char *, char *, perrdetail *); | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(node *) PyParser_ParseStringFlags(char *, grammar *, int, | 
					
						
							| 
									
										
										
										
											2001-07-16 05:37:24 +00:00
										 |  |  |                                               perrdetail *, int); | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, char *, grammar *, | 
					
						
							| 
									
										
										
										
											2001-07-16 05:37:24 +00:00
										 |  |  | 						 int, char *, char *, | 
					
						
							|  |  |  | 						 perrdetail *, int); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(char *, | 
					
						
							| 
									
										
										
										
											2002-07-09 09:23:27 +00:00
										 |  |  | 					      char *, | 
					
						
							|  |  |  | 					      grammar *, int, | 
					
						
							|  |  |  |                                               perrdetail *, int); | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_PARSETOK_H */
 |