mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Remove code commented for more than 10 years (GH-16965)
test_urllib commented since 2007: commitd9880d07fc
Author: Facundo Batista <facundobatista@gmail.com> Date: Fri May 25 04:20:22 2007 +0000 Commenting out the tests until find out who can test them in one of the problematic enviroments. pynche code commented since 1998 and 2001: commitef30092207
Author: Barry Warsaw <barry@python.org> Date: Tue Dec 15 01:04:38 1998 +0000 Added most of the mechanism to change the strips from color variations to color constants (i.e. red constant, green constant, blue constant). But I haven't hooked this up yet because the UI gets more crowded and the arrows don't reflect the correct values. Added "Go to Black" and "Go to White" buttons. commit741eae0b31
Author: Barry Warsaw <barry@python.org> Date: Wed Apr 18 03:51:55 2001 +0000 StripWidget.__init__(), update_yourself(): Removed some unused local variables reported by PyChecker. __togglegentype(): PyChecker accurately reported that the variable __gentypevar was unused -- actually this whole method is currently unused so comment it out.
This commit is contained in:
parent
0ac6137dd3
commit
ae7aa42774
2 changed files with 0 additions and 115 deletions
|
@ -1544,85 +1544,6 @@ class URLopener_Tests(FakeHTTPMixin, unittest.TestCase):
|
|||
self.assertRaises(OSError, DummyURLopener().retrieve, url)
|
||||
|
||||
|
||||
# Just commented them out.
|
||||
# Can't really tell why keep failing in windows and sparc.
|
||||
# Everywhere else they work ok, but on those machines, sometimes
|
||||
# fail in one of the tests, sometimes in other. I have a linux, and
|
||||
# the tests go ok.
|
||||
# If anybody has one of the problematic environments, please help!
|
||||
# . Facundo
|
||||
#
|
||||
# def server(evt):
|
||||
# import socket, time
|
||||
# serv = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
# serv.settimeout(3)
|
||||
# serv.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||
# serv.bind(("", 9093))
|
||||
# serv.listen()
|
||||
# try:
|
||||
# conn, addr = serv.accept()
|
||||
# conn.send("1 Hola mundo\n")
|
||||
# cantdata = 0
|
||||
# while cantdata < 13:
|
||||
# data = conn.recv(13-cantdata)
|
||||
# cantdata += len(data)
|
||||
# time.sleep(.3)
|
||||
# conn.send("2 No more lines\n")
|
||||
# conn.close()
|
||||
# except socket.timeout:
|
||||
# pass
|
||||
# finally:
|
||||
# serv.close()
|
||||
# evt.set()
|
||||
#
|
||||
# class FTPWrapperTests(unittest.TestCase):
|
||||
#
|
||||
# def setUp(self):
|
||||
# import ftplib, time, threading
|
||||
# ftplib.FTP.port = 9093
|
||||
# self.evt = threading.Event()
|
||||
# threading.Thread(target=server, args=(self.evt,)).start()
|
||||
# time.sleep(.1)
|
||||
#
|
||||
# def tearDown(self):
|
||||
# self.evt.wait()
|
||||
#
|
||||
# def testBasic(self):
|
||||
# # connects
|
||||
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
|
||||
# ftp.close()
|
||||
#
|
||||
# def testTimeoutNone(self):
|
||||
# # global default timeout is ignored
|
||||
# import socket
|
||||
# self.assertIsNone(socket.getdefaulttimeout())
|
||||
# socket.setdefaulttimeout(30)
|
||||
# try:
|
||||
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
|
||||
# finally:
|
||||
# socket.setdefaulttimeout(None)
|
||||
# self.assertEqual(ftp.ftp.sock.gettimeout(), 30)
|
||||
# ftp.close()
|
||||
#
|
||||
# def testTimeoutDefault(self):
|
||||
# # global default timeout is used
|
||||
# import socket
|
||||
# self.assertIsNone(socket.getdefaulttimeout())
|
||||
# socket.setdefaulttimeout(30)
|
||||
# try:
|
||||
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
|
||||
# finally:
|
||||
# socket.setdefaulttimeout(None)
|
||||
# self.assertEqual(ftp.ftp.sock.gettimeout(), 30)
|
||||
# ftp.close()
|
||||
#
|
||||
# def testTimeoutValue(self):
|
||||
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [],
|
||||
# timeout=30)
|
||||
# self.assertEqual(ftp.ftp.sock.gettimeout(), 30)
|
||||
# ftp.close()
|
||||
|
||||
|
||||
class RequestTests(unittest.TestCase):
|
||||
"""Unit tests for urllib.request.Request."""
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue