[pywin32-checkins] pywin32/win32/test test_win32inet.py,1.1,1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-11 07:01:00
|
Update of /cvsroot/pywin32/pywin32/win32/test In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1215/win32/test Modified Files: test_win32inet.py Log Message: ftp.python.org no longer exists Index: test_win32inet.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/test/test_win32inet.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** test_win32inet.py 12 Jun 2004 13:40:34 -0000 1.1 --- test_win32inet.py 11 Dec 2008 07:00:54 -0000 1.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) |