We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c09ef05 commit 7514f08Copy full SHA for 7514f08
jsonrpclib/SimpleJSONRPCServer.py
@@ -26,6 +26,9 @@
26
limitations under the License.
27
"""
28
29
+# We use print() in the CGI request handler
30
+from __future__ import print_function
31
+
32
# Standard library
33
import logging
34
import socket
tests/test_cgi.py
@@ -15,7 +15,7 @@
15
try:
16
from http.server import HTTPServer, CGIHTTPRequestHandler
17
except ImportError:
18
- from SimpleHTTPServer import HTTPServer
+ from BaseHTTPServer import HTTPServer
19
from CGIHTTPServer import CGIHTTPRequestHandler
20
21
# JSON-RPC library
0 commit comments