[issue35511] Some methods of profile.Profile are not supported but the docs doesn't mention it.

2018-12-16 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue35511] Some methods of profile.Profile are not supported but the docs doesn't mention it.

2018-12-16 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset b912f9342e7a37d170ba659c13c959115c11545a by Andrew Svetlov (Beomsoo Kim) in branch 'master': bpo-35511: Trivial docs updates for profile and resource library modules. (GH-11124) https://github.com/python/cpython/commit/b912f9342e7a37d170ba659c1

[issue35511] Some methods of profile.Profile are not supported but the docs doesn't mention it.

2018-12-15 Thread bombs
bombs added the comment: To elaborate, the docs simply says "Both the profile and cProfile modules provide the following functions... enable(), disable(), create_stats() ..." -- ___ Python tracker _

[issue35511] Some methods of profile.Profile are not supported but the docs doesn't mention it.

2018-12-15 Thread bombs
Change by bombs : -- keywords: +patch pull_requests: +10417 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mail

[issue35511] Some methods of profile.Profile are not supported but the docs doesn't mention it.

2018-12-15 Thread bombs
New submission from bombs : Currently enable, disable methods are only supported by Profile class of cProfile module, not profile module. But the docs doesn't give this information. I think we should, at least mention it, in the docs. -- assignee: docs@python components: Documentation