Metadata-Version: 1.1
Name: modernize3k
Version: 0.3.2
Summary: A hack on top of 2to3 for modernizing code for hybrid codebases.
Home-page: http://github.com/myint/python-modernize
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: .. code-block::
        
            Python
               _ __  ___  __| |___ _ _ _ _ (_)______
              | '  \/ _ \/ _` / -_) '_| ' \| |_ / -_)
              |_|_|_\___/\__,_\___|_| |_||_|_/__\___|
        
        .. image:: https://travis-ci.org/myint/python-modernize.png?branch=master
            :target: https://travis-ci.org/myint/python-modernize
            :alt: Build status
        
        python-modernize is a very thin wrapper around lib2to3 to utilize it to make
        Python 2 code more modern with the intention of eventually porting it over to
        Python 3. This is an unofficial fork (of
        https://github.com/mitsuhiko/python-modernize) that runs on both Python 2 and
        3.
        
        It does not guarantee, but it attempts to spit out a Python 2/3
        compatible codebase.
        
        Unicode Literal Control:
        
        - By default modernize will leave literals alone.
        - The ``--future-unicode`` flag imports the ``unicode_literals`` from the
          ``__future__`` module. This requires Python 2.6 and later and will require
          that you mark bytestrings with ``b''`` and native strings in ``str(b'')`` or
          something similar that survives the transformation.
        
        
        Installation
        ------------
        
        From pip::
        
            $ pip install --upgrade modernize3k
        
        
        Tests
        -----
        
        The tests use cram_::
        
            $ cram --indent=4 ./test.cram
        
        .. _cram: https://pypi.python.org/pypi/cram
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
