This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gvanrossum
Recipients
Date 2001-01-08.13:33:49
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
connect() was always documented as having a single 'address' argument, but the implementation was lax and allowed s.connect(host, port) instead of s.connect((host, port)).  This was fixed in 2.0, just as list.append(a,b,c) is no longer allowed and must now be written as list.append((a,b,c)).
History
Date User Action Args
2007-08-23 13:52:37adminlinkissue227992 messages
2007-08-23 13:52:37admincreate