[Python-checkins] python/dist/src/Modules cPickle.c,2.122,2.123

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 03 Feb 2003 21:20:34 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1:/tmp/cvs-serv2303/Modules

Modified Files:
	cPickle.c 
Log Message:
Typo in comment.


Index: cPickle.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/cPickle.c,v
retrieving revision 2.122
retrieving revision 2.123
diff -C2 -d -r2.122 -r2.123
*** cPickle.c	4 Feb 2003 05:06:17 -0000	2.122
--- cPickle.c	4 Feb 2003 05:20:32 -0000	2.123
***************
*** 3776,3780 ****
  	}
  	/* Since the extension registry is manipulable via Python code,
! 	 * confirm that obj is really a 2-tuple of strings.
  	 */
  	if (!PyTuple_Check(pair) || PyTuple_Size(pair) != 2 ||
--- 3776,3780 ----
  	}
  	/* Since the extension registry is manipulable via Python code,
! 	 * confirm that pair is really a 2-tuple of strings.
  	 */
  	if (!PyTuple_Check(pair) || PyTuple_Size(pair) != 2 ||