summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-04-14 13:01:54 (GMT)
committerGuido van Rossum <guido@python.org>1994-04-14 13:01:54 (GMT)
commit617536e6cf339fb3bce132d6bb1288d1585d6654 (patch)
treef885e79294e2a263fb7d0170c9d3ecf39c62c205 /Misc/NEWS
parent0d471619a32d3213b55b80b7522aebc3f6261df5 (diff)
downloadcpython-617536e6cf339fb3bce132d6bb1288d1585d6654.zip
cpython-617536e6cf339fb3bce132d6bb1288d1585d6654.tar.gz
cpython-617536e6cf339fb3bce132d6bb1288d1585d6654.tar.bz2
Added news
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS69
1 files changed, 69 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e2084a7..5c7a0cf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1,3 +1,72 @@
+========================================
+==> Release 1.0.1 (15 February 1994) <==
+========================================
+
+* Many portability fixes should make it painless to build Python on
+several new platforms, e.g. NeXT, SEQUENT, WATCOM, DOS, and Windows.
+
+* Fixed test for <stdarg.h> -- this broke on some platforms.
+
+* Fixed test for shared library dynalic loading -- this broke on SunOS
+4.x using the GNU loader.
+
+* Changed order and number of SVR4 networking libraries (it is now
+-lsocket -linet -lnsl, if these libraries exist).
+
+* Installing the build intermediate stages with "make libainstall" now
+also installs config.c.in, Setup and makesetup, which are used by the
+new Extensions mechanism.
+
+* Improved README file contains more hints and new troubleshooting
+section.
+
+* The built-in module strop now defines fast versions of three more
+functions of the standard string module: atoi(), atol() and atof().
+The strop versions of atoi() and atol() support an optional second
+argument to specify the base (default 10). NOTE: you don't have to
+explicitly import strop to use the faster versions -- the string
+module contains code to let versions from stop override the default
+versions.
+
+* There is now a working Lib/dospath.py for those who use Python under
+DOS (or Windows). Thanks, Jaap!
+
+* There is now a working Modules/dosmodule.c for DOS (or Windows)
+system calls.
+
+* Lib.os.py has been reorganized (making it ready for more operating
+systems).
+
+* Lib/ospath.py is now obsolete (use os.path instead).
+
+* Many fixes to the tutorial to make it match Python 1.0. Thanks,
+Tim!
+
+* Fixed Doc/Makefile, Doc/README and various scripts there.
+
+* Added missing description of fdopen to Doc/libposix.tex.
+
+* Made cleanup() global, for the benefit of embedded applications.
+
+* Added parsing of addresses and dates to Lib/rfc822.py.
+
+* Small fixes to Lib/aifc.py, Lib/sunau.py, Lib/tzparse.py to make
+them usable at all.
+
+* New module Lib/wave.py reads RIFF (*.wav) audio files.
+
+* Module Lib/filewin.py moved to Lib/stdwin/filewin.py where it
+belongs.
+
+* New options and comments for Modules/makesetup (used by new
+Extension mechanism).
+
+* Misc/HYPE contains text of announcement of 1.0.0 in comp.lang.misc
+and elsewhere.
+
+* Fixed coredump in filter(None, 'abcdefg').
+
+
=======================================
==> Release 1.0.0 (26 January 1994) <==
=======================================