[PATCH] D108057: [Flang] Add compiled python modules to .gitignore

Kiran Chandramohan via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 13 14:04:50 PDT 2021


kiranchandramohan created this revision.
kiranchandramohan added reviewers: klausler, Meinersbur, awarzynski.
kiranchandramohan requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

We recently started using python to run some tests. The usage of a
common shared file creates compiled python modules in __pycache__
directory. Ignore this and any other compiled python files.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D108057

Files:
  flang/.gitignore


Index: flang/.gitignore
===================================================================
--- flang/.gitignore
+++ flang/.gitignore
@@ -1,3 +1,6 @@
+#==============================================================================#
+# This file specifies intentionally untracked files that git should ignore.
+#==============================================================================#
 Debug
 Release
 MinSizeRel
@@ -19,3 +22,6 @@
 formatted
 .DS_Store 
 .vs_code 
+# Byte compiled python modules.
+__pycache__
+*.pyc


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D108057.366353.patch
Type: text/x-patch
Size: 524 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210813/7776bd33/attachment.bin>


More information about the llvm-commits mailing list