<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
B
    ÍAÒ[  ã               @   sä   d Z ddlmZ ddlmZmZmZmZmZ erNddl	m
Z
mZmZmZmZ nddlm
Z
mZmZmZmZ ddlmZmZmZmZmZmZmZmZmZmZmZ ddlmZ ejrÜdd	d
ddddddddddddddddgZng ZdS )a¹  
A resurrection of some old functions from Python 2 for use in Python 3. These
should be used sparingly, to help with porting efforts, since code using them
is no longer standard Python 3 code.

This module provides the following:

1. Implementations of these builtin functions which have no equivalent on Py3:

- apply
- chr
- cmp
- execfile

2. Aliases:

- intern <- sys.intern
- raw_input <- input
- reduce <- functools.reduce
- reload <- imp.reload
- unichr <- chr
- unicode <- str
- xrange <- range

3. List-producing versions of the corresponding Python 3 iterator-producing functions:

- filter
- map
- range
- zip

4. Forward-ported Py2 types:

- basestring
- dict
- str
- long
- unicode

é    )ÚPY3)ÚfilterÚmapÚrangeÚreduceÚzip)Ú
basestringÚolddictÚoldstrÚlongÚunicode)r   ÚdictÚstrr   r   )ÚapplyÚchrÚcmpÚexecfileÚinternÚoctÚ	raw_inputÚreloadÚunichrr   Úxrange)Úutilsr   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   N) Ú__doc__Zfuture.utilsr   Zpast.builtins.noniteratorsr   r   r   r   r   Z
past.typesr   r	   r   r
   r   r   r   Z__builtin__Zpast.builtins.miscr   r   r   r   r   r   r   r   r   r   Úpastr   Ú__all__© r   r   úG/opt/alt/python37/lib/python3.7/site-packages/past/builtins/__init__.pyÚ<module>(   s   4

