示例#1
0
def p_stream_output(p):
    """stream_output : C_STRING"""
    p[0] = GdbOutput()
    p[0].string = p[1]
示例#2
0
def p_stream_output(p):
	'''stream_output : C_STRING'''
	p[0] = GdbOutput()
	p[0].string = p[1]