[issue39180] Missing getlines func documentation from linecache module

2020-02-22 Thread Khalid Mammadov
Change by Khalid Mammadov : -- resolution: -> duplicate ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39180] Missing getlines func documentation from linecache module

2020-02-22 Thread Khalid Mammadov
Khalid Mammadov added the comment: Looks like it's not meant to be made public as the module is meant to be working on a single line. So closing the issue and PR -- nosy: -ammar2 stage: patch review -> resolved status: open -> closed ___ Python

[issue39180] Missing getlines func documentation from linecache module

2020-02-22 Thread Ammar Askar
Ammar Askar added the comment: A good place to start is looking at the blame to find the commit that introduced it. Which was: https://github.com/python/cpython/commit/17ab123cf1f0597e7e257c1ce83a6e87b85ffd7b#diff-71666751dc5821f7fc30e9c8138019c9 and if we browse to the state of the file

[issue39180] Missing getlines func documentation from linecache module

2020-02-22 Thread Khalid Mammadov
Khalid Mammadov added the comment: How to find if it was intentional or over-site? -- ___ Python tracker ___ ___ Python-bugs-list

[issue39180] Missing getlines func documentation from linecache module

2020-01-01 Thread Khalid Mammadov
Change by Khalid Mammadov : -- keywords: +patch pull_requests: +17216 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17784 ___ Python tracker ___

[issue39180] Missing getlines func documentation from linecache module

2020-01-01 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : As a note getlines is not exposed via __all__ : https://github.com/python/cpython/blob/22424c02e51fab3b62cbe255d0b87d1b55b9a6c3/Lib/linecache.py#L13 -- nosy: +xtreak ___ Python tracker

[issue39180] Missing getlines func documentation from linecache module

2020-01-01 Thread Khalid Mammadov
Change by Khalid Mammadov : -- assignee: docs@python components: Documentation nosy: docs@python, khalidmammadov priority: normal severity: normal status: open title: Missing getlines func documentation from linecache module versions: Python 3.8 ___