mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	fix indentation of comments in cellobject.c (closes #27011)
This commit is contained in:
		
							parent
							
								
									e78592d42c
								
							
						
					
					
						commit
						07451ddd4f
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -150,8 +150,8 @@ PyTypeObject PyCell_Type = {
 | 
				
			||||||
    "cell",
 | 
					    "cell",
 | 
				
			||||||
    sizeof(PyCellObject),
 | 
					    sizeof(PyCellObject),
 | 
				
			||||||
    0,
 | 
					    0,
 | 
				
			||||||
    (destructor)cell_dealloc,               /* tp_dealloc */
 | 
					    (destructor)cell_dealloc,                   /* tp_dealloc */
 | 
				
			||||||
    0,                                      /* tp_print */
 | 
					    0,                                          /* tp_print */
 | 
				
			||||||
    0,                                          /* tp_getattr */
 | 
					    0,                                          /* tp_getattr */
 | 
				
			||||||
    0,                                          /* tp_setattr */
 | 
					    0,                                          /* tp_setattr */
 | 
				
			||||||
    0,                                          /* tp_reserved */
 | 
					    0,                                          /* tp_reserved */
 | 
				
			||||||
| 
						 | 
					@ -165,7 +165,7 @@ PyTypeObject PyCell_Type = {
 | 
				
			||||||
    PyObject_GenericGetAttr,                    /* tp_getattro */
 | 
					    PyObject_GenericGetAttr,                    /* tp_getattro */
 | 
				
			||||||
    0,                                          /* tp_setattro */
 | 
					    0,                                          /* tp_setattro */
 | 
				
			||||||
    0,                                          /* tp_as_buffer */
 | 
					    0,                                          /* tp_as_buffer */
 | 
				
			||||||
    Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
 | 
					    Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,    /* tp_flags */
 | 
				
			||||||
    0,                                          /* tp_doc */
 | 
					    0,                                          /* tp_doc */
 | 
				
			||||||
    (traverseproc)cell_traverse,                /* tp_traverse */
 | 
					    (traverseproc)cell_traverse,                /* tp_traverse */
 | 
				
			||||||
    (inquiry)cell_clear,                        /* tp_clear */
 | 
					    (inquiry)cell_clear,                        /* tp_clear */
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue