> > --- a/mercurial/utils/stringutil.py
> > +++ b/mercurial/utils/stringutil.py
> > @@ -29,6 +29,8 @@
> >          if bprefix:
> >              return "b'%s'" % escapestr(o)
> >          return "'%s'" % escapestr(o)
> > +    elif o is None:
> > +        return 'None'
> 
> Should be handled by `b'%r' % o`.

Dropped this patch from hg-committed before sinking deep.
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to