.hgignore 215 B

12345678910111213
  1. # Globbing is cool.
  2. syntax: glob
  3. # No python bytecode
  4. *.pyc
  5. # Ignore dist builds and egg info
  6. dist/*
  7. South.egg-info/*
  8. # Ignore test log
  9. south/tests/test.log
  10. # Also ignore Sphinx files
  11. syntax: regexp
  12. ^docs/\_build/