
    OJni                         d dl Z d Zy)    Nc                 T    dj                   fd}t        j                  d||       S )z
    >>> encode_unicode_codepoints("a") == 'a'
    True
    >>> ascii = ''.join(chr(i) for i in range(0x80))
    >>> encode_unicode_codepoints(ascii) == ascii
    True
    >>> encode_unicode_codepoints('\u4e16\u754c') == '\\u4e16\\u754c'
    True
    z	\u{0:04x}c                 D     t        | j                  d                  S )Nr   )ordgroup)mcodepoint_formats    =/home/uftp/myenv/lib/python3.12/site-packages/execjs/_misc.py	codepointz,encode_unicode_codepoints.<locals>.codepoint   s    AGGAJ00    z[^ -])formatresub)strr
   r   s     @r	   encode_unicode_codepointsr      s+     $**1 66.)S11r   )r   r    r   r	   <module>r      s    	2r   