[Python-checkins] CVS: python/dist/src/Misc ACKS,1.100,1.101 NEWS,1.200,1.201

Tim Peters tim_one@users.sourceforge.net
Sat, 04 Aug 2001 01:12:38 -0700


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

Modified Files:
	ACKS NEWS 
Log Message:
Derived from SF patch #446899 Permit import of .pyw under Windows, from
David Bolen.


Index: ACKS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/ACKS,v
retrieving revision 1.100
retrieving revision 1.101
diff -C2 -d -r1.100 -r1.101
*** ACKS	2001/07/31 06:27:44	1.100
--- ACKS	2001/08/04 08:12:36	1.101
***************
*** 43,46 ****
--- 43,47 ----
  Finn Bock
  Paul Boddie
+ David Bolen
  Jurjen Bos
  Peter Bosch

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.200
retrieving revision 1.201
diff -C2 -d -r1.200 -r1.201
*** NEWS	2001/08/02 04:15:00	1.200
--- NEWS	2001/08/04 08:12:36	1.201
***************
*** 33,41 ****
  
  - Unicode APIs now use name mangling to assure that mixing interpreters
!   and extensions using different Unicode widths is rendered next to 
!   impossible. Trying to import an incompatible Unicode-aware extension 
    will result in an ImportError.  Unicode extensions writers must make
    sure to check the Unicode width compatibility in their extensions by
    using at least one of the mangled Unicode APIs in the extension.
  
  
--- 33,46 ----
  
  - Unicode APIs now use name mangling to assure that mixing interpreters
!   and extensions using different Unicode widths is rendered next to
!   impossible. Trying to import an incompatible Unicode-aware extension
    will result in an ImportError.  Unicode extensions writers must make
    sure to check the Unicode width compatibility in their extensions by
    using at least one of the mangled Unicode APIs in the extension.
+ 
+ Windows
+ 
+ - "import module" now compiles module.pyw if it exists and nothing else
+   relevant is found.