[pywin32-checkins] pywin32/win32/test test_win32inet.py, 1.1.4.1, 1.1.4.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-11 07:17:51
|
Update of /cvsroot/pywin32/pywin32/win32/test In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2518/win32/test Modified Files: Tag: py3k test_win32inet.py Log Message: merge test/demo fixes from the trunk Index: test_win32inet.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/test/test_win32inet.py,v retrieving revision 1.1.4.1 retrieving revision 1.1.4.2 diff -C2 -d -r1.1.4.1 -r1.1.4.2 *** test_win32inet.py 26 Nov 2008 09:03:31 -0000 1.1.4.1 --- test_win32inet.py 11 Dec 2008 07:17:46 -0000 1.1.4.2 *************** *** 40,44 **** def testFtpCommand(self): ! hcon = InternetConnect(self.hi, "ftp.python.org", INTERNET_INVALID_PORT_NUMBER, None, None, # username/password INTERNET_SERVICE_FTP, 0, 0) --- 40,46 ---- def testFtpCommand(self): ! # ftp.python.org doesn't exist. ftp.gnu.org is what Python's urllib ! # test code uses. ! hcon = InternetConnect(self.hi, "ftp.gnu.org", INTERNET_INVALID_PORT_NUMBER, None, None, # username/password INTERNET_SERVICE_FTP, 0, 0) |