# HG changeset patch # User Kirill Smelkov <[EMAIL PROTECTED]> # Date 1209814507 -14400 # Node ID aaa56370d9fb26ca99e2aa774e373b7383ffd685 # Parent 2fe2f4f4e58972b2a3eb106964cd68db12d88e0e Initial .hgignore
We ignore *.pyc, vim swap files, build results under BUILD/ and Lexicon.pickle This is handy, because otherwise, say after runtest.py run, 'hg status' shows lots of unrelated info, thus lowering signal-to-noise ratio. diff --git a/.hgignore b/.hgignore new file mode 100644 --- /dev/null +++ b/.hgignore @@ -0,0 +1,8 @@ +syntax: glob + +*.pyc +*.swp + +Cython/Compiler/Lexicon.pickle +BUILD/ + _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
