This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: pybench does not run anymore
Type: crash Stage:
Components: Demos and Tools Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: amaury.forgeotdarc, pitrou
Priority: normal Keywords:

Created on 2008-03-20 18:45 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg64190 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2008-03-20 18:45
I get this on py3k:

$ ./python Tools/pybench/pybench.py 
Traceback (most recent call last):
  File "Tools/pybench/pybench.py", line 391, in <module>
    import Setup
  File "/home/antoine/py3k/unialloc/Tools/pybench/Setup.py", line 34, in
<module>
    from With import *
ImportError: No module named With

It seems like the With.py file in Tools/pybench was not added as part of
an SVN merge from the 2.x trunk.
msg64210 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2008-03-20 21:22
Corrected in r61680. Thanks for the report!
History
Date User Action Args
2022-04-11 14:56:32adminsetgithub: 46687
2008-03-20 21:22:26amaury.forgeotdarcsetstatus: open -> closed
resolution: fixed
messages: + msg64210
nosy: + amaury.forgeotdarc
2008-03-20 18:45:17pitroucreate