diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-03-06 06:48:54 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-03-06 06:48:54 -0500 |
commit | f0020b0bdf3493387be31fe1016bb992c6bd89e2 (patch) | |
tree | cfe6bf471f748fea90ef3ea0ad0a55e1402ef2cf | |
parent | 1e4a0f0bdb32f2ae041db8e086db75a615192c62 (diff) | |
download | python-coveragepy-git-f0020b0bdf3493387be31fe1016bb992c6bd89e2.tar.gz |
Add a .hgignore file.
-rw-r--r-- | .hgignore | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.hgignore b/.hgignore new file mode 100644 index 00000000..e2efd0c3 --- /dev/null +++ b/.hgignore @@ -0,0 +1,17 @@ +syntax: glob
+
+# Files that can appear anywhere in the tree.
+*.pyc
+*.pyo
+*.bak
+.coverage
+.coverage.*
+
+# Stuff in the root.
+build
+dist
+coverage.egg-info
+MANIFEST
+
+# Stuff in the test directory.
+zipmods.zip
|