[Python-checkins] python/nondist/sandbox/datetime obj_datetime.c,1.16,1.17

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Wed, 04 Dec 2002 17:53:27 -0800


Update of /cvsroot/python/python/nondist/sandbox/datetime
In directory sc8-pr-cvs1:/tmp/cvs-serv8377

Modified Files:
	obj_datetime.c 
Log Message:
Repaired botched newlines I introduced in a docstring.


Index: obj_datetime.c
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/datetime/obj_datetime.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** obj_datetime.c	5 Dec 2002 01:39:39 -0000	1.16
--- obj_datetime.c	5 Dec 2002 01:53:25 -0000	1.17
***************
*** 464,469 ****
  	 "Return ctime() style string."},
  	{"isoformat",   (PyCFunction)datetime_isoformat, METH_KEYWORDS,
! 	 "[sep] -> string in ISO 8601 format, YYYY-MM-DDTHH:MM:SS.mmmmmm.\n"
! 	 "\n\nsep is used to separate the year from the time, and defaults\n"
  	 "to 'T'."},
  	{"__setstate__", (PyCFunction)datetime_setstate, METH_O,
--- 464,469 ----
  	 "Return ctime() style string."},
  	{"isoformat",   (PyCFunction)datetime_isoformat, METH_KEYWORDS,
! 	 "[sep] -> string in ISO 8601 format, YYYY-MM-DDTHH:MM:SS.mmmmmm.\n\n"
! 	 "sep is used to separate the year from the time, and defaults\n"
  	 "to 'T'."},
  	{"__setstate__", (PyCFunction)datetime_setstate, METH_O,