[Python-checkins] python/dist/src/Misc NEWS,1.442,1.443

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Mon, 22 Jul 2002 06:21:15 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv939/Misc

Modified Files:
	NEWS 
Log Message:
Move DL_IMPORT/DL_EXPORT to Build section, I think this is the correct place

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.442
retrieving revision 1.443
diff -C2 -d -r1.442 -r1.443
*** NEWS	22 Jul 2002 12:53:16 -0000	1.442
--- NEWS	22 Jul 2002 13:21:10 -0000	1.443
***************
*** 6,13 ****
  
  Core and builtins
- - The public Python C API will generally be declared using PyAPI_FUNC 
-    and PyAPI_DATA macros, while Python extension module init functions
-    will be declared with PyMODINIT_FUNC.  DL_EXPORT/DL_IMPORT macros
-    are deprecated.
  
  - Ctrl+C handling on Windows has been made more consistent with
--- 6,9 ----
***************
*** 308,311 ****
--- 304,312 ----
  
  Build
+ 
+ - The public Python C API will generally be declared using PyAPI_FUNC 
+    and PyAPI_DATA macros, while Python extension module init functions
+    will be declared with PyMODINIT_FUNC.  DL_EXPORT/DL_IMPORT macros
+    are deprecated.
  
  - A bug was fixed that could cause COUNT_ALLOCS builds to segfault, or