[Python-checkins] CVS: python/dist/src/Include object.h,2.61,2.62

Fred L. Drake python-dev@python.org
Sun, 9 Jul 2000 07:22:11 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5313

Modified Files:
	object.h 
Log Message:

Remove legacy use of __SC__; no longer needed now that ANSI source is
the standard for Python implementation.


Index: object.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/object.h,v
retrieving revision 2.61
retrieving revision 2.62
diff -C2 -r2.61 -r2.62
*** object.h	2000/07/08 00:46:19	2.61
--- object.h	2000/07/09 14:22:08	2.62
***************
*** 453,461 ****
  #ifdef BAD_STATIC_FORWARD
  #define staticforward extern
- #ifdef __SC__
- #define statichere
- #else
  #define statichere static
- #endif /* __SC__ */
  #else /* !BAD_STATIC_FORWARD */
  #define staticforward static
--- 453,457 ----