| 
									
										
										
										
											1993-10-26 17:58:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Range object interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											1995-01-17 16:01:01 +00:00
										 |  |  | A range object represents an integer range.  This is an immutable object; | 
					
						
							| 
									
										
										
										
											1993-10-26 17:58:25 +00:00
										 |  |  | a range cannot change its value after creation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Range objects behave like the corresponding tuple objects except that | 
					
						
							|  |  |  | they are represented by a start, stop, and step datamembers. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-02-27 10:17:52 +00:00
										 |  |  | extern DL_IMPORT(PyTypeObject) PyRange_Type; | 
					
						
							| 
									
										
										
										
											1993-10-26 17:58:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-17 16:01:01 +00:00
										 |  |  | #define PyRange_Check(op) ((op)->ob_type == &PyRange_Type)
 | 
					
						
							| 
									
										
										
										
											1993-10-26 17:58:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 00:55:06 +00:00
										 |  |  | extern DL_IMPORT(PyObject *) PyRange_New(long, long, long, int); |