o
    tV\i                     @   s>   d dl Z d dlZd dlmZ d dlZdd Ze  ee dS )    N)always_iterablec                 C   sH   t j| }ttt|}t }t|	d||
d|t| dS )a  
    Report the newlines in the indicated file.

    >>> tmp_path = getfixture('tmp_path')
    >>> filename = tmp_path / 'out.txt'
    >>> _ = filename.write_text('foo\nbar\n', newline='', encoding='utf-8')
    >>> report_newlines(filename)
    newline is '\n'
    >>> filename = tmp_path / 'out.txt'
    >>> _ = filename.write_text('foo\nbar\r\n', newline='', encoding='utf-8')
    >>> report_newlines(filename)
    newlines are ('\n', '\r\n')
    newlineisN)jaracotextread_newlineslentupler   inflectengineprintplural_nounplural_verbrepr)filenamenewlinescountr    r   /var/www/www-root/data/www/176.119.141.140/sports-predictor/venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/show-newlines.pyreport_newlines	   s   

r   )autocommandr
   more_itertoolsr   jaraco.textr   r   __name__r   r   r   r   <module>   s    