2007年07月20日 星期五 12:18
一个没有‘\n’结尾的文件可以运行,可以parser.suite()分析时报错。 >>> f = file("infread.py") >>> parser.suite(f.read()) Traceback (most recent call last): File "", line 1, in parser.suite(f.read()) File " ", line 194 # End of trySwitchInf(). ^ SyntaxError: invalid syntax 加个‘\n’就好了。 >>> parser.suite(f.read() + "\n") >>>
2007年07月20日 星期五 12:36
\nÊÇÐнáÊø±ê¼Ç°É£¬ 2007/7/20, jinq0123在163.com <jinq0123在163.com>: > > Ò»¸öûÓÐ'\n'½áβµÄÎļþ¿ÉÒÔÔËÐУ¬¿ÉÒÔparser.suite()·ÖÎöʱ±¨´í¡£ > > >>> f = file("infread.py") > >>> parser.suite(f.read()) > > Traceback (most recent call last): > File "", line 1, in > parser.suite(f.read()) > File "", line 194 > # End of trySwitchInf(). > ^ > SyntaxError: invalid syntax > > ¼Ó¸ö'\n'¾ÍºÃÁË¡£ > >>> parser.suite(f.read() + "\n") >> >>> > > > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese -------------- 下一部分 -------------- Ò»¸öHTML¸½¼þ±»ÒƳý... URL: http://python.cn/pipermail/python-chinese/attachments/20070720/23b91196/attachment.htm
2007年07月20日 星期五 16:17
Windows的文件可以没有这个 On 20/07/07, beck917 <beck917在gmail.com> wrote: > \n是行结束标记吧, > > 2007/7/20, jinq0123在163.com <jinq0123在163.com>: > > 一个没有'\n'结尾的文件可以运行,可以parser.suite()分析时报错。 > > > > >>> f = file("infread.py") > > >>> parser.suite(f.read()) > > > > Traceback (most recent call last): > > File "", line 1, in > > parser.suite(f.read()) > > File "", line 194 > > # End of trySwitchInf(). > > ^ > > SyntaxError: invalid syntax > > > > 加个'\n'就好了。 > > >>> parser.suite( f.read() + "\n") > >> > >>> > > > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese在lists.python.cn > > Subscribe: send subscribe to > python-chinese-request在lists.python.cn > > Unsubscribe: send unsubscribe to > python-chinese-request在lists.python.cn > > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to > python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request在lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese >
Zeuux © 2025
京ICP备05028076号