D2336: py3: make sure regex is bytes in crecord.py

2018-02-18 Thread pulkit (Pulkit Goyal)
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGab5a86416485: py3: make sure regex is bytes in crecord.py 
(authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2336?vs=5890=5893

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

AFFECTED FILES
  mercurial/crecord.py

CHANGE DETAILS

diff --git a/mercurial/crecord.py b/mercurial/crecord.py
--- a/mercurial/crecord.py
+++ b/mercurial/crecord.py
@@ -950,7 +950,7 @@
 # preprocess the text, converting tabs to spaces
 text = text.expandtabs(4)
 # strip \n, and convert control characters to ^[char] representation
-text = re.sub(r'[\x00-\x08\x0a-\x1f]',
+text = re.sub(br'[\x00-\x08\x0a-\x1f]',
 lambda m:'^' + chr(ord(m.group()) + 64), text.strip('\n'))
 
 if pair is not None:



To: pulkit, #hg-reviewers, durin42
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D2336: py3: make sure regex is bytes in crecord.py

2018-02-18 Thread pulkit (Pulkit Goyal)
pulkit created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  1. skip-blame because we are just adding b''

REPOSITORY
  rHG Mercurial

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

AFFECTED FILES
  mercurial/crecord.py

CHANGE DETAILS

diff --git a/mercurial/crecord.py b/mercurial/crecord.py
--- a/mercurial/crecord.py
+++ b/mercurial/crecord.py
@@ -950,7 +950,7 @@
 # preprocess the text, converting tabs to spaces
 text = text.expandtabs(4)
 # strip \n, and convert control characters to ^[char] representation
-text = re.sub(r'[\x00-\x08\x0a-\x1f]',
+text = re.sub(br'[\x00-\x08\x0a-\x1f]',
 lambda m:'^' + chr(ord(m.group()) + 64), text.strip('\n'))
 
 if pair is not None:



To: pulkit, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel