eric6/Plugins/CheckerPlugins/CodeStyleChecker/eradicate.py

changeset 7639
422fd05e9c91
parent 7040
f89952e5fc11
child 7836
2f0d208b8137
equal deleted inserted replaced
7638:176145438b1e 7639:422fd05e9c91
19 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 19 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 21
22 """Removes commented-out Python code.""" 22 """Removes commented-out Python code."""
23 23
24 from __future__ import print_function
25 from __future__ import unicode_literals
26
27 import difflib 24 import difflib
28 import io 25 import io
29 import os 26 import os
30 import re 27 import re
31 import tokenize 28 import tokenize

eric ide

mercurial