Mercurial > hg
view tests/test-debug-rebuild-dirstate.t @ 51168:a9e00554b3e4 stable
procutil: move stdin assignment outside of try-finally block
There is an stdin variable in the global scope of this module. And in the
`finally` block of this try-finally statement we're checking `if stdin is not
None`. Let's make sure we don't confuse code check tools into thinking we want
to use global stdin by moving this line of code outside of `try`.
This was caught by pytype 2023.11.21 on Python 3.11.2.
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Sat, 02 Dec 2023 15:10:28 -0300 |
parents | a10d823a8e3d |
children | dcaa2df1f688 |
line wrap: on
line source
#require rust $ cat >> $HGRCPATH << EOF > [format] > use-dirstate-v2=1 > [storage] > dirstate-v2.slow-path=allow > EOF $ hg init t $ cd t $ for i in 1 2 3 4 5 6 7 8 9 10; do touch foobar$i; done $ hg add . adding foobar1 adding foobar10 adding foobar2 adding foobar3 adding foobar4 adding foobar5 adding foobar6 adding foobar7 adding foobar8 adding foobar9 $ hg commit -m "1" Check that there's no space leak on debugrebuilddirstate $ f --size .hg/dirstate* .hg/dirstate: size=133 .hg/dirstate.b870a51b: size=511 $ hg debugrebuilddirstate $ f --size .hg/dirstate* .hg/dirstate: size=133 .hg/dirstate.88698448: size=511 $ hg debugrebuilddirstate $ f --size .hg/dirstate* .hg/dirstate: size=133 .hg/dirstate.6b8ab34b: size=511