Metadata-Version: 1.1
Name: eradicate
Version: 0.0.1
Summary: Removes commented-out code.
Home-page: https://github.com/myint/eradicate
Author: myint
Author-email: UNKNOWN
License: Expat License
Description: =========
        eradicate
        =========
        
        .. image:: https://travis-ci.org/myint/eradicate.png?branch=master
           :target: https://travis-ci.org/myint/eradicate
           :alt: Build status
        
        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)
        
Keywords: clean,format,commented-out code
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
