[issue26127] Broken link in docs for tokenize

2016-01-15 Thread Martin Panter
Martin Panter added the comment: Oops that last commit was for Issue #14771 -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue26127] Broken link in docs for tokenize

2016-01-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 620a37dbc686 by Martin Panter in branch 'default': Issue #26127: Merge test_gdb fix from 3.5 https://hg.python.org/cpython/rev/620a37dbc686 -- ___ Python tracker _

[issue26127] Broken link in docs for tokenize

2016-01-15 Thread Martin Panter
Martin Panter added the comment: Thanks for the report and patch. There were similar (but different) problems in the Python 2 documentation too. -- nosy: +martin.panter resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 2.7 __

[issue26127] Broken link in docs for tokenize

2016-01-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4b4dbc90c6a0 by Martin Panter in branch '3.5': Issue #26127: Fix links in tokenize documentation; patch by Silent Ghost https://hg.python.org/cpython/rev/4b4dbc90c6a0 New changeset fe360700d1ae by Martin Panter in branch 'default': Issue #26127: Mer

[issue26127] Broken link in docs for tokenize

2016-01-15 Thread SilentGhost
SilentGhost added the comment: Here is the patch. Most of the fixes are however for the tokenize function that was for whatever reason linked to the module. -- keywords: +patch nosy: +SilentGhost stage: -> patch review type: -> behavior Added file: http://bugs.python.org/file41628/iss

[issue26127] Broken link in docs for tokenize

2016-01-15 Thread Antony Lee
New submission from Antony Lee: The docs for `tokenize.detect_encoding` state `Use open() to open Python source files: it uses detect_encoding() to detect the file encoding.` Unfortunately, clicking on `open` redirects to the builtin `open` function, not to `tokenize.open` as it should. -