Chinaunix首页 | 论坛 | 博客
  • 博客访问: 259367
  • 博文数量: 91
  • 博客积分: 4185
  • 博客等级: 上校
  • 技术积分: 855
  • 用 户 组: 普通用户
  • 注册时间: 2008-06-29 16:18
文章分类

全部博文(91)

文章存档

2014年(3)

2013年(1)

2012年(8)

2011年(2)

2010年(5)

2009年(68)

2008年(4)

我的朋友

分类: Python/Ruby

2009-04-17 09:53:29

D:\workspace\python>python -m timeit -s 'str = "hello"' "if hasattr(str, '__bool__'): pass"

Traceback (most recent call last):
  File "C:\Python30\lib\runpy.py", line 122, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "C:\Python30\lib\runpy.py", line 34, in _run_code
    exec(code, run_globals)
  File "C:\Python30\lib\timeit.py", line 327, in
    sys.exit(main())
  File "C:\Python30\lib\timeit.py", line 291, in main
    t = Timer(stmt, setup, timer)
  File "C:\Python30\lib\timeit.py", line 135, in __init__
    code = compile(src, dummy_src_name, "exec" )
  File "", line 3
    'str
       ^
SyntaxError: EOL while scanning string literal


就这么个问题!

更新一下
原来是这么回事:

D:\workspace\python>python -m timeit """if hasattr(str, "__bool__" ): pass"""
100000000 loops, best of 3: 0.0152 usec per loop

这样子就没问题了

阅读(875) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~