我想使用Grinder打印GET请求的最后一个响应,以下是我的代码:
response_string = httpUtilities.getLastResponse().getText()
print str(response_string)
我得到了异常:
'ascii' codec can't encode character u'\ufffd' in position
1: ordinal not in range(128) at this line :
print str(response_string)
我的问题是如何转换j
通常,通过这些标准,任何\后面直接跟着换行符的代码都会被转换成代码,而不需要换行符和反斜杠。例如:
int yams\
yams;
转成
int yamsyams;
和
int cheese // blerg \
more blerg
转成
int cheese // blerg more blerg
使用非常长的单行代码,这种行为可能会很好。
然而,似乎
#\
This code not part of the macro
而
#a\
This code is part of the macro.
甚至
# \
This code is not part of the macr