diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-12-12 01:18:41 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-12-12 01:18:41 (GMT) |
commit | d92dfe0ef52880ea1fb54620c0c1250a58c126c6 (patch) | |
tree | cc987534253be2207140c2d4542951768fb73e99 /Misc | |
parent | f377d5732853d9e5d5c8da9ab1102de86b3fc0f1 (diff) | |
download | cpython-d92dfe0ef52880ea1fb54620c0c1250a58c126c6.zip cpython-d92dfe0ef52880ea1fb54620c0c1250a58c126c6.tar.gz cpython-d92dfe0ef52880ea1fb54620c0c1250a58c126c6.tar.bz2 |
SF bug 110843: Low FD_SETSIZE limit on Win32 (PR#41). Boosted to 512.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -27,6 +27,14 @@ Core language, builtins, and interpreter fit in an int. In 1.6 and earlier, a negative long formatted via %u raised an error if it was too big to fit in an int. +Windows changes + +- select module: By default under Windows, a select() call + can specify no more than 64 sockets. Python now boosts + this Microsoft default to 512. If you need even more than + that, see the MS docs (you'll need to #define FD_SETSIZE + and recompile Python from source). + What's New in Python 2.0? ========================= |