Matej Cepl 2024-10-17 11:08:35 +00:00 committed by Git OBS Bridge
parent a7b3239561
commit 3a5dd04770

View File

@ -1,10 +1,36 @@
---
Lib/test/test_urllib2.py | 1 +
1 file changed, 1 insertion(+)
Lib/test/test_urllib2.py | 9 +++++++++
1 file changed, 9 insertions(+)
--- a/Lib/test/test_urllib2.py
+++ b/Lib/test/test_urllib2.py
@@ -794,6 +794,7 @@ class HandlerTests(unittest.TestCase):
@@ -1,3 +1,4 @@
+import logging
import unittest
from test import support
from test.support import os_helper
@@ -29,6 +30,10 @@ import http.client
support.requires_working_socket(module=True)
+logging.basicConfig(format='%(levelname)s:%(funcName)s:%(message)s',
+ level=logging.DEBUG)
+log = logging.getLogger()
+
# XXX
# Request
# CacheFTPHandler (hard to write)
@@ -731,6 +736,9 @@ def sanepathname2url(path):
class HandlerTests(unittest.TestCase):
+ def setUp(self):
+ log.debug('Is network available: {}'.format(support.is_resource_enabled('network')))
+
def test_ftp(self):
class MockFTPWrapper:
def __init__(self, data):
@@ -794,6 +802,7 @@ class HandlerTests(unittest.TestCase):
self.assertEqual(headers.get("Content-type"), mimetype)
self.assertEqual(int(headers["Content-length"]), len(data))