Mercurial > public > mercurial-scm > hg
comparison mercurial/utils/cborutil.py @ 51874:6a0afc73472e
cbor: drop a duplicate dictionary initialization entry
Flagged by PyCharm.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sun, 22 Sep 2024 17:11:10 -0400 |
parents | f4733654f144 |
children | fb8932685031 |
comparison
equal
deleted
inserted
replaced
51873:8c990011c804 | 51874:6a0afc73472e |
---|---|
203 yield b'\xf6' | 203 yield b'\xf6' |
204 | 204 |
205 | 205 |
206 STREAM_ENCODERS = { | 206 STREAM_ENCODERS = { |
207 bytes: streamencodebytestring, | 207 bytes: streamencodebytestring, |
208 int: streamencodeint, | |
209 int: streamencodeint, | 208 int: streamencodeint, |
210 list: streamencodearray, | 209 list: streamencodearray, |
211 tuple: streamencodearray, | 210 tuple: streamencodearray, |
212 dict: streamencodemap, | 211 dict: streamencodemap, |
213 set: streamencodeset, | 212 set: streamencodeset, |