diff options
author | Guido van Rossum <guido@python.org> | 1997-10-08 22:49:49 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-08 22:49:49 (GMT) |
commit | 764a377cef991fb030f99dd629f11a424289835a (patch) | |
tree | ab23beeef1e87ffb77a0cabde6fef2e6368ad655 /Misc/NEWS | |
parent | 44c36bb1144bc96fa7e840b73903194e1f216548 (diff) | |
download | cpython-764a377cef991fb030f99dd629f11a424289835a.zip cpython-764a377cef991fb030f99dd629f11a424289835a.tar.gz cpython-764a377cef991fb030f99dd629f11a424289835a.tar.bz2 |
Typo in description of news in errno; added setlocale() call.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 +<locale.h> are defined. |