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: pstats add command raises unhandled exception
Type: Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: exarkun, georg.brandl
Priority: normal Keywords:

Created on 2009-11-25 23:35 by exarkun, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg95729 - (view) Author: Jean-Paul Calderone (exarkun) * (Python committer) Date: 2009-11-25 23:35
$ python -m pstats
Welcome to the profile statistics browser.
% help

Documented commands (type help <topic>):
========================================
EOF  add  callees  callers  quit  read  reverse  sort  stats  strip

Undocumented commands:
======================
help

% help add
Add profile info from given file to current statistics object.
% add client.prof
Traceback (most recent call last):
  File "/usr/lib/python2.6/runpy.py", line 122, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "/usr/lib/python2.6/runpy.py", line 34, in _run_code
    exec code in run_globals
  File "/usr/lib/python2.6/pstats.py", line 690, in <module>
    browser.cmdloop()
  File "/usr/lib/python2.6/cmd.py", line 142, in cmdloop
    stop = self.onecmd(line)
  File "/usr/lib/python2.6/cmd.py", line 219, in onecmd
    return func(arg)
  File "/usr/lib/python2.6/pstats.py", line 600, in do_add
    self.stats.add(line)
AttributeError: 'NoneType' object has no attribute 'add'
$
msg112277 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-08-01 07:58
Fixed in r83388.
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51644
2010-08-01 07:58:25georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg112277

resolution: fixed
2009-11-25 23:35:42exarkuncreate