[Python-checkins] python/nondist/sandbox/datetime datetime.c,1.77,1.78 obj_date.c,1.56,NONE obj_datetime.c,1.59,NONE obj_datetimetz.c,1.25,NONE obj_delta.c,1.28,NONE obj_time.c,1.19,NONE obj_timetz.c,1.30,NONE obj_tzinfo.c,1.3,NONE

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 16 Dec 2002 08:47:12 -0800


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

Modified Files:
	datetime.c 
Removed Files:
	obj_date.c obj_datetime.c obj_datetimetz.c obj_delta.c 
	obj_time.c obj_timetz.c obj_tzinfo.c 
Log Message:
Stuffed all the C code into a single file.


Index: datetime.c
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/datetime/datetime.c,v
retrieving revision 1.77
retrieving revision 1.78
diff -C2 -d -r1.77 -r1.78
*** datetime.c	16 Dec 2002 03:34:20 -0000	1.77
--- datetime.c	16 Dec 2002 16:43:33 -0000	1.78
***************
*** 1242,1252 ****
   */
  
! #include "obj_delta.c"
! #include "obj_date.c"
! #include "obj_datetime.c"
! #include "obj_time.c"
! #include "obj_tzinfo.c"
! #include "obj_timetz.c"
! #include "obj_datetimetz.c"
  
[...3491 lines suppressed...]
! 	0,					/* tp_clear */
! 	0,					/* tp_richcompare */
! 	0,					/* tp_weaklistoffset */
! 	0,					/* tp_iter */
! 	0,					/* tp_iternext */
! 	datetimetz_methods,			/* tp_methods */
! 	0,					/* tp_members */
! 	datetimetz_getset,			/* tp_getset */
! 	&PyDateTime_DateTimeType,		/* tp_base */
! 	0,					/* tp_dict */
! 	0,					/* tp_descr_get */
! 	0,					/* tp_descr_set */
! 	0,					/* tp_dictoffset */
! 	0,					/* tp_init */
! 	0,					/* tp_alloc */
! 	datetimetz_new,				/* tp_new */
! 	_PyObject_Del,				/* tp_free */
! };
  
  /* ---------------------------------------------------------------------------

--- obj_date.c DELETED ---

--- obj_datetime.c DELETED ---

--- obj_datetimetz.c DELETED ---

--- obj_delta.c DELETED ---

--- obj_time.c DELETED ---

--- obj_timetz.c DELETED ---

--- obj_tzinfo.c DELETED ---