Mercurial > hg > cc > cirrus_work
view bin/percent_encode.py @ 114:5818d79c4ec9
a few more from ecclerig,
comment out some duplicates
author | Henry S. Thompson <ht@inf.ed.ac.uk> |
---|---|
date | Tue, 26 Sep 2023 14:18:40 +0100 |
parents | 1daa8e444cfe |
children |
line wrap: on
line source
'''Handle unquoting of non-UTF-8 bytes by %-encoding them''' import codecs def percent_encode(ude): #print(ude.object,ude.object[ude.start:ude.end]) return (''.join('%%%X'%c for c in ude.object[ude.start:ude.end]), ude.end) codecs.register_error('percent',percent_encode)