Removes commented-out code.
Project description
eradicate removes commented-out code from Python files.
Introduction
With modern revision control available, there is no reason to save commented-out code to your repository. eradicate helps cleans up existing junk comments. It does this by detecting block comments that contain valid Python syntax that are likely to be commented out code. (It avoids false positives like the sentence this is not good, which is valid Python syntax, but is probably not code.)
Example
$ eradicate --in-place example.py
Before running eradicate.
#import os
#from foo import junk
#a = 3
a = 4
#foo(1, 2, 3)
def foo(x, y, z):
#print('hello')
print(x, y, z)
# This is a real comment.
#return True
return False
After running eradicate.
a = 4
def foo(x, y, z):
print(x, y, z)
# This is a real comment.
return False
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
eradicate-0.1.1.tar.gz
(3.9 kB
view details)
File details
Details for the file eradicate-0.1.1.tar.gz
.
File metadata
- Download URL: eradicate-0.1.1.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a46a8693045bd0116cea7b9be0c1dfe880e7ddd5b32bcada05d225ae8b6e8c94 |
|
MD5 | 8985b79dd08303675bf63579815d722f |
|
BLAKE2b-256 | 754ca4d60c0824b3418252beae7732366112b62b327e873851812c4815954148 |