[issue1514] missing constants in socket module

Marc-Andre Lemburg report at bugs.python.org
Sat Dec 1 00:29:57 CET 2007


Marc-Andre Lemburg added the comment:

Interesting. It appears as if r57142 caused this change.

Before:

# if !(defined(__BEOS__) || defined(__CYGWIN__) || (defined(PYOS_OS2) &&
defined(PYCC_VACPP)))

After:

# if defined(__CYGWIN__) || (defined(PYOS_OS2) && defined(PYCC_VACPP))

That change obviously changed semantics :-)

__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1514>
__________________________________


More information about the Python-bugs-list mailing list