Repository: kudu Updated Branches: refs/heads/master d87486c47 -> 07d190c3e
[python] - Expand gitignore for python Adding additional exclusion rules for python to .gitignore. Change-Id: I4b7bcac00a88678a555a4d85419c22decac23b58 Reviewed-on: http://gerrit.cloudera.org:8080/4616 Tested-by: Kudu Jenkins Reviewed-by: Todd Lipcon <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/2a1a6c07 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/2a1a6c07 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/2a1a6c07 Branch: refs/heads/master Commit: 2a1a6c073bfb3dfb0d310d07f11aab10641665b6 Parents: d87486c Author: Jordan Birdsell <[email protected]> Authored: Tue Oct 4 07:03:37 2016 -0400 Committer: Todd Lipcon <[email protected]> Committed: Wed Oct 5 04:41:04 2016 +0000 ---------------------------------------------------------------------- python/.gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/2a1a6c07/python/.gitignore ---------------------------------------------------------------------- diff --git a/python/.gitignore b/python/.gitignore index 2e78d86..4615a32 100644 --- a/python/.gitignore +++ b/python/.gitignore @@ -19,11 +19,14 @@ *flymake* # Compiled source and in-place build files +__pycache__ +*$py.class *.py[ocd] *.so .build_cache_dir .cache .eggs +*.egg MANIFEST # Generated sources @@ -42,5 +45,17 @@ dist .coverage coverage.xml +# other distribution/packaging directories +env/ +develop-eggs/ +downloads/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +.installed.cfg + # automatically generated during local development kudu/version.py
