mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	bpo-29176: Fix name of the _curses.window class (#52)
Set name to "_curses.window" instead of "_curses.curses window" (with a space!?).
This commit is contained in:
		
							parent
							
								
									baf7bb30a0
								
							
						
					
					
						commit
						61e2bc74df
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -2077,7 +2077,7 @@ static PyGetSetDef PyCursesWindow_getsets[] = { | ||||||
| 
 | 
 | ||||||
| PyTypeObject PyCursesWindow_Type = { | PyTypeObject PyCursesWindow_Type = { | ||||||
|     PyVarObject_HEAD_INIT(NULL, 0) |     PyVarObject_HEAD_INIT(NULL, 0) | ||||||
|     "_curses.curses window",            /*tp_name*/ |     "_curses.window",           /*tp_name*/ | ||||||
|     sizeof(PyCursesWindowObject),       /*tp_basicsize*/ |     sizeof(PyCursesWindowObject),       /*tp_basicsize*/ | ||||||
|     0,                          /*tp_itemsize*/ |     0,                          /*tp_itemsize*/ | ||||||
|     /* methods */ |     /* methods */ | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Victor Stinner
						Victor Stinner