From 764a377cef991fb030f99dd629f11a424289835a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 8 Oct 1997 22:49:49 +0000 Subject: [PATCH] Typo in description of news in errno; added setlocale() call. --- Misc/NEWS | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 8946b75c739..2f5adba533f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -1268,7 +1268,7 @@ must compile with a -I option pointing to the standard Tcl source tree. For this reason, the thread support is disabled by default. - The errno extension module adds two tables: errorcode maps errno -numbers to errno names (e.g. EINTR), and errorcode maps them to +numbers to errno names (e.g. EINTR), and errorstr maps them to message strings. (The latter is redundant because the new call posix.strerror() now does the same, but alla...) (Marc-Andre Lemburg) @@ -1420,3 +1420,6 @@ operate on. - In ftplib.py, changed most methods to return their status (even when it is always "200 OK") rather than swallowing it. + +- main() now calls setlocale(LC_ALL, ""), if setlocale() and + are defined.