eradicate 0.0.1
pip install eradicate==0.0.1
Newer version available (2.3.0)
Released:
Removes commented-out code.
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (Expat License)
- Author: myint
- Tags clean, format, commented-out code
Classifiers
- Environment
- Intended Audience
- License
- Programming Language
Project description
Remove 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 things 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
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (Expat License)
- Author: myint
- Tags clean, format, commented-out code
Classifiers
- Environment
- Intended Audience
- License
- Programming Language
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
File details
Details for the file eradicate-0.0.1.tar.gz
.
File metadata
- Download URL: eradicate-0.0.1.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba7bcf5f4377a191096973a55a501da37d6957d5349857b7871b82069f5f0633 |
|
MD5 | 4589296b59bf58fc0eb5940cc635bbdd |
|
BLAKE2b-256 | d2caa5a967f31ef35bbf75bec65ab4d75998cb627a7e5b3f975008780de5d3c3 |