Support Python 2.4

This commit is contained in:
Tim Pope 2013-04-17 13:35:47 -04:00
parent 93df7ca18f
commit 77444275fd
1 changed files with 17 additions and 16 deletions

View File

@ -216,7 +216,7 @@ def fireplace_string_encode(input):
str_list = [] str_list = []
for c in input: for c in input:
if (000 <= ord(c) and ord(c) <= 037) or c == '"' or c == "\\": if (000 <= ord(c) and ord(c) <= 037) or c == '"' or c == "\\":
str_list.append("\\{0:03o}".format(ord(c))) str_list.append("\\{0:03o}" % ord(c))
else: else:
str_list.append(c) str_list.append(c)
return '"' + ''.join(str_list) + '"' return '"' + ''.join(str_list) + '"'
@ -230,6 +230,7 @@ def fireplace_repl_interact():
host = vim.eval('self.host') host = vim.eval('self.host')
port = int(vim.eval('self.port')) port = int(vim.eval('self.port'))
s.settimeout(8) s.settimeout(8)
try:
try: try:
s.connect((host, port)) s.connect((host, port))
s.setblocking(1) s.setblocking(1)