Remove assert that checked if a parameter was an instance of Request.  Closes patch #639139.
diff --git a/Lib/urllib2.py b/Lib/urllib2.py
index 57de99c..923ba9c 100644
--- a/Lib/urllib2.py
+++ b/Lib/urllib2.py
@@ -319,7 +319,6 @@
             req = fullurl
             if data is not None:
                 req.add_data(data)
-        assert isinstance(req, Request) # really only care about interface
 
         result = self._call_chain(self.handle_open, 'default',
                                   'default_open', req)