[issue10166] maximum recursion depth exceeded in lib\pstats.py

2010-10-21 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r85787. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue10166] maximum recursion depth exceeded in lib\pstats.py

2010-10-21 Thread Adam Bielański
New submission from Adam Bielański : There's a bug in module lib\pstats.py, line 150. Let me paste a little piece of surrounding code: class Stats: () def add(self, *arg_list): if not arg_list: return self if len(arg_list) > 1: self.add(*arg_list[1