D7129: py3: don't index into bytes in phabricator's _tokenize()

Kwan (Ian Moody) phabricator at mercurial-scm.org
Fri Oct 18 07:08:29 EDT 2019


Closed by commit rHGb3a1ba3f46f1: py3: don't index into bytes in phabricator's _tokenize() (authored by Kwan).
This revision was automatically updated to reflect the committed changes.
This revision was not accepted when it landed; it landed in state "Needs Review".

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7129?vs=17328&id=17339

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7129/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7129

AFFECTED FILES
  hgext/phabricator.py

CHANGE DETAILS

diff --git a/hgext/phabricator.py b/hgext/phabricator.py
--- a/hgext/phabricator.py
+++ b/hgext/phabricator.py
@@ -1274,8 +1274,8 @@
             yield (b'symbol', symbol, pos)
             pos += len(symbol)
         else:  # special char, ignore space
-            if text[pos] != b' ':
-                yield (text[pos], None, pos)
+            if text[pos : pos + 1] != b' ':
+                yield (text[pos : pos + 1], None, pos)
             pos += 1
     yield (b'end', None, pos)
 



To: Kwan, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list