Removes commented-out code.
Project description
eradicate removes commented-out code from Python files.
With modern revision control available there is no reason to save junk comments to the repository. eradicate helps cleans up existing junk.
Example
$ eradicate --in-place example.py
Before:
#a = 3
a = 4
#foo(1, 2, 3)
def foo(x, y, z):
#print('hello')
print(x, y, z)
after:
a = 4
def foo(x, y, z):
print(x, y, z)
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.0.3.tar.gz
(3.4 kB
view details)
File details
Details for the file eradicate-0.0.3.tar.gz.
File metadata
- Download URL: eradicate-0.0.3.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ef1cff39108a55cb9241c10addc54ef98753523ef69e6b9a2f686e71185bc03
|
|
| MD5 |
c1b5f66046356a40dc3ada000eeaa40d
|
|
| BLAKE2b-256 |
00bb4d3cf64cb29346b05b1cf8cceae17a774bcc2b8faadd86898a5a092dd2dc
|