U
    h                     @   s>   d Z ddlmZ ddlmZ ddlmZ G dd dejZdS )a  
For the ``future`` package.

Adds this import line::

    from builtins import (ascii, bytes, chr, dict, filter, hex, input,
                          int, list, map, next, object, oct, open, pow,
                          range, round, str, super, zip)

to a module, irrespective of whether each definition is used.

Adds these imports after any other imports (in an initial block of them).
    )unicode_literals)
fixer_basetouch_import_topc                   @   s    e Zd ZdZdZdZdd ZdS )FixAddAllFutureBuiltinsTZ
file_input   c                 C   s   t dd| d S )Nbuiltins*r   )selfnoderesults r   a/var/www/html/venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_add_all_future_builtins.py	transform   s    z!FixAddAllFutureBuiltins.transformN)__name__
__module____qualname__ZBM_compatibleZPATTERNZ	run_orderr   r   r   r   r   r      s   r   N)	__doc__
__future__r   Zlib2to3r   Zlibfuturize.fixer_utilr   ZBaseFixr   r   r   r   r   <module>   s   