[Python-checkins] python/nondist/sandbox/collections dequemodule.c, 1.2, 1.3

rhettinger at projects.sourceforge.net rhettinger at projects.sourceforge.net
Mon Jan 26 13:08:13 EST 2004


Update of /cvsroot/python/python/nondist/sandbox/collections
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9172

Modified Files:
	dequemodule.c 
Log Message:
Fix nits

Index: dequemodule.c
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/collections/dequemodule.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** dequemodule.c	26 Jan 2004 16:28:01 -0000	1.2
--- dequemodule.c	26 Jan 2004 18:08:10 -0000	1.3
***************
*** 379,383 ****
  		METH_NOARGS,	 pop_doc},
  	{"popleft",		(PyCFunction)deque_popleft,	
! 		METH_NOARGS,	 pop_doc},
  	{"__reduce__",	(PyCFunction)deque_reduce,	
  		METH_NOARGS,	 reduce_doc},
--- 379,383 ----
  		METH_NOARGS,	 pop_doc},
  	{"popleft",		(PyCFunction)deque_popleft,	
! 		METH_NOARGS,	 popleft_doc},
  	{"__reduce__",	(PyCFunction)deque_reduce,	
  		METH_NOARGS,	 reduce_doc},
***************
*** 487,491 ****
  	PyObject_HEAD_INIT(NULL)
  	0,					/* ob_size */
! 	"dequeerseiterator",			/* tp_name */
  	sizeof(dequeiterobject),		/* tp_basicsize */
  	0,					/* tp_itemsize */
--- 487,491 ----
  	PyObject_HEAD_INIT(NULL)
  	0,					/* ob_size */
! 	"deque_iterator",			/* tp_name */
  	sizeof(dequeiterobject),		/* tp_basicsize */
  	0,					/* tp_itemsize */




More information about the Python-checkins mailing list