[issue33370] Addition of mypy cache to gitignore

2018-04-30 Thread Brett Cannon
Change by Brett Cannon : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue33370] Addition of mypy cache to gitignore

2018-04-28 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: you could use a feature of git for the global .gitignore file git config --global core.excludesfile ~/.gitignore source: https://git-scm.com/docs/gitignore/2.17.0 -- nosy: +matrixise ___ Python tracker

[issue33370] Addition of mypy cache to gitignore

2018-04-28 Thread Naman Sharma
Change by Naman Sharma : -- pull_requests: +6319 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue33370] Addition of mypy cache to gitignore

2018-04-27 Thread Brett Cannon
Change by Brett Cannon : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue33370] Addition of mypy cache to gitignore

2018-04-27 Thread Brett Cannon
Brett Cannon added the comment: Python's standard library isn't typed so running mypy on it isn't really beneficial at the moment. Plus you can add .mypy_cache to your global .gitignore file. I'm not saying we can't add it, I'm just saying it isn't a priority. -- nosy: +brett.cannon

[issue33370] Addition of mypy cache to gitignore

2018-04-26 Thread Ekin Dursun
Change by Ekin Dursun : -- keywords: +patch pull_requests: +6310 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue33370] Addition of mypy cache to gitignore

2018-04-26 Thread Ekin Dursun
New submission from Ekin Dursun : Since Python developers started to use mypy, I need we should add .mypy_cache directories to .gitignore. -- messages: 315823 nosy: onlined priority: normal severity: normal status: open title: Addition of mypy cache to gitignore versions: Python 3.8 __