/**PageBeginHtml Block Begin **/ /***自定义返回顶部小火箭***/ /*生成博客目录的JS 开始*/ /*生成博客目录的JS 结束*/

Jumpserver堡垒机安装配置全过程

                                      Jumpserver堡垒机安装配置全过程

     来源:lzlutao  《Jumpserver堡垒机安装配置全过程

 

 

一、准备一台Linux主机

 

0、设置其ip :

ip设置请参考:《centos 7.3 设置静态IP

 

 

1、开SSH

 

[root@localhost ~]# systemctl enable sshd
[root@localhost ~]# 

 

 

 2、关闭SELINUX

  

[root@localhost ~]# vi /etc/sysconfig/selinux
[root@localhost ~]# 


#-----修改下边红字部分
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#     enforcing - SELinux security policy is enforced.
#     permissive - SELinux prints warnings instead of enforcing.
#     disabled - No SELinux policy is loaded.
#SELINUX=enforcing
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
#     targeted - Targeted processes are protected,
#     minimum - Modification of targeted policy. Only selected processes are protected.
#     mls - Multi Level Security protection.
SELINUXTYPE=targeted

 

 

 3、安装rz

 PS:在本环节操作前,一定要确认是否可以ping通 www.baidu.com。 用以确定该环境的网络是可以联网的。如果不可以,请根据具体情况分析解决。本人做此设置前就出现一下问题。

 1 [root@localhost ~]# cat /etc/resolv.conf
 2 # Generated by NetworkManager
 3 nameserver 8.8.8.8
 4 nameserver 8.8.4.4
 5 [root@localhost ~]# ping www.baidu.com
 6 ping: www.baidu.com: Name or service not known
 7 [root@localhost ~]# cd /etc/sysconfig/network-scripts/
 8 [root@localhost network-scripts]# ls
 9 ifcfg-ens33  ifdown-isdn      ifup          ifup-plip      ifup-tunnel
10 ifcfg-lo     ifdown-post      ifup-aliases  ifup-plusb     ifup-wireless
11 ifdown       ifdown-ppp       ifup-bnep     ifup-post      init.ipv6-global
12 ifdown-bnep  ifdown-routes    ifup-eth      ifup-ppp       network-functions
13 ifdown-eth   ifdown-sit       ifup-ib       ifup-routes    network-functions-ipv6
14 ifdown-ib    ifdown-Team      ifup-ippp     ifup-sit
15 ifdown-ippp  ifdown-TeamPort  ifup-ipv6     ifup-Team
16 ifdown-ipv6  ifdown-tunnel    ifup-isdn     ifup-TeamPort
17 [root@localhost network-scripts]# vi ifcfg-ens33 
18 [root@localhost network-scripts]# cat ifcfg-ens33 
19 TYPE="Ethernet"
20 BOOTPROTO="static"
21 NETWORK=192.168.1.1
22 NAME="ens33"
23 ME="ens33"
24 ONBOOT="yes"
25 IPADDR="192.168.1.20"
26 GATEWAY="192.168.1.1"
27 
28 #DEFROUTE="yes"
29 #PEERDNS="yes"
30 #PEERROUTES="yes"
31 #IPV4_FAILURE_FATAL="no"
32 #IPV6INIT="yes"
33 IPV6_AUTOCONF="yes"
34 IPV6_DEFROUTE="yes"
35 IPV6_PEERDNS="yes"
36 IPV6_PEERROUTES="yes"
37 IPV6_FAILURE_FATAL="no"
38 IPV6_ADDR_GEN_MODE="stable-privacy"
39 #
40 #UUID="59469ff2-89aa-4cb0-9304-bb1ca20c9db3"
41 DEVICE="ens33"
42 
43 DEFROUTE=yes
44 IPV4_FAILURE_FATAL=no
45 IPV6INIT=yes
46 UUID=c96bc909-188e-ec64-3a96-6a90982b08ad
47 PEERDNS=yes
48 
49 PEERROUTES=yes
50 DNS1=8.8.8.8
51 DNS2=114.114.114.114
52 [root@localhost network-scripts]# service network restart
53 Restarting network (via systemctl):                        [  OK  ]
54 [root@localhost network-scripts]# 
55 [root@localhost network-scripts]# ping 192.168.1.1
56 PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
57 64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=6.30 ms
58 64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=4.34 ms
59 64 bytes from 192.168.1.1: icmp_seq=3 ttl=64 time=7.30 ms
60 64 bytes from 192.168.1.1: icmp_seq=4 ttl=64 time=4.77 ms
61 64 bytes from 192.168.1.1: icmp_seq=5 ttl=64 time=1.83 ms
62 ^C
63 --- 192.168.1.1 ping statistics ---
64 5 packets transmitted, 5 received, 0% packet loss, time 4009ms
65 rtt min/avg/max/mdev = 1.832/4.912/7.300/1.871 ms
66 [root@localhost network-scripts]# ping www.baidu.com
67 PING www.wshifen.com (104.193.88.123) 56(84) bytes of data.
View Code

 

[root@localhost ~]# yum -y install lrzsz
base                                                            | 3.6 kB  00:00:00     
extras                                                          | 2.9 kB  00:00:00     
updates                                                         | 2.9 kB  00:00:00     
(1/4): base/7/x86_64/group_gz                                   | 153 kB  00:00:19     
(2/4): extras/7/x86_64/primary_db                               | 230 kB  00:00:52     
(3/4): updates/7/x86_64/primary_db                              | 6.5 MB  00:01:01     
(4/4): base/7/x86_64/primary_db                                 | 6.1 MB  00:01:02     
Package lrzsz-0.12.20-36.el7.x86_64 already installed and latest version
Nothing to do
[root@localhost ~]# 

 

 之后上传文件一定要用-be参数(其中-b是--binary用二进制的方式上传,-e是--escape强制escape所有控制字符),否则上传的文件不完整  rz –be

 

 4、安装wget

 

[root@localhost ~]# yum -y install wget
Resolving Dependencies
--> Running transaction check
---> Package wget.x86_64 0:1.14-13.el7 will be updated
---> Package wget.x86_64 0:1.14-18.el7_6.1 will be an update
--> Finished Dependency Resolution

Dependencies Resolved

=======================================================================================
 Package         Arch              Version                       Repository       Size
=======================================================================================
Updating:
 wget            x86_64            1.14-18.el7_6.1               base            547 k

Transaction Summary
=======================================================================================
Upgrade  1 Package

Total download size: 547 k
Downloading packages:
No Presto metadata available for base
warning: /var/cache/yum/x86_64/7/base/packages/wget-1.14-18.el7_6.1.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Public key for wget-1.14-18.el7_6.1.x86_64.rpm is not installed
wget-1.14-18.el7_6.1.x86_64.rpm                                 | 547 kB  00:00:00     
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Importing GPG key 0xF4A80EB5:
 Userid     : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
 Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
 Package    : centos-release-7-3.1611.el7.centos.x86_64 (@anaconda)
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Updating   : wget-1.14-18.el7_6.1.x86_64                                         1/2 
  Cleanup    : wget-1.14-13.el7.x86_64                                             2/2 
  Verifying  : wget-1.14-18.el7_6.1.x86_64                                         1/2 
  Verifying  : wget-1.14-13.el7.x86_64                                             2/2 

Updated:
  wget.x86_64 0:1.14-18.el7_6.1                                                        

Complete!
[root@localhost ~]# 

 

5、更换yum源,用于提速yum

(1)备份yum源 

 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# ls
CentOS-Base.repo  CentOS-Debuginfo.repo  CentOS-Media.repo    CentOS-Vault.repo
CentOS-CR.repo    CentOS-fasttrack.repo  CentOS-Sources.repo  repo-bk.tar.gz
[root@localhost yum.repos.d]# cat CentOS-Base.repo 
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client.  You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the 
# remarked out baseurl= line instead.
#
#

[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#released updates 
[updates]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

[root@localhost yum.repos.d]# mv /etc/yum.repos.d/CentOS-Base.repo  /etc/yum.repos.d/CentOS-Base.repo.backup20210401
[root@localhost yum.repos.d]# ls
CentOS-Base.repo.backup20210401  CentOS-fasttrack.repo  CentOS-Vault.repo
CentOS-CR.repo                   CentOS-Media.repo      repo-bk.tar.gz
CentOS-Debuginfo.repo            CentOS-Sources.repo
[root@localhost yum.repos.d]# 

 

(2)下载新的CentOS-Base.repo 到/etc/yum.repos.d/

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo  

[root@localhost yum.repos.d]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
--2021-04-01 17:15:26--  http://mirrors.aliyun.com/repo/Centos-7.repo
Resolving mirrors.aliyun.com (mirrors.aliyun.com)... 121.9.246.111, 125.94.49.185, 113.107.235.218, ...
Connecting to mirrors.aliyun.com (mirrors.aliyun.com)|121.9.246.111|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2523 (2.5K) [application/octet-stream]
Saving to: ‘/etc/yum.repos.d/CentOS-Base.repo’

100%[=============================================>] 2,523       --.-K/s   in 0.005s  

2021-04-01 17:15:27 (523 KB/s) - ‘/etc/yum.repos.d/CentOS-Base.repo’ saved [2523/2523]

[root@localhost yum.repos.d]# ls
CentOS-Base.repo                 CentOS-Debuginfo.repo  CentOS-Sources.repo
CentOS-Base.repo.backup20210401  CentOS-fasttrack.repo  CentOS-Vault.repo
CentOS-CR.repo                   CentOS-Media.repo      repo-bk.tar.gz
[root@localhost yum.repos.d]# cat CentOS-Base.repo
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client.  You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the 
# remarked out baseurl= line instead.
#
#
 
[base]
name=CentOS-$releasever - Base - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/os/$basearch/
        http://mirrors.aliyuncs.com/centos/$releasever/os/$basearch/
        http://mirrors.cloud.aliyuncs.com/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
 
#released updates 
[updates]
name=CentOS-$releasever - Updates - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/updates/$basearch/
        http://mirrors.aliyuncs.com/centos/$releasever/updates/$basearch/
        http://mirrors.cloud.aliyuncs.com/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
 
#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/extras/$basearch/
        http://mirrors.aliyuncs.com/centos/$releasever/extras/$basearch/
        http://mirrors.cloud.aliyuncs.com/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
 
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/centosplus/$basearch/
        http://mirrors.aliyuncs.com/centos/$releasever/centosplus/$basearch/
        http://mirrors.cloud.aliyuncs.com/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
 
#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/contrib/$basearch/
        http://mirrors.aliyuncs.com/centos/$releasever/contrib/$basearch/
        http://mirrors.cloud.aliyuncs.com/centos/$releasever/contrib/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
[root@localhost yum.repos.d]# 

 

 

清理缓存

yum clean all

[root@localhost yum.repos.d]# ls
CentOS-Base.repo                 CentOS-Debuginfo.repo  CentOS-Sources.repo
CentOS-Base.repo.backup20210401  CentOS-fasttrack.repo  CentOS-Vault.repo
CentOS-CR.repo                   CentOS-Media.repo      repo-bk.tar.gz
[root@localhost yum.repos.d]# yum clean all
Cleaning repos: base extras updates
Cleaning up everything
[root@localhost yum.repos.d]# 

 

 

重新生成缓存

yum makecache

 

[root@localhost yum.repos.d]# ls
CentOS-Base.repo                 CentOS-Debuginfo.repo  CentOS-Sources.repo
CentOS-Base.repo.backup20210401  CentOS-fasttrack.repo  CentOS-Vault.repo
CentOS-CR.repo                   CentOS-Media.repo      repo-bk.tar.gz
[root@localhost yum.repos.d]# yum makecache
http://mirrors.aliyuncs.com/centos/7/os/x86_64/repodata/repomd.xml: [Errno 12] Timeout on http://mirrors.aliyuncs.com/centos/7/os/x86_64/repodata/repomd.xml: (28, 'Connection timed out after 30001 milliseconds')
Trying other mirror.
http://mirrors.cloud.aliyuncs.com/centos/7/os/x86_64/repodata/repomd.xml: [Errno 14] curl#6 - "Could not resolve host: mirrors.cloud.aliyuncs.com; Name or service not known"
Trying other mirror.
base                                                            | 3.6 kB  00:00:00     
extras                                                          | 2.9 kB  00:00:00     
updates                                                         | 2.9 kB  00:00:00     
(1/10): base/7/x86_64/group_gz                                  | 153 kB  00:00:00     
(2/10): base/7/x86_64/primary_db                                | 6.1 MB  00:00:04     
(3/10): extras/7/x86_64/primary_db                              | 230 kB  00:00:01     
(4/10): base/7/x86_64/other_db                                  | 2.6 MB  00:00:01     
(5/10): extras/7/x86_64/other_db                                | 137 kB  00:00:00     
(6/10): base/7/x86_64/filelists_db                              | 7.2 MB  00:00:08     
(7/10): updates/7/x86_64/primary_db                             | 6.5 MB  00:00:03     
(8/10): updates/7/x86_64/filelists_db                           | 3.9 MB  00:00:03     
(9/10): updates/7/x86_64/other_db                               | 517 kB  00:00:00     
(10/10): extras/7/x86_64/filelists_db                           | 228 kB  00:00:05     
Metadata Cache Created
[root@localhost yum.repos.d]# 

 

 

6、用firewalld开80、8181、8080、3306、443、2222端口(80用于Nginx连接,8080用于Jumpserver连接,8081用于guacamole连接,5000用于Coco连接,3306用于MySQL连接、2222用于ssh连接)

firewall-cmd --permanent --add-port=80/tcp

firewall-cmd --permanent --add-port=8080/tcp

firewall-cmd --permanent --add-port=8081/tcp

firewall-cmd --permanent --add-port=5000/tcp

firewall-cmd --permanent --add-port=3306/tcp

firewall-cmd --permanent --add-port=443/tcp

firewall-cmd --permanent --add-port=2222/tcp

firewall-cmd –reload

 1:查看防火墙状态,及开启防火墙

    

linux centos7  默认防火墙是关闭的,设置了开启端口后一定要重启防火墙,否则端口开启会不起作用

 

查看已开启的端口

firewall-cmd --list-ports

查看防火墙状态

firewall-cmd --state

开启防火墙

systemctl start firewalld

开启端口

firewall-cmd --zone=public --add-port=6379/tcp --permanent

重启防火墙

firewall-cmd --reload
 

 

  

 

 

[root@localhost yum.repos.d]#  systemctl start firewalld
[root@localhost yum.repos.d]# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
   Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
   Active: active (running) since Thu 2021-04-01 17:22:24 CST; 11s ago
     Docs: man:firewalld(1)
 Main PID: 5010 (firewalld)
   CGroup: /system.slice/firewalld.service
           └─5010 /usr/bin/python -Es /usr/sbin/firewalld --nofork --nopid

Apr 01 17:22:23 localhost.localdomain systemd[1]: Starting firewalld - dynamic fire....
Apr 01 17:22:24 localhost.localdomain systemd[1]: Started firewalld - dynamic firew....
Hint: Some lines were ellipsized, use -l to show in full.
[root@localhost yum.repos.d]# 

如果要关闭防火墙设置,可能通过systemctl stop firewalld这条指令来关闭该功能。

 

 2:执行开端口脚本:

 

[root@localhost yum.repos.d]# firewall-cmd --permanent --add-port=80/tcp
success
[root@localhost yum.repos.d]# firewall-cmd --permanent --add-port=8080/tcp
success
[root@localhost yum.repos.d]# 
[root@localhost yum.repos.d]# firewall-cmd --permanent --add-port=8081/tcp
success
[root@localhost yum.repos.d]# 
[root@localhost yum.repos.d]# firewall-cmd --permanent --add-port=5000/tcp
success
[root@localhost yum.repos.d]# 
[root@localhost yum.repos.d]# firewall-cmd --permanent --add-port=3306/tcp
success
[root@localhost yum.repos.d]# 
[root@localhost yum.repos.d]# firewall-cmd --permanent --add-port=443/tcp
success
[root@localhost yum.repos.d]# 
[root@localhost yum.repos.d]# firewall-cmd --permanent --add-port=2222/tcp
success
[root@localhost yum.repos.d]# 

 

[root@localhost yum.repos.d]# firewall-cmd --reload
success
[root@localhost yum.repos.d]# 

 

 

 7、修改字符集,否则可能报 input/output error的问题,因为日志里打印了中文

 

localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8

export LC_ALL=zh_CN.UTF-8

echo 'LANG="zh_CN.UTF-8"' > /etc/locale.conf

 

[root@localhost yum.repos.d]# localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8
[root@localhost yum.repos.d]# export LC_ALL=zh_CN.UTF-8
[root@localhost yum.repos.d]# echo 'LANG="zh_CN.UTF-8"' > /etc/locale.conf
[root@localhost yum.repos.d]# 

 

 

 

二、MySQL

1、安装:

(1)、配置YUM源

在MySQL官网中下载YUM源rpm安装包:http://dev.mysql.com/downloads/repo/yum/

(2)下载mysql源安装包

cd /home

mkdir software

cd software

wget http://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm

(3)安装mysql源

yum localinstall mysql57-community-release-el7-11.noarch.rpm

(4)检查mysql源是否安装成功

yum repolist enabled | grep "mysql.*-community.*"

(5)安装MySQL

yum install mysql-community-server

如果之前安装CentOS时选择了安装MySQL,则先用yum remove mariadb*卸载掉才能继续安装

2、启动:

systemctl start mysqld

查看是否启动:

systemctl status mysqld出现Active: active (running)和PID代表启动成功

得到默认密码:

grep 'temporary password' /var/log/mysqld.log

用root登录进去:

mysql -uroot -p

注意:如果默认密码带有任何标点符号,需要在每个标点符号前加转义字符:\,否则会提示如下错误

修改默认密码:

mysql> set password for 'root'@'localhost' = password('********');

设置任何IP都可以远程访问MySQL,没有这行的话之后配置数据库会出错

mysql> grant all privileges on *.* to 'root'@'%' identified by '********';

退出MySQL

mysql> quit

3、设置开机启动:

yum安装的MySQL默认就是服务,可以用systemctl list-unit-files查看,但开机没启动(disabled状态),所以要用systemctl enable mysqld激活开机启动,然后systemctl daemon-reload

MySQL默认配置文件路径:  配置文件:/etc/my.cnf  日志文件:/var/log//var/log/mysqld.log  服务启动脚本:/usr/lib/systemd/system/mysqld.service  socket文件:/var/run/mysqld/mysqld.pid

 

 三、准备 Python3 和 Python 虚拟环境

 

 

1、安装依赖包

yum -y install wget sqlite-devel xz gcc automake zlib-devel openssl-devel epel-release git

 

 

2、编译安装

cd /home/software

wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz

tar xvf Python-3.6.1.tar.xz && cd Python-3.6.1

./configure && make && make install

# 这里必须执行编译安装,否则在安装 Python 库依赖时会有麻烦...

 

[root@localhost yum.repos.d]# cd /home/software
bash: cd: /home/software: No such file or directory
[root@localhost yum.repos.d]# cd /home
[root@localhost home]# ls
confluence  nginx
[root@localhost home]# mkdir software
[root@localhost home]# ls
confluence  nginx  software
[root@localhost home]# cd software/
[root@localhost software]# wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
--2021-04-02 10:57:39--  https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
Resolving www.python.org (www.python.org)... 151.101.76.223, 2a04:4e42:12::223
Connecting to www.python.org (www.python.org)|151.101.76.223|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 16872064 (16M) [application/octet-stream]
Saving to: ‘Python-3.6.1.tar.xz’

 8% [=============>                                                                                                                                                            ] 1,440,353   66.8KB/s   in 5m 9s  

2021-04-02 11:02:56 (4.55 KB/s) - Connection closed at byte 1440353. Retrying.

--2021-04-02 11:02:57--  (try: 2)  https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
Connecting to www.python.org (www.python.org)|151.101.76.223|:443... connected.
HTTP request sent, awaiting response... 206 Partial Content
Length: 16872064 (16M), 15431711 (15M) remaining [application/octet-stream]
Saving to: ‘Python-3.6.1.tar.xz’

12% [++++++++++++++======>                                                                                                                                                     ] 2,116,701   4.51KB/s  eta 49m 14s
16% [++++++++++++++=============>                                                                                                                                              ] 2,780,253   5.15KB/s   in 10m 4s 

2021-04-02 11:13:03 (2.17 KB/s) - Connection closed at byte 2780253. Retrying.

--2021-04-02 11:13:05--  (try: 3)  https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
Connecting to www.python.org (www.python.org)|151.101.76.223|:443... connected.
HTTP request sent, awaiting response... 206 Partial Content
Length: 16872064 (16M), 14091811 (13M) remaining [application/octet-stream]
Saving to: ‘Python-3.6.1.tar.xz’

43% [++++++++++++++++++++++++++++=============================================>                                                                                                ] 7,361,657   4.84KB/s   in 20m 40s

2021-04-02 11:33:49 (3.61 KB/s) - Connection closed at byte 7361657. Retrying.

--2021-04-02 11:33:52--  (try: 4)  https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
Connecting to www.python.org (www.python.org)|151.101.76.223|:443... connected.
HTTP request sent, awaiting response... 206 Partial Content
Length: 16872064 (16M), 9510407 (9.1M) remaining [application/octet-stream]
Saving to: ‘Python-3.6.1.tar.xz’

100%[++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++===============================================================================================>] 16,872,064   133KB/s   in 74s    

2021-04-02 11:35:11 (126 KB/s) - ‘Python-3.6.1.tar.xz’ saved [16872064/16872064]

[root@localhost software]# 
[root@localhost software]# 

 

[root@localhost software]# 
[root@localhost software]# tar xvf Python-3.6.1.tar.xz && cd Python-3.6.1
Python-3.6.1/
Python-3.6.1/Doc/
Python-3.6.1/Doc/c-api/
Python-3.6.1/Doc/c-api/sys.rst
Python-3.6.1/Doc/c-api/conversion.rst
Python-3.6.1/Doc/c-api/marshal.rst
Python-3.6.1/Doc/c-api/coro.rst
Python-3.6.1/Doc/c-api/method.rst
Python-3.6.1/Doc/c-api/index.rst
Python-3.6.1/Doc/c-api/bytearray.rst
Python-3.6.1/Doc/c-api/bytes.rst
Python-3.6.1/Doc/c-api/none.rst
Python-3.6.1/Doc/c-api/long.rst
Python-3.6.1/Doc/c-api/number.rst
Python-3.6.1/Doc/c-api/code.rst
Python-3.6.1/Doc/c-api/allocation.rst
Python-3.6.1/Doc/c-api/list.rst
Python-3.6.1/Doc/c-api/datetime.rst
Python-3.6.1/Doc/c-api/set.rst
Python-3.6.1/Doc/c-api/stable.rst
Python-3.6.1/Doc/c-api/buffer.rst
Python-3.6.1/Doc/c-api/gen.rst
Python-3.6.1/Doc/c-api/function.rst
Python-3.6.1/Doc/c-api/apiabiversion.rst
Python-3.6.1/Doc/c-api/object.rst
Python-3.6.1/Doc/c-api/slice.rst
Python-3.6.1/Doc/c-api/weakref.rst
Python-3.6.1/Doc/c-api/sequence.rst
Python-3.6.1/Doc/c-api/mapping.rst
Python-3.6.1/Doc/c-api/iter.rst
Python-3.6.1/Doc/c-api/reflection.rst
Python-3.6.1/Doc/c-api/structures.rst
Python-3.6.1/Doc/c-api/import.rst
Python-3.6.1/Doc/c-api/file.rst
Python-3.6.1/Doc/c-api/tuple.rst
Python-3.6.1/Doc/c-api/descriptor.rst
Python-3.6.1/Doc/c-api/utilities.rst
Python-3.6.1/Doc/c-api/exceptions.rst
Python-3.6.1/Doc/c-api/concrete.rst
Python-3.6.1/Doc/c-api/complex.rst
Python-3.6.1/Doc/c-api/intro.rst
Python-3.6.1/Doc/c-api/unicode.rst
Python-3.6.1/Doc/c-api/dict.rst
Python-3.6.1/Doc/c-api/iterator.rst
Python-3.6.1/Doc/c-api/memoryview.rst
Python-3.6.1/Doc/c-api/typeobj.rst
Python-3.6.1/Doc/c-api/module.rst
Python-3.6.1/Doc/c-api/init.rst
Python-3.6.1/Doc/c-api/codec.rst
Python-3.6.1/Doc/c-api/arg.rst
Python-3.6.1/Doc/c-api/type.rst
Python-3.6.1/Doc/c-api/float.rst
Python-3.6.1/Doc/c-api/gcsupport.rst
Python-3.6.1/Doc/c-api/cell.rst
Python-3.6.1/Doc/c-api/memory.rst
Python-3.6.1/Doc/c-api/refcounting.rst
Python-3.6.1/Doc/c-api/objimpl.rst
Python-3.6.1/Doc/c-api/bool.rst
Python-3.6.1/Doc/c-api/objbuffer.rst
Python-3.6.1/Doc/c-api/capsule.rst
Python-3.6.1/Doc/c-api/abstract.rst
Python-3.6.1/Doc/c-api/veryhigh.rst
Python-3.6.1/Doc/includes/
Python-3.6.1/Doc/includes/mp_newtype.py
Python-3.6.1/Doc/includes/mp_workers.py
Python-3.6.1/Doc/includes/email-unpack.py
Python-3.6.1/Doc/includes/setup.py
Python-3.6.1/Doc/includes/test.py
Python-3.6.1/Doc/includes/noddy4.c
Python-3.6.1/Doc/includes/tzinfo-examples.py
Python-3.6.1/Doc/includes/email-headers.py
Python-3.6.1/Doc/includes/email-simple.py
Python-3.6.1/Doc/includes/email-alternative.py
Python-3.6.1/Doc/includes/mp_pool.py
Python-3.6.1/Doc/includes/sqlite3/
Python-3.6.1/Doc/includes/sqlite3/mysumaggr.py
Python-3.6.1/Doc/includes/sqlite3/executemany_1.py
Python-3.6.1/Doc/includes/sqlite3/simple_tableprinter.py
Python-3.6.1/Doc/includes/sqlite3/countcursors.py
Python-3.6.1/Doc/includes/sqlite3/ctx_manager.py
Python-3.6.1/Doc/includes/sqlite3/createdb.py
Python-3.6.1/Doc/includes/sqlite3/adapter_point_1.py
Python-3.6.1/Doc/includes/sqlite3/executemany_2.py
Python-3.6.1/Doc/includes/sqlite3/load_extension.py
Python-3.6.1/Doc/includes/sqlite3/execute_3.py
Python-3.6.1/Doc/includes/sqlite3/shared_cache.py
Python-3.6.1/Doc/includes/sqlite3/complete_statement.py
Python-3.6.1/Doc/includes/sqlite3/execsql_printall_1.py
Python-3.6.1/Doc/includes/sqlite3/pysqlite_datetime.py
Python-3.6.1/Doc/includes/sqlite3/text_factory.py
Python-3.6.1/Doc/includes/sqlite3/insert_more_people.py
Python-3.6.1/Doc/includes/sqlite3/executescript.py
Python-3.6.1/Doc/includes/sqlite3/execute_1.py
Python-3.6.1/Doc/includes/sqlite3/adapter_point_2.py
Python-3.6.1/Doc/includes/sqlite3/rowclass.py
Python-3.6.1/Doc/includes/sqlite3/collation_reverse.py
Python-3.6.1/Doc/includes/sqlite3/connect_db_1.py
Python-3.6.1/Doc/includes/sqlite3/execsql_fetchonerow.py
Python-3.6.1/Doc/includes/sqlite3/md5func.py
Python-3.6.1/Doc/includes/sqlite3/converter_point.py
Python-3.6.1/Doc/includes/sqlite3/parse_colnames.py
Python-3.6.1/Doc/includes/sqlite3/row_factory.py
Python-3.6.1/Doc/includes/sqlite3/adapter_datetime.py
Python-3.6.1/Doc/includes/sqlite3/shortcut_methods.py
Python-3.6.1/Doc/includes/sqlite3/connect_db_2.py
Python-3.6.1/Doc/includes/shoddy.c
Python-3.6.1/Doc/includes/noddy3.c
Python-3.6.1/Doc/includes/run-func.c
Python-3.6.1/Doc/includes/noddy2.c
Python-3.6.1/Doc/includes/noddy.c
Python-3.6.1/Doc/includes/typestruct.h
Python-3.6.1/Doc/includes/turtle-star.py
Python-3.6.1/Doc/includes/email-read-alternative.py
Python-3.6.1/Doc/includes/email-dir.py
Python-3.6.1/Doc/includes/email-mime.py
Python-3.6.1/Doc/includes/minidom-example.py
Python-3.6.1/Doc/includes/dbpickle.py
Python-3.6.1/Doc/includes/capsulethunk.h
Python-3.6.1/Doc/conf.py
Python-3.6.1/Doc/whatsnew/
Python-3.6.1/Doc/whatsnew/index.rst
Python-3.6.1/Doc/whatsnew/changelog.rst
Python-3.6.1/Doc/whatsnew/3.6.rst
Python-3.6.1/Doc/whatsnew/3.5.rst
Python-3.6.1/Doc/whatsnew/2.1.rst
Python-3.6.1/Doc/whatsnew/3.4.rst
Python-3.6.1/Doc/whatsnew/2.4.rst
Python-3.6.1/Doc/whatsnew/2.5.rst
Python-3.6.1/Doc/whatsnew/3.0.rst
Python-3.6.1/Doc/whatsnew/3.1.rst
Python-3.6.1/Doc/whatsnew/2.7.rst
Python-3.6.1/Doc/whatsnew/2.3.rst
Python-3.6.1/Doc/whatsnew/3.2.rst
Python-3.6.1/Doc/whatsnew/2.6.rst
Python-3.6.1/Doc/whatsnew/3.3.rst
Python-3.6.1/Doc/whatsnew/2.0.rst
Python-3.6.1/Doc/whatsnew/2.2.rst
Python-3.6.1/Doc/installing/
Python-3.6.1/Doc/installing/index.rst
Python-3.6.1/Doc/howto/
Python-3.6.1/Doc/howto/curses.rst
Python-3.6.1/Doc/howto/index.rst
Python-3.6.1/Doc/howto/argparse.rst
Python-3.6.1/Doc/howto/instrumentation.rst
Python-3.6.1/Doc/howto/cporting.rst
Python-3.6.1/Doc/howto/logging.rst
Python-3.6.1/Doc/howto/pyporting.rst
Python-3.6.1/Doc/howto/ipaddress.rst
Python-3.6.1/Doc/howto/descriptor.rst
Python-3.6.1/Doc/howto/logging-cookbook.rst
Python-3.6.1/Doc/howto/sorting.rst
Python-3.6.1/Doc/howto/logging_flow.png
Python-3.6.1/Doc/howto/clinic.rst
Python-3.6.1/Doc/howto/unicode.rst
Python-3.6.1/Doc/howto/sockets.rst
Python-3.6.1/Doc/howto/urllib2.rst
Python-3.6.1/Doc/howto/functional.rst
Python-3.6.1/Doc/howto/regex.rst
Python-3.6.1/Doc/distutils/
Python-3.6.1/Doc/distutils/index.rst
Python-3.6.1/Doc/distutils/extending.rst
Python-3.6.1/Doc/distutils/packageindex.rst
Python-3.6.1/Doc/distutils/builtdist.rst
Python-3.6.1/Doc/distutils/introduction.rst
Python-3.6.1/Doc/distutils/configfile.rst
Python-3.6.1/Doc/distutils/commandref.rst
Python-3.6.1/Doc/distutils/examples.rst
Python-3.6.1/Doc/distutils/setupscript.rst
Python-3.6.1/Doc/distutils/apiref.rst
Python-3.6.1/Doc/distutils/sourcedist.rst
Python-3.6.1/Doc/distutils/uploading.rst
Python-3.6.1/Doc/about.rst
Python-3.6.1/Doc/contents.rst
Python-3.6.1/Doc/copyright.rst
Python-3.6.1/Doc/bugs.rst
Python-3.6.1/Doc/README.rst
Python-3.6.1/Doc/faq/
Python-3.6.1/Doc/faq/programming.rst
Python-3.6.1/Doc/faq/windows.rst
Python-3.6.1/Doc/faq/index.rst
Python-3.6.1/Doc/faq/extending.rst
Python-3.6.1/Doc/faq/installed.rst
Python-3.6.1/Doc/faq/gui.rst
Python-3.6.1/Doc/faq/library.rst
Python-3.6.1/Doc/faq/general.rst
Python-3.6.1/Doc/faq/design.rst
Python-3.6.1/Doc/faq/python-video-icon.png
Python-3.6.1/Doc/glossary.rst
Python-3.6.1/Doc/Makefile
Python-3.6.1/Doc/distributing/
Python-3.6.1/Doc/distributing/index.rst
Python-3.6.1/Doc/extending/
Python-3.6.1/Doc/extending/embedding.rst
Python-3.6.1/Doc/extending/windows.rst
Python-3.6.1/Doc/extending/index.rst
Python-3.6.1/Doc/extending/extending.rst
Python-3.6.1/Doc/extending/building.rst
Python-3.6.1/Doc/extending/newtypes.rst
Python-3.6.1/Doc/tutorial/
Python-3.6.1/Doc/tutorial/whatnow.rst
Python-3.6.1/Doc/tutorial/index.rst
Python-3.6.1/Doc/tutorial/errors.rst
Python-3.6.1/Doc/tutorial/introduction.rst
Python-3.6.1/Doc/tutorial/datastructures.rst
Python-3.6.1/Doc/tutorial/floatingpoint.rst
Python-3.6.1/Doc/tutorial/stdlib.rst
Python-3.6.1/Doc/tutorial/stdlib2.rst
Python-3.6.1/Doc/tutorial/appendix.rst
Python-3.6.1/Doc/tutorial/venv.rst
Python-3.6.1/Doc/tutorial/interactive.rst
Python-3.6.1/Doc/tutorial/modules.rst
Python-3.6.1/Doc/tutorial/inputoutput.rst
Python-3.6.1/Doc/tutorial/interpreter.rst
Python-3.6.1/Doc/tutorial/controlflow.rst
Python-3.6.1/Doc/tutorial/classes.rst
Python-3.6.1/Doc/tutorial/appetite.rst
Python-3.6.1/Doc/reference/
Python-3.6.1/Doc/reference/index.rst
Python-3.6.1/Doc/reference/simple_stmts.rst
Python-3.6.1/Doc/reference/introduction.rst
Python-3.6.1/Doc/reference/expressions.rst
Python-3.6.1/Doc/reference/toplevel_components.rst
Python-3.6.1/Doc/reference/import.rst
Python-3.6.1/Doc/reference/executionmodel.rst
Python-3.6.1/Doc/reference/compound_stmts.rst
Python-3.6.1/Doc/reference/lexical_analysis.rst
Python-3.6.1/Doc/reference/grammar.rst
Python-3.6.1/Doc/reference/datamodel.rst
Python-3.6.1/Doc/make.bat
Python-3.6.1/Doc/install/
Python-3.6.1/Doc/install/index.rst
Python-3.6.1/Doc/using/
Python-3.6.1/Doc/using/windows.rst
Python-3.6.1/Doc/using/index.rst
Python-3.6.1/Doc/using/mac.rst
Python-3.6.1/Doc/using/cmdline.rst
Python-3.6.1/Doc/using/venv-create.inc
Python-3.6.1/Doc/using/unix.rst
Python-3.6.1/Doc/using/win_installer.png
Python-3.6.1/Doc/data/
Python-3.6.1/Doc/data/refcounts.dat
Python-3.6.1/Doc/tools/
Python-3.6.1/Doc/tools/extensions/
Python-3.6.1/Doc/tools/extensions/suspicious.py
Python-3.6.1/Doc/tools/extensions/patchlevel.py
Python-3.6.1/Doc/tools/extensions/pyspecific.py
Python-3.6.1/Doc/tools/extensions/c_annotations.py
Python-3.6.1/Doc/tools/rstlint.py
Python-3.6.1/Doc/tools/templates/
Python-3.6.1/Doc/tools/templates/download.html
Python-3.6.1/Doc/tools/templates/indexcontent.html
Python-3.6.1/Doc/tools/templates/customsourcelink.html
Python-3.6.1/Doc/tools/templates/indexsidebar.html
Python-3.6.1/Doc/tools/templates/opensearch.xml
Python-3.6.1/Doc/tools/templates/layout.html
Python-3.6.1/Doc/tools/static/
Python-3.6.1/Doc/tools/static/version_switch.js
Python-3.6.1/Doc/tools/static/copybutton.js
Python-3.6.1/Doc/tools/static/sidebar.js
Python-3.6.1/Doc/tools/static/py.png
Python-3.6.1/Doc/tools/susp-ignored.csv
Python-3.6.1/Doc/tools/pydoctheme/
Python-3.6.1/Doc/tools/pydoctheme/static/
Python-3.6.1/Doc/tools/pydoctheme/static/pydoctheme.css
Python-3.6.1/Doc/tools/pydoctheme/theme.conf
Python-3.6.1/Doc/license.rst
Python-3.6.1/Doc/library/
Python-3.6.1/Doc/library/xml.dom.pulldom.rst
Python-3.6.1/Doc/library/modulefinder.rst
Python-3.6.1/Doc/library/sys.rst
Python-3.6.1/Doc/library/keyword.rst
Python-3.6.1/Doc/library/xmlrpc.client.rst
Python-3.6.1/Doc/library/email.contentmanager.rst
Python-3.6.1/Doc/library/hashlib-blake2-tree.png
Python-3.6.1/Doc/library/marshal.rst
Python-3.6.1/Doc/library/fileinput.rst
Python-3.6.1/Doc/library/audioop.rst
Python-3.6.1/Doc/library/pwd.rst
Python-3.6.1/Doc/library/allos.rst
Python-3.6.1/Doc/library/sqlite3.rst
Python-3.6.1/Doc/library/email.rst
Python-3.6.1/Doc/library/stdtypes.rst
Python-3.6.1/Doc/library/windows.rst
Python-3.6.1/Doc/library/gettext.rst
Python-3.6.1/Doc/library/concurrency.rst
Python-3.6.1/Doc/library/xml.sax.utils.rst
Python-3.6.1/Doc/library/asyncio-dev.rst
Python-3.6.1/Doc/library/constants.rst
Python-3.6.1/Doc/library/curses.rst
Python-3.6.1/Doc/library/types.rst
Python-3.6.1/Doc/library/distutils.rst
Python-3.6.1/Doc/library/traceback.rst
Python-3.6.1/Doc/library/index.rst
Python-3.6.1/Doc/library/locale.rst
Python-3.6.1/Doc/library/html.parser.rst
Python-3.6.1/Doc/library/fpectl.rst
Python-3.6.1/Doc/library/turtle-star.ps
Python-3.6.1/Doc/library/parser.rst
Python-3.6.1/Doc/library/copyreg.rst
Python-3.6.1/Doc/library/email.compat32-message.rst
Python-3.6.1/Doc/library/http.rst
Python-3.6.1/Doc/library/argparse.rst
Python-3.6.1/Doc/library/cmath.rst
Python-3.6.1/Doc/library/hmac.rst
Python-3.6.1/Doc/library/errno.rst
Python-3.6.1/Doc/library/nntplib.rst
Python-3.6.1/Doc/library/socketserver.rst
Python-3.6.1/Doc/library/ctypes.rst
Python-3.6.1/Doc/library/dummy_threading.rst
Python-3.6.1/Doc/library/ensurepip.rst
Python-3.6.1/Doc/library/calendar.rst
Python-3.6.1/Doc/library/xml.etree.elementtree.rst
Python-3.6.1/Doc/library/termios.rst
Python-3.6.1/Doc/library/__main__.rst
Python-3.6.1/Doc/library/plistlib.rst
Python-3.6.1/Doc/library/ftplib.rst
Python-3.6.1/Doc/library/profile.rst
Python-3.6.1/Doc/library/code.rst
Python-3.6.1/Doc/library/tulip_coro.png
Python-3.6.1/Doc/library/functions.rst
Python-3.6.1/Doc/library/os.rst
Python-3.6.1/Doc/library/enum.rst
Python-3.6.1/Doc/library/numeric.rst
Python-3.6.1/Doc/library/difflib.rst
Python-3.6.1/Doc/library/os.path.rst
Python-3.6.1/Doc/library/email.policy.rst
Python-3.6.1/Doc/library/crypto.rst
Python-3.6.1/Doc/library/xml.sax.handler.rst
Python-3.6.1/Doc/library/pyclbr.rst
Python-3.6.1/Doc/library/pathlib-inheritance.png
Python-3.6.1/Doc/library/mailbox.rst
Python-3.6.1/Doc/library/language.rst
Python-3.6.1/Doc/library/faulthandler.rst
Python-3.6.1/Doc/library/textwrap.rst
Python-3.6.1/Doc/library/warnings.rst
Python-3.6.1/Doc/library/_dummy_thread.rst
Python-3.6.1/Doc/library/email.examples.rst
Python-3.6.1/Doc/library/urllib.rst
Python-3.6.1/Doc/library/multiprocessing.rst
Python-3.6.1/Doc/library/asyncio-stream.rst
Python-3.6.1/Doc/library/functools.rst
Python-3.6.1/Doc/library/turtle-star.png
Python-3.6.1/Doc/library/markup.rst
Python-3.6.1/Doc/library/datetime.rst
Python-3.6.1/Doc/library/array.rst
Python-3.6.1/Doc/library/tty.rst
Python-3.6.1/Doc/library/urllib.parse.rst
Python-3.6.1/Doc/library/urllib.error.rst
Python-3.6.1/Doc/library/mailcap.rst
Python-3.6.1/Doc/library/quopri.rst
Python-3.6.1/Doc/library/asyncore.rst
Python-3.6.1/Doc/library/logging.rst
Python-3.6.1/Doc/library/datatypes.rst
Python-3.6.1/Doc/library/asyncio-eventloop.rst
Python-3.6.1/Doc/library/stat.rst
Python-3.6.1/Doc/library/py_compile.rst
Python-3.6.1/Doc/library/imaplib.rst
Python-3.6.1/Doc/library/turtle.rst
Python-3.6.1/Doc/library/depgraph-output.png
Python-3.6.1/Doc/library/email.encoders.rst
Python-3.6.1/Doc/library/email.errors.rst
Python-3.6.1/Doc/library/xmlrpc.rst
Python-3.6.1/Doc/library/shlex.rst
Python-3.6.1/Doc/library/codecs.rst
Python-3.6.1/Doc/library/i18n.rst
Python-3.6.1/Doc/library/text.rst
Python-3.6.1/Doc/library/asyncio-task.rst
Python-3.6.1/Doc/library/statistics.rst
Python-3.6.1/Doc/library/__future__.rst
Python-3.6.1/Doc/library/json.rst
Python-3.6.1/Doc/library/trace.rst
Python-3.6.1/Doc/library/macpath.rst
Python-3.6.1/Doc/library/pdb.rst
Python-3.6.1/Doc/library/inspect.rst
Python-3.6.1/Doc/library/telnetlib.rst
Python-3.6.1/Doc/library/concurrent.futures.rst
Python-3.6.1/Doc/library/msilib.rst
Python-3.6.1/Doc/library/asyncio-subprocess.rst
Python-3.6.1/Doc/library/colorsys.rst
Python-3.6.1/Doc/library/spwd.rst
Python-3.6.1/Doc/library/tk.rst
Python-3.6.1/Doc/library/ipaddress.rst
Python-3.6.1/Doc/library/threading.rst
Python-3.6.1/Doc/library/heapq.rst
Python-3.6.1/Doc/library/xmlrpc.server.rst
Python-3.6.1/Doc/library/subprocess.rst
Python-3.6.1/Doc/library/cmd.rst
Python-3.6.1/Doc/library/tempfile.rst
Python-3.6.1/Doc/library/weakref.rst
Python-3.6.1/Doc/library/bz2.rst
Python-3.6.1/Doc/library/asyncio-sync.rst
Python-3.6.1/Doc/library/html.entities.rst
Python-3.6.1/Doc/library/getpass.rst
Python-3.6.1/Doc/library/pkgutil.rst
Python-3.6.1/Doc/library/undoc.rst
Python-3.6.1/Doc/library/posix.rst
Python-3.6.1/Doc/library/development.rst
Python-3.6.1/Doc/library/tkinter.tix.rst
Python-3.6.1/Doc/library/email.mime.rst
Python-3.6.1/Doc/library/asyncio-protocol.rst
Python-3.6.1/Doc/library/token.rst
Python-3.6.1/Doc/library/urllib.request.rst
Python-3.6.1/Doc/library/winsound.rst
Python-3.6.1/Doc/library/stringprep.rst
Python-3.6.1/Doc/library/filecmp.rst
Python-3.6.1/Doc/library/concurrent.rst
Python-3.6.1/Doc/library/cgitb.rst
Python-3.6.1/Doc/library/test.rst
Python-3.6.1/Doc/library/time.rst
Python-3.6.1/Doc/library/frameworks.rst
Python-3.6.1/Doc/library/wsgiref.rst
Python-3.6.1/Doc/library/secrets.rst
Python-3.6.1/Doc/library/platform.rst
Python-3.6.1/Doc/library/collections.abc.rst
Python-3.6.1/Doc/library/tabnanny.rst
Python-3.6.1/Doc/library/fnmatch.rst
Python-3.6.1/Doc/library/zlib.rst
Python-3.6.1/Doc/library/compileall.rst
Python-3.6.1/Doc/library/binhex.rst
Python-3.6.1/Doc/library/decimal.rst
Python-3.6.1/Doc/library/pydoc.rst
Python-3.6.1/Doc/library/timeit.rst
Python-3.6.1/Doc/library/archiving.rst
Python-3.6.1/Doc/library/queue.rst
Python-3.6.1/Doc/library/sndhdr.rst
Python-3.6.1/Doc/library/zipfile.rst
Python-3.6.1/Doc/library/signal.rst
Python-3.6.1/Doc/library/asyncio-eventloops.rst
Python-3.6.1/Doc/library/random.rst
Python-3.6.1/Doc/library/binary.rst
Python-3.6.1/Doc/library/asyncio-queue.rst
Python-3.6.1/Doc/library/python.rst
Python-3.6.1/Doc/library/symtable.rst
Python-3.6.1/Doc/library/exceptions.rst
Python-3.6.1/Doc/library/xml.rst
Python-3.6.1/Doc/library/unix.rst
Python-3.6.1/Doc/library/tkinter.scrolledtext.rst
Python-3.6.1/Doc/library/persistence.rst
Python-3.6.1/Doc/library/csv.rst
Python-3.6.1/Doc/library/debug.rst
Python-3.6.1/Doc/library/webbrowser.rst
Python-3.6.1/Doc/library/pickle.rst
Python-3.6.1/Doc/library/unittest.rst
Python-3.6.1/Doc/library/io.rst
Python-3.6.1/Doc/library/netdata.rst
Python-3.6.1/Doc/library/html.rst
Python-3.6.1/Doc/library/imp.rst
Python-3.6.1/Doc/library/contextlib.rst
Python-3.6.1/Doc/library/symbol.rst
Python-3.6.1/Doc/library/selectors.rst
Python-3.6.1/Doc/library/email.iterators.rst
Python-3.6.1/Doc/library/xml.sax.reader.rst
Python-3.6.1/Doc/library/getopt.rst
Python-3.6.1/Doc/library/builtins.rst
Python-3.6.1/Doc/library/ssl.rst
Python-3.6.1/Doc/library/pipes.rst
Python-3.6.1/Doc/library/numbers.rst
Python-3.6.1/Doc/library/rlcompleter.rst
Python-3.6.1/Doc/library/intro.rst
Python-3.6.1/Doc/library/atexit.rst
Python-3.6.1/Doc/library/site.rst
Python-3.6.1/Doc/library/collections.rst
Python-3.6.1/Doc/library/abc.rst
Python-3.6.1/Doc/library/http.cookies.rst
Python-3.6.1/Doc/library/custominterp.rst
Python-3.6.1/Doc/library/configparser.rst
Python-3.6.1/Doc/library/email.charset.rst
Python-3.6.1/Doc/library/tkinter.rst
Python-3.6.1/Doc/library/urllib.robotparser.rst
Python-3.6.1/Doc/library/fractions.rst
Python-3.6.1/Doc/library/venv.rst
Python-3.6.1/Doc/library/curses.ascii.rst
Python-3.6.1/Doc/library/cgi.rst
Python-3.6.1/Doc/library/codeop.rst
Python-3.6.1/Doc/library/filesys.rst
Python-3.6.1/Doc/library/tracemalloc.rst
Python-3.6.1/Doc/library/doctest.rst
Python-3.6.1/Doc/library/xml.dom.rst
Python-3.6.1/Doc/library/crypt.rst
Python-3.6.1/Doc/library/optparse.rst
Python-3.6.1/Doc/library/unittest.mock.rst
Python-3.6.1/Doc/library/reprlib.rst
Python-3.6.1/Doc/library/http.cookiejar.rst
Python-3.6.1/Doc/library/hashlib.rst
Python-3.6.1/Doc/library/distribution.rst
Python-3.6.1/Doc/library/fileformats.rst
Python-3.6.1/Doc/library/mm.rst
Python-3.6.1/Doc/library/zipimport.rst
Python-3.6.1/Doc/library/ipc.rst
Python-3.6.1/Doc/library/smtplib.rst
Python-3.6.1/Doc/library/gzip.rst
Python-3.6.1/Doc/library/logging.config.rst
Python-3.6.1/Doc/library/copy.rst
Python-3.6.1/Doc/library/resource.rst
Python-3.6.1/Doc/library/grp.rst
Python-3.6.1/Doc/library/winreg.rst
Python-3.6.1/Doc/library/xdrlib.rst
Python-3.6.1/Doc/library/xml.sax.rst
Python-3.6.1/Doc/library/zipapp.rst
Python-3.6.1/Doc/library/glob.rst
Python-3.6.1/Doc/library/2to3.rst
Python-3.6.1/Doc/library/tkinter.ttk.rst
Python-3.6.1/Doc/library/email.parser.rst
Python-3.6.1/Doc/library/email.util.rst
Python-3.6.1/Doc/library/importlib.rst
Python-3.6.1/Doc/library/formatter.rst
Python-3.6.1/Doc/library/tarfile.rst
Python-3.6.1/Doc/library/sunau.rst
Python-3.6.1/Doc/library/uuid.rst
Python-3.6.1/Doc/library/xml.dom.minidom.rst
Python-3.6.1/Doc/library/msvcrt.rst
Python-3.6.1/Doc/library/http.client.rst
Python-3.6.1/Doc/library/syslog.rst
Python-3.6.1/Doc/library/typing.rst
Python-3.6.1/Doc/library/othergui.rst
Python-3.6.1/Doc/library/modules.rst
Python-3.6.1/Doc/library/fcntl.rst
Python-3.6.1/Doc/library/binascii.rst
Python-3.6.1/Doc/library/asynchat.rst
Python-3.6.1/Doc/library/idle.rst
Python-3.6.1/Doc/library/poplib.rst
Python-3.6.1/Doc/library/gc.rst
Python-3.6.1/Doc/library/base64.rst
Python-3.6.1/Doc/library/aifc.rst
Python-3.6.1/Doc/library/asyncio.rst
Python-3.6.1/Doc/library/turtle-star.pdf
Python-3.6.1/Doc/library/misc.rst
Python-3.6.1/Doc/library/pathlib-inheritance.svg
Python-3.6.1/Doc/library/logging.handlers.rst
Python-3.6.1/Doc/library/email.header.rst
Python-3.6.1/Doc/library/re.rst
Python-3.6.1/Doc/library/pprint.rst
Python-3.6.1/Doc/library/smtpd.rst
Python-3.6.1/Doc/library/_thread.rst
Python-3.6.1/Doc/library/select.rst
Python-3.6.1/Doc/library/itertools.rst
Python-3.6.1/Doc/library/ast.rst
Python-3.6.1/Doc/library/struct.rst
Python-3.6.1/Doc/library/tokenize.rst
Python-3.6.1/Doc/library/http.server.rst
Python-3.6.1/Doc/library/readline.rst
Python-3.6.1/Doc/library/unittest.mock-examples.rst
Python-3.6.1/Doc/library/mmap.rst
Python-3.6.1/Doc/library/shutil.rst
Python-3.6.1/Doc/library/internet.rst
Python-3.6.1/Doc/library/nis.rst
Python-3.6.1/Doc/library/pty.rst
Python-3.6.1/Doc/library/curses.panel.rst
Python-3.6.1/Doc/library/wave.rst
Python-3.6.1/Doc/library/socket.rst
Python-3.6.1/Doc/library/pickletools.rst
Python-3.6.1/Doc/library/sysconfig.rst
Python-3.6.1/Doc/library/email.generator.rst
Python-3.6.1/Doc/library/shelve.rst
Python-3.6.1/Doc/library/linecache.rst
Python-3.6.1/Doc/library/email.headerregistry.rst
Python-3.6.1/Doc/library/sched.rst
Python-3.6.1/Doc/library/email.message.rst
Python-3.6.1/Doc/library/mimetypes.rst
Python-3.6.1/Doc/library/ossaudiodev.rst
Python-3.6.1/Doc/library/uu.rst
Python-3.6.1/Doc/library/imghdr.rst
Python-3.6.1/Doc/library/superseded.rst
Python-3.6.1/Doc/library/math.rst
Python-3.6.1/Doc/library/netrc.rst
Python-3.6.1/Doc/library/tulip_coro.dia
Python-3.6.1/Doc/library/runpy.rst
Python-3.6.1/Doc/library/dis.rst
Python-3.6.1/Doc/library/functional.rst
Python-3.6.1/Doc/library/unicodedata.rst
Python-3.6.1/Doc/library/bdb.rst
Python-3.6.1/Doc/library/dbm.rst
Python-3.6.1/Doc/library/pathlib.rst
Python-3.6.1/Doc/library/pyexpat.rst
Python-3.6.1/Doc/library/operator.rst
Python-3.6.1/Doc/library/lzma.rst
Python-3.6.1/Doc/library/bisect.rst
Python-3.6.1/Doc/library/string.rst
Python-3.6.1/Doc/library/chunk.rst
Python-3.6.1/Modules/
Python-3.6.1/Modules/config.c.in
Python-3.6.1/Modules/_multiprocessing/
Python-3.6.1/Modules/_multiprocessing/multiprocessing.h
Python-3.6.1/Modules/_multiprocessing/semaphore.c
Python-3.6.1/Modules/_multiprocessing/multiprocessing.c
Python-3.6.1/Modules/testcapi_long.h
Python-3.6.1/Modules/sre_lib.h
Python-3.6.1/Modules/_dbmmodule.c
Python-3.6.1/Modules/_lzmamodule.c
Python-3.6.1/Modules/getpath.c
Python-3.6.1/Modules/zlib/
Python-3.6.1/Modules/zlib/crc32.h
Python-3.6.1/Modules/zlib/trees.h
Python-3.6.1/Modules/zlib/minigzip.c
Python-3.6.1/Modules/zlib/infback.c
Python-3.6.1/Modules/zlib/gzguts.h
Python-3.6.1/Modules/zlib/make_vms.com
Python-3.6.1/Modules/zlib/uncompr.c
Python-3.6.1/Modules/zlib/example.c
Python-3.6.1/Modules/zlib/gzread.c
Python-3.6.1/Modules/zlib/zlib.h
Python-3.6.1/Modules/zlib/zutil.c
Python-3.6.1/Modules/zlib/zlib.3
Python-3.6.1/Modules/zlib/Makefile.in
Python-3.6.1/Modules/zlib/zconf.h.in
Python-3.6.1/Modules/zlib/zconf.h.cmakein
Python-3.6.1/Modules/zlib/inffast.c
Python-3.6.1/Modules/zlib/inffast.h
Python-3.6.1/Modules/zlib/configure
Python-3.6.1/Modules/zlib/adler32.c
Python-3.6.1/Modules/zlib/gzclose.c
Python-3.6.1/Modules/zlib/zutil.h
Python-3.6.1/Modules/zlib/compress.c
Python-3.6.1/Modules/zlib/README
Python-3.6.1/Modules/zlib/Makefile
Python-3.6.1/Modules/zlib/trees.c
Python-3.6.1/Modules/zlib/inflate.c
Python-3.6.1/Modules/zlib/algorithm.txt
Python-3.6.1/Modules/zlib/ChangeLog
Python-3.6.1/Modules/zlib/INDEX
Python-3.6.1/Modules/zlib/zlib.pc.in
Python-3.6.1/Modules/zlib/FAQ
Python-3.6.1/Modules/zlib/deflate.h
Python-3.6.1/Modules/zlib/zlib.map
Python-3.6.1/Modules/zlib/inffixed.h
Python-3.6.1/Modules/zlib/gzwrite.c
Python-3.6.1/Modules/zlib/crc32.c
Python-3.6.1/Modules/zlib/inftrees.c
Python-3.6.1/Modules/zlib/inflate.h
Python-3.6.1/Modules/zlib/zconf.h
Python-3.6.1/Modules/zlib/gzlib.c
Python-3.6.1/Modules/zlib/inftrees.h
Python-3.6.1/Modules/zlib/deflate.c
Python-3.6.1/Modules/_sha3/
Python-3.6.1/Modules/_sha3/cleanup.py
Python-3.6.1/Modules/_sha3/clinic/
Python-3.6.1/Modules/_sha3/clinic/sha3module.c.h
Python-3.6.1/Modules/_sha3/README.txt
Python-3.6.1/Modules/_sha3/kcp/
Python-3.6.1/Modules/_sha3/kcp/KeccakP-1600-SnP-opt64.h
Python-3.6.1/Modules/_sha3/kcp/KeccakP-1600-SnP.h
Python-3.6.1/Modules/_sha3/kcp/align.h
Python-3.6.1/Modules/_sha3/kcp/KeccakSponge.inc
Python-3.6.1/Modules/_sha3/kcp/KeccakP-1600-64.macros
Python-3.6.1/Modules/_sha3/kcp/KeccakP-1600-SnP-opt32.h
Python-3.6.1/Modules/_sha3/kcp/KeccakP-1600-unrolling.macros
Python-3.6.1/Modules/_sha3/kcp/KeccakSponge.c
Python-3.6.1/Modules/_sha3/kcp/KeccakP-1600-opt64-config.h
Python-3.6.1/Modules/_sha3/kcp/SnP-Relaned.h
Python-3.6.1/Modules/_sha3/kcp/KeccakP-1600-opt64.c
Python-3.6.1/Modules/_sha3/kcp/KeccakHash.c
Python-3.6.1/Modules/_sha3/kcp/KeccakSponge.h
Python-3.6.1/Modules/_sha3/kcp/KeccakHash.h
Python-3.6.1/Modules/_sha3/kcp/PlSnP-Fallback.inc
Python-3.6.1/Modules/_sha3/kcp/KeccakP-1600-inplace32BI.c
Python-3.6.1/Modules/_sha3/sha3module.c
Python-3.6.1/Modules/_elementtree.c
Python-3.6.1/Modules/_codecsmodule.c
Python-3.6.1/Modules/errnomodule.c
Python-3.6.1/Modules/fpectlmodule.c
Python-3.6.1/Modules/_cryptmodule.c
Python-3.6.1/Modules/unicodename_db.h
Python-3.6.1/Modules/hashtable.c
Python-3.6.1/Modules/nismodule.c
Python-3.6.1/Modules/getaddrinfo.c
Python-3.6.1/Modules/_datetimemodule.c
Python-3.6.1/Modules/_decimal/
Python-3.6.1/Modules/_decimal/docstrings.h
Python-3.6.1/Modules/_decimal/_decimal.c
Python-3.6.1/Modules/_decimal/README.txt
Python-3.6.1/Modules/_decimal/tests/
Python-3.6.1/Modules/_decimal/tests/runall.bat
Python-3.6.1/Modules/_decimal/tests/deccheck.py
Python-3.6.1/Modules/_decimal/tests/formathelper.py
Python-3.6.1/Modules/_decimal/tests/runall-memorydebugger.sh
Python-3.6.1/Modules/_decimal/tests/bench.py
Python-3.6.1/Modules/_decimal/tests/README.txt
Python-3.6.1/Modules/_decimal/tests/bignum.py
Python-3.6.1/Modules/_decimal/tests/randfloat.py
Python-3.6.1/Modules/_decimal/tests/randdec.py
Python-3.6.1/Modules/_decimal/libmpdec/
Python-3.6.1/Modules/_decimal/libmpdec/vcstdint.h
Python-3.6.1/Modules/_decimal/libmpdec/transpose.c
Python-3.6.1/Modules/_decimal/libmpdec/difradix2.c
Python-3.6.1/Modules/_decimal/libmpdec/umodarith.h
Python-3.6.1/Modules/_decimal/libmpdec/basearith.h
Python-3.6.1/Modules/_decimal/libmpdec/fnt.h
Python-3.6.1/Modules/_decimal/libmpdec/mpdecimal.c
Python-3.6.1/Modules/_decimal/libmpdec/typearith.h
Python-3.6.1/Modules/_decimal/libmpdec/mpalloc.h
Python-3.6.1/Modules/_decimal/libmpdec/constants.c
Python-3.6.1/Modules/_decimal/libmpdec/constants.h
Python-3.6.1/Modules/_decimal/libmpdec/fnt.c
Python-3.6.1/Modules/_decimal/libmpdec/sixstep.h
Python-3.6.1/Modules/_decimal/libmpdec/io.h
Python-3.6.1/Modules/_decimal/libmpdec/fourstep.h
Python-3.6.1/Modules/_decimal/libmpdec/basearith.c
Python-3.6.1/Modules/_decimal/libmpdec/crt.h
Python-3.6.1/Modules/_decimal/libmpdec/difradix2.h
Python-3.6.1/Modules/_decimal/libmpdec/numbertheory.c
Python-3.6.1/Modules/_decimal/libmpdec/crt.c
Python-3.6.1/Modules/_decimal/libmpdec/transpose.h
Python-3.6.1/Modules/_decimal/libmpdec/memory.c
Python-3.6.1/Modules/_decimal/libmpdec/io.c
Python-3.6.1/Modules/_decimal/libmpdec/literature/
Python-3.6.1/Modules/_decimal/libmpdec/literature/mulmod-ppro.txt
Python-3.6.1/Modules/_decimal/libmpdec/literature/six-step.txt
Python-3.6.1/Modules/_decimal/libmpdec/literature/mulmod-64.txt
Python-3.6.1/Modules/_decimal/libmpdec/literature/REFERENCES.txt
Python-3.6.1/Modules/_decimal/libmpdec/literature/bignum.txt
Python-3.6.1/Modules/_decimal/libmpdec/literature/matrix-transform.txt
Python-3.6.1/Modules/_decimal/libmpdec/literature/umodarith.lisp
Python-3.6.1/Modules/_decimal/libmpdec/literature/fnt.py
Python-3.6.1/Modules/_decimal/libmpdec/mpdecimal.h
Python-3.6.1/Modules/_decimal/libmpdec/convolute.h
Python-3.6.1/Modules/_decimal/libmpdec/vcdiv64.asm
Python-3.6.1/Modules/_decimal/libmpdec/bits.h
Python-3.6.1/Modules/_decimal/libmpdec/README.txt
Python-3.6.1/Modules/_decimal/libmpdec/vccompat.h
Python-3.6.1/Modules/_decimal/libmpdec/context.c
Python-3.6.1/Modules/_decimal/libmpdec/sixstep.c
Python-3.6.1/Modules/_decimal/libmpdec/fourstep.c
Python-3.6.1/Modules/_decimal/libmpdec/convolute.c
Python-3.6.1/Modules/_decimal/libmpdec/numbertheory.h
Python-3.6.1/Modules/cjkcodecs/
Python-3.6.1/Modules/cjkcodecs/_codecs_cn.c
Python-3.6.1/Modules/cjkcodecs/multibytecodec.c
Python-3.6.1/Modules/cjkcodecs/mappings_hk.h
Python-3.6.1/Modules/cjkcodecs/_codecs_hk.c
Python-3.6.1/Modules/cjkcodecs/_codecs_iso2022.c
Python-3.6.1/Modules/cjkcodecs/emu_jisx0213_2000.h
Python-3.6.1/Modules/cjkcodecs/mappings_kr.h
Python-3.6.1/Modules/cjkcodecs/README
Python-3.6.1/Modules/cjkcodecs/mappings_jisx0213_pair.h
Python-3.6.1/Modules/cjkcodecs/mappings_cn.h
Python-3.6.1/Modules/cjkcodecs/clinic/
Python-3.6.1/Modules/cjkcodecs/clinic/multibytecodec.c.h
Python-3.6.1/Modules/cjkcodecs/mappings_tw.h
Python-3.6.1/Modules/cjkcodecs/mappings_jp.h
Python-3.6.1/Modules/cjkcodecs/multibytecodec.h
Python-3.6.1/Modules/cjkcodecs/_codecs_tw.c
Python-3.6.1/Modules/cjkcodecs/cjkcodecs.h
Python-3.6.1/Modules/cjkcodecs/_codecs_jp.c
Python-3.6.1/Modules/cjkcodecs/alg_jisx0201.h
Python-3.6.1/Modules/cjkcodecs/_codecs_kr.c
Python-3.6.1/Modules/_asynciomodule.c
Python-3.6.1/Modules/_stat.c
Python-3.6.1/Modules/_blake2/
Python-3.6.1/Modules/_blake2/blake2ns.h
Python-3.6.1/Modules/_blake2/blake2b2s.py
Python-3.6.1/Modules/_blake2/impl/
Python-3.6.1/Modules/_blake2/impl/blake2s.c
Python-3.6.1/Modules/_blake2/impl/blake2.h
Python-3.6.1/Modules/_blake2/impl/blake2b-load-sse2.h
Python-3.6.1/Modules/_blake2/impl/blake2b-load-sse41.h
Python-3.6.1/Modules/_blake2/impl/blake2b-round.h
Python-3.6.1/Modules/_blake2/impl/blake2s-round.h
Python-3.6.1/Modules/_blake2/impl/blake2s-load-sse2.h
Python-3.6.1/Modules/_blake2/impl/blake2b-ref.c
Python-3.6.1/Modules/_blake2/impl/blake2-impl.h
Python-3.6.1/Modules/_blake2/impl/blake2s-load-xop.h
Python-3.6.1/Modules/_blake2/impl/blake2s-load-sse41.h
Python-3.6.1/Modules/_blake2/impl/blake2s-ref.c
Python-3.6.1/Modules/_blake2/impl/blake2-config.h
Python-3.6.1/Modules/_blake2/impl/blake2b.c
Python-3.6.1/Modules/_blake2/blake2b_impl.c
Python-3.6.1/Modules/_blake2/blake2module.c
Python-3.6.1/Modules/_blake2/blake2s_impl.c
Python-3.6.1/Modules/_blake2/clinic/
Python-3.6.1/Modules/_blake2/clinic/blake2s_impl.c.h
Python-3.6.1/Modules/_blake2/clinic/blake2b_impl.c.h
Python-3.6.1/Modules/hashlib.h
Python-3.6.1/Modules/readline.c
Python-3.6.1/Modules/fcntlmodule.c
Python-3.6.1/Modules/rotatingtree.h
Python-3.6.1/Modules/mathmodule.c
Python-3.6.1/Modules/_collectionsmodule.c
Python-3.6.1/Modules/xxlimited.c
Python-3.6.1/Modules/atexitmodule.c
Python-3.6.1/Modules/tkinter.h
Python-3.6.1/Modules/syslogmodule.c
Python-3.6.1/Modules/gcmodule.c
Python-3.6.1/Modules/addrinfo.h
Python-3.6.1/Modules/_heapqmodule.c
Python-3.6.1/Modules/_opcode.c
Python-3.6.1/Modules/_math.h
Python-3.6.1/Modules/md5module.c
Python-3.6.1/Modules/gc_weakref.txt
Python-3.6.1/Modules/spwdmodule.c
Python-3.6.1/Modules/_winapi.c
Python-3.6.1/Modules/ld_so_beos
Python-3.6.1/Modules/faulthandler.c
Python-3.6.1/Modules/sre_constants.h
Python-3.6.1/Modules/_curses_panel.c
Python-3.6.1/Modules/_bz2module.c
Python-3.6.1/Modules/_operator.c
Python-3.6.1/Modules/binascii.c
Python-3.6.1/Modules/tkappinit.c
Python-3.6.1/Modules/_sqlite/
Python-3.6.1/Modules/_sqlite/connection.h
Python-3.6.1/Modules/_sqlite/connection.c
Python-3.6.1/Modules/_sqlite/cursor.h
Python-3.6.1/Modules/_sqlite/util.h
Python-3.6.1/Modules/_sqlite/microprotocols.h
Python-3.6.1/Modules/_sqlite/prepare_protocol.c
Python-3.6.1/Modules/_sqlite/row.c
Python-3.6.1/Modules/_sqlite/module.h
Python-3.6.1/Modules/_sqlite/cache.c
Python-3.6.1/Modules/_sqlite/row.h
Python-3.6.1/Modules/_sqlite/cache.h
Python-3.6.1/Modules/_sqlite/statement.h
Python-3.6.1/Modules/_sqlite/module.c
Python-3.6.1/Modules/_sqlite/microprotocols.c
Python-3.6.1/Modules/_sqlite/cursor.c
Python-3.6.1/Modules/_sqlite/prepare_protocol.h
Python-3.6.1/Modules/_sqlite/statement.c
Python-3.6.1/Modules/_sqlite/util.c
Python-3.6.1/Modules/_bisectmodule.c
Python-3.6.1/Modules/sha1module.c
Python-3.6.1/Modules/rotatingtree.c
Python-3.6.1/Modules/_csv.c
Python-3.6.1/Modules/zlibmodule.c
Python-3.6.1/Modules/_ctypes/
Python-3.6.1/Modules/_ctypes/stgdict.c
Python-3.6.1/Modules/_ctypes/libffi_osx/
Python-3.6.1/Modules/_ctypes/libffi_osx/types.c
Python-3.6.1/Modules/_ctypes/libffi_osx/README.pyobjc
Python-3.6.1/Modules/_ctypes/libffi_osx/LICENSE
Python-3.6.1/Modules/_ctypes/libffi_osx/x86/
Python-3.6.1/Modules/_ctypes/libffi_osx/x86/darwin64.S
Python-3.6.1/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c
Python-3.6.1/Modules/_ctypes/libffi_osx/x86/x86-ffi_darwin.c
Python-3.6.1/Modules/_ctypes/libffi_osx/x86/x86-darwin.S
Python-3.6.1/Modules/_ctypes/libffi_osx/README
Python-3.6.1/Modules/_ctypes/libffi_osx/include/
Python-3.6.1/Modules/_ctypes/libffi_osx/include/ffi_common.h
Python-3.6.1/Modules/_ctypes/libffi_osx/include/fficonfig.h
Python-3.6.1/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi_osx/include/ffi.h
Python-3.6.1/Modules/_ctypes/libffi_osx/include/x86-ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi_osx/include/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi_osx/ffi.c
Python-3.6.1/Modules/_ctypes/libffi_osx/powerpc/
Python-3.6.1/Modules/_ctypes/libffi_osx/powerpc/ppc-darwin_closure.S
Python-3.6.1/Modules/_ctypes/libffi_osx/powerpc/ppc64-darwin_closure.S
Python-3.6.1/Modules/_ctypes/libffi_osx/powerpc/ppc-darwin.S
Python-3.6.1/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c
Python-3.6.1/Modules/_ctypes/libffi_osx/powerpc/ppc-darwin.h
Python-3.6.1/Modules/_ctypes/libffi_msvc/
Python-3.6.1/Modules/_ctypes/libffi_msvc/ffi_common.h
Python-3.6.1/Modules/_ctypes/libffi_msvc/README.ctypes
Python-3.6.1/Modules/_ctypes/libffi_msvc/prep_cif.c
Python-3.6.1/Modules/_ctypes/libffi_msvc/types.c
Python-3.6.1/Modules/_ctypes/libffi_msvc/fficonfig.h
Python-3.6.1/Modules/_ctypes/libffi_msvc/win32.c
Python-3.6.1/Modules/_ctypes/libffi_msvc/LICENSE
Python-3.6.1/Modules/_ctypes/libffi_msvc/README
Python-3.6.1/Modules/_ctypes/libffi_msvc/win64.asm
Python-3.6.1/Modules/_ctypes/libffi_msvc/ffi.h
Python-3.6.1/Modules/_ctypes/libffi_msvc/ffi.c
Python-3.6.1/Modules/_ctypes/libffi_msvc/ffitarget.h
Python-3.6.1/Modules/_ctypes/ctypes_dlfcn.h
Python-3.6.1/Modules/_ctypes/ctypes.h
Python-3.6.1/Modules/_ctypes/callbacks.c
Python-3.6.1/Modules/_ctypes/cfield.c
Python-3.6.1/Modules/_ctypes/darwin/
Python-3.6.1/Modules/_ctypes/darwin/README.ctypes
Python-3.6.1/Modules/_ctypes/darwin/dlfcn_simple.c
Python-3.6.1/Modules/_ctypes/darwin/dlfcn.h
Python-3.6.1/Modules/_ctypes/darwin/LICENSE
Python-3.6.1/Modules/_ctypes/darwin/README
Python-3.6.1/Modules/_ctypes/malloc_closure.c
Python-3.6.1/Modules/_ctypes/libffi.diff
Python-3.6.1/Modules/_ctypes/callproc.c
Python-3.6.1/Modules/_ctypes/_ctypes_test.c
Python-3.6.1/Modules/_ctypes/_ctypes_test.h
Python-3.6.1/Modules/_ctypes/libffi/
Python-3.6.1/Modules/_ctypes/libffi/depcomp
Python-3.6.1/Modules/_ctypes/libffi/libtool-version
Python-3.6.1/Modules/_ctypes/libffi/Makefile.am
Python-3.6.1/Modules/_ctypes/libffi/install-sh
Python-3.6.1/Modules/_ctypes/libffi/src/
Python-3.6.1/Modules/_ctypes/libffi/src/frv/
Python-3.6.1/Modules/_ctypes/libffi/src/frv/eabi.S
Python-3.6.1/Modules/_ctypes/libffi/src/frv/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/frv/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/xtensa/
Python-3.6.1/Modules/_ctypes/libffi/src/xtensa/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/xtensa/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/xtensa/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/aarch64/
Python-3.6.1/Modules/_ctypes/libffi/src/aarch64/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/aarch64/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/aarch64/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/cris/
Python-3.6.1/Modules/_ctypes/libffi/src/cris/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/cris/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/cris/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/moxie/
Python-3.6.1/Modules/_ctypes/libffi/src/moxie/eabi.S
Python-3.6.1/Modules/_ctypes/libffi/src/moxie/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/moxie/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/nios2/
Python-3.6.1/Modules/_ctypes/libffi/src/nios2/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/nios2/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/nios2/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/prep_cif.c
Python-3.6.1/Modules/_ctypes/libffi/src/types.c
Python-3.6.1/Modules/_ctypes/libffi/src/closures.c
Python-3.6.1/Modules/_ctypes/libffi/src/sh/
Python-3.6.1/Modules/_ctypes/libffi/src/sh/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/sh/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/sh/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/alpha/
Python-3.6.1/Modules/_ctypes/libffi/src/alpha/osf.S
Python-3.6.1/Modules/_ctypes/libffi/src/alpha/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/alpha/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/m68k/
Python-3.6.1/Modules/_ctypes/libffi/src/m68k/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/m68k/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/m68k/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/arc/
Python-3.6.1/Modules/_ctypes/libffi/src/arc/arcompact.S
Python-3.6.1/Modules/_ctypes/libffi/src/arc/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/arc/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/dlmalloc.c
Python-3.6.1/Modules/_ctypes/libffi/src/m88k/
Python-3.6.1/Modules/_ctypes/libffi/src/m88k/obsd.S
Python-3.6.1/Modules/_ctypes/libffi/src/m88k/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/m88k/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/java_raw_api.c
Python-3.6.1/Modules/_ctypes/libffi/src/debug.c
Python-3.6.1/Modules/_ctypes/libffi/src/x86/
Python-3.6.1/Modules/_ctypes/libffi/src/x86/darwin64.S
Python-3.6.1/Modules/_ctypes/libffi/src/x86/darwin.S
Python-3.6.1/Modules/_ctypes/libffi/src/x86/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/x86/win64.S
Python-3.6.1/Modules/_ctypes/libffi/src/x86/unix64.S
Python-3.6.1/Modules/_ctypes/libffi/src/x86/win32.S
Python-3.6.1/Modules/_ctypes/libffi/src/x86/ffi64.c
Python-3.6.1/Modules/_ctypes/libffi/src/x86/freebsd.S
Python-3.6.1/Modules/_ctypes/libffi/src/x86/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/x86/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/tile/
Python-3.6.1/Modules/_ctypes/libffi/src/tile/tile.S
Python-3.6.1/Modules/_ctypes/libffi/src/tile/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/tile/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/ia64/
Python-3.6.1/Modules/_ctypes/libffi/src/ia64/unix.S
Python-3.6.1/Modules/_ctypes/libffi/src/ia64/ia64_flags.h
Python-3.6.1/Modules/_ctypes/libffi/src/ia64/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/ia64/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/mips/
Python-3.6.1/Modules/_ctypes/libffi/src/mips/n32.S
Python-3.6.1/Modules/_ctypes/libffi/src/mips/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/mips/o32.S
Python-3.6.1/Modules/_ctypes/libffi/src/mips/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/m32r/
Python-3.6.1/Modules/_ctypes/libffi/src/m32r/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/m32r/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/m32r/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/vax/
Python-3.6.1/Modules/_ctypes/libffi/src/vax/elfbsd.S
Python-3.6.1/Modules/_ctypes/libffi/src/vax/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/vax/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/metag/
Python-3.6.1/Modules/_ctypes/libffi/src/metag/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/metag/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/metag/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/sparc/
Python-3.6.1/Modules/_ctypes/libffi/src/sparc/v8.S
Python-3.6.1/Modules/_ctypes/libffi/src/sparc/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/sparc/v9.S
Python-3.6.1/Modules/_ctypes/libffi/src/sparc/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/avr32/
Python-3.6.1/Modules/_ctypes/libffi/src/avr32/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/avr32/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/avr32/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/arm/
Python-3.6.1/Modules/_ctypes/libffi/src/arm/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/arm/gentramp.sh
Python-3.6.1/Modules/_ctypes/libffi/src/arm/trampoline.S
Python-3.6.1/Modules/_ctypes/libffi/src/arm/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/arm/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/bfin/
Python-3.6.1/Modules/_ctypes/libffi/src/bfin/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/bfin/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/bfin/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/sh64/
Python-3.6.1/Modules/_ctypes/libffi/src/sh64/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/sh64/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/sh64/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/pa/
Python-3.6.1/Modules/_ctypes/libffi/src/pa/hpux32.S
Python-3.6.1/Modules/_ctypes/libffi/src/pa/linux.S
Python-3.6.1/Modules/_ctypes/libffi/src/pa/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/pa/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/microblaze/
Python-3.6.1/Modules/_ctypes/libffi/src/microblaze/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/microblaze/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/microblaze/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/s390/
Python-3.6.1/Modules/_ctypes/libffi/src/s390/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/s390/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/s390/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/darwin.S
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/sysv.S
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/linux64_closure.S
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/ffi_linux64.c
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/asm.h
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/ffi_powerpc.h
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/aix.S
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/linux64.S
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/darwin_closure.S
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/ffi_sysv.c
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/aix_closure.S
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/ffi.c
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/ppc_closure.S
Python-3.6.1/Modules/_ctypes/libffi/src/powerpc/ffitarget.h
Python-3.6.1/Modules/_ctypes/libffi/src/raw_api.c
Python-3.6.1/Modules/_ctypes/libffi/doc/
Python-3.6.1/Modules/_ctypes/libffi/doc/libffi.texi
Python-3.6.1/Modules/_ctypes/libffi/doc/stamp-vti
Python-3.6.1/Modules/_ctypes/libffi/doc/libffi.info
Python-3.6.1/Modules/_ctypes/libffi/doc/version.texi
Python-3.6.1/Modules/_ctypes/libffi/Makefile.in
Python-3.6.1/Modules/_ctypes/libffi/libffi.pc.in
Python-3.6.1/Modules/_ctypes/libffi/configure
Python-3.6.1/Modules/_ctypes/libffi/m4/
Python-3.6.1/Modules/_ctypes/libffi/m4/ax_enable_builddir.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/lt~obsolete.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ltoptions.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ax_check_compile_flag.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ax_cc_maxopt.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ax_gcc_archflag.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ax_cflags_warn_all.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ax_configure_args.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/libtool.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ax_append_flag.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/asmcfi.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ax_gcc_x86_cpuid.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ltsugar.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ltversion.m4
Python-3.6.1/Modules/_ctypes/libffi/m4/ax_compiler_vendor.m4
Python-3.6.1/Modules/_ctypes/libffi/aclocal.m4
Python-3.6.1/Modules/_ctypes/libffi/msvcc.sh
Python-3.6.1/Modules/_ctypes/libffi/fficonfig.py.in
Python-3.6.1/Modules/_ctypes/libffi/LICENSE
Python-3.6.1/Modules/_ctypes/libffi/configure.ac
Python-3.6.1/Modules/_ctypes/libffi/config.sub
Python-3.6.1/Modules/_ctypes/libffi/README
Python-3.6.1/Modules/_ctypes/libffi/fficonfig.h.in
Python-3.6.1/Modules/_ctypes/libffi/config.guess
Python-3.6.1/Modules/_ctypes/libffi/compile
Python-3.6.1/Modules/_ctypes/libffi/ChangeLog
Python-3.6.1/Modules/_ctypes/libffi/ChangeLog.v1
Python-3.6.1/Modules/_ctypes/libffi/mdate-sh
Python-3.6.1/Modules/_ctypes/libffi/man/
Python-3.6.1/Modules/_ctypes/libffi/man/ffi_call.3
Python-3.6.1/Modules/_ctypes/libffi/man/Makefile.am
Python-3.6.1/Modules/_ctypes/libffi/man/ffi_prep_cif_var.3
Python-3.6.1/Modules/_ctypes/libffi/man/ffi.3
Python-3.6.1/Modules/_ctypes/libffi/man/Makefile.in
Python-3.6.1/Modules/_ctypes/libffi/man/ffi_prep_cif.3
Python-3.6.1/Modules/_ctypes/libffi/libffi.xcodeproj/
Python-3.6.1/Modules/_ctypes/libffi/libffi.xcodeproj/project.pbxproj
Python-3.6.1/Modules/_ctypes/libffi/missing
Python-3.6.1/Modules/_ctypes/libffi/libtool-ldflags
Python-3.6.1/Modules/_ctypes/libffi/texinfo.tex
Python-3.6.1/Modules/_ctypes/libffi/include/
Python-3.6.1/Modules/_ctypes/libffi/include/ffi_common.h
Python-3.6.1/Modules/_ctypes/libffi/include/Makefile.am
Python-3.6.1/Modules/_ctypes/libffi/include/Makefile.in
Python-3.6.1/Modules/_ctypes/libffi/include/ffi.h.in
Python-3.6.1/Modules/_ctypes/libffi/testsuite/
Python-3.6.1/Modules/_ctypes/libffi/testsuite/Makefile.am
Python-3.6.1/Modules/_ctypes/libffi/testsuite/Makefile.in
Python-3.6.1/Modules/_ctypes/libffi/testsuite/lib/
Python-3.6.1/Modules/_ctypes/libffi/testsuite/lib/target-libpath.exp
Python-3.6.1/Modules/_ctypes/libffi/testsuite/lib/wrapper.exp
Python-3.6.1/Modules/_ctypes/libffi/testsuite/lib/libffi.exp
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/float_va.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn0.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/struct2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_sshortchar.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_9byte1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_float.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/va_struct3.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn3.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_ulonglong.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_5byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_uint_va.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn6.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_sshort.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_7byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/strlen3.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct5.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_ul.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/closure_loc_fn0.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_ushort.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_24byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/problem1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_longdouble.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_uchar.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_double.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/struct7.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_20byte1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct6.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_pointer.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_16byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/pyobjc-tc.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_dbls_struct.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_7_1_byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/strlen.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/va_1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/float1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_longdouble_va.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_sint32.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_double.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/va_struct2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/struct9.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_8byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_dbl.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_pointer_stack.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_sint16.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_1_1byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_5_1_byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_double_va.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_uchar_va.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/many.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_ushort_va.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/struct4.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_fl.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/float3.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_19byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_sshort.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_fl1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/stret_medium2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_ll.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/struct6.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/err_bad_typedef.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_sint.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/uninitialized.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/ffitest.h
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_float.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct7.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/float.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_ldl.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_9byte2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct4.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_fl3.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/struct5.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/strlen2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_uint64.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/huge_struct.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_2byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_64byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_uint.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/stret_large.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_3byte2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/negint.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_schar.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_uchar.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_pointer.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/struct1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_ushortchar.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/err_bad_abi.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/testclosure.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_longdouble_split.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/closure_simple.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_uc.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn4.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn5.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_4_1byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct8.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/promotion.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/strlen4.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/va_struct1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_ll1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_ushort.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct9.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_longdouble.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_sc.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_sint64.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct11.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_3byte1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_dbl2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/many2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_6byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_uint16.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct3.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/stret_large2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/struct8.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/call.exp
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_ulong_va.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct10.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/struct3.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_struct_va1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_schar.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_sl.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_3_1byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_dbl1.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_12byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_18byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/float4.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_uint32.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_6_1_byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/float2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_4byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/cls_20byte.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/return_fl2.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/unwindtest.cc
Python-3.6.1/Modules/_ctypes/libffi/testsuite/libffi.call/stret_medium.c
Python-3.6.1/Modules/_ctypes/libffi/testsuite/config/
Python-3.6.1/Modules/_ctypes/libffi/testsuite/config/default.exp
Python-3.6.1/Modules/_ctypes/libffi/acinclude.m4
Python-3.6.1/Modules/_ctypes/libffi/ChangeLog.libgcj
Python-3.6.1/Modules/_ctypes/libffi/ltmain.sh
Python-3.6.1/Modules/_ctypes/libffi/generate-darwin-source-and-headers.py
Python-3.6.1/Modules/_ctypes/libffi/ChangeLog.libffi
Python-3.6.1/Modules/_ctypes/libffi/ChangeLog.libffi-3.1
Python-3.6.1/Modules/_ctypes/_ctypes.c
Python-3.6.1/Modules/zipimport.c
Python-3.6.1/Modules/_testbuffer.c
Python-3.6.1/Modules/winreparse.h
Python-3.6.1/Modules/README
Python-3.6.1/Modules/resource.c
Python-3.6.1/Modules/_threadmodule.c
Python-3.6.1/Modules/expat/
Python-3.6.1/Modules/expat/amigaconfig.h
Python-3.6.1/Modules/expat/expat_external.h
Python-3.6.1/Modules/expat/internal.h
Python-3.6.1/Modules/expat/pyexpatns.h
Python-3.6.1/Modules/expat/xmltok.h
Python-3.6.1/Modules/expat/asciitab.h
Python-3.6.1/Modules/expat/macconfig.h
Python-3.6.1/Modules/expat/xmlrole.c
Python-3.6.1/Modules/expat/ascii.h
Python-3.6.1/Modules/expat/utf8tab.h
Python-3.6.1/Modules/expat/watcomconfig.h
Python-3.6.1/Modules/expat/winconfig.h
Python-3.6.1/Modules/expat/xmltok_ns.c
Python-3.6.1/Modules/expat/iasciitab.h
Python-3.6.1/Modules/expat/xmltok_impl.c
Python-3.6.1/Modules/expat/nametab.h
Python-3.6.1/Modules/expat/COPYING
Python-3.6.1/Modules/expat/expat.h
Python-3.6.1/Modules/expat/expat_config.h
Python-3.6.1/Modules/expat/xmlrole.h
Python-3.6.1/Modules/expat/xmlparse.c
Python-3.6.1/Modules/expat/xmltok.c
Python-3.6.1/Modules/expat/latin1tab.h
Python-3.6.1/Modules/expat/xmltok_impl.h
Python-3.6.1/Modules/mmapmodule.c
Python-3.6.1/Modules/getnameinfo.c
Python-3.6.1/Modules/_localemodule.c
Python-3.6.1/Modules/_json.c
Python-3.6.1/Modules/_ssl.c
Python-3.6.1/Modules/xxmodule.c
Python-3.6.1/Modules/_math.c
Python-3.6.1/Modules/signalmodule.c
Python-3.6.1/Modules/fpetestmodule.c
Python-3.6.1/Modules/_sre.c
Python-3.6.1/Modules/termios.c
Python-3.6.1/Modules/Setup.config.in
Python-3.6.1/Modules/xxsubtype.c
Python-3.6.1/Modules/selectmodule.c
Python-3.6.1/Modules/clinic/
Python-3.6.1/Modules/clinic/spwdmodule.c.h
Python-3.6.1/Modules/clinic/_codecsmodule.c.h
Python-3.6.1/Modules/clinic/_hashopenssl.c.h
Python-3.6.1/Modules/clinic/binascii.c.h
Python-3.6.1/Modules/clinic/audioop.c.h
Python-3.6.1/Modules/clinic/cmathmodule.c.h
Python-3.6.1/Modules/clinic/_opcode.c.h
Python-3.6.1/Modules/clinic/pwdmodule.c.h
Python-3.6.1/Modules/clinic/unicodedata.c.h
Python-3.6.1/Modules/clinic/grpmodule.c.h
Python-3.6.1/Modules/clinic/arraymodule.c.h
Python-3.6.1/Modules/clinic/_lzmamodule.c.h
Python-3.6.1/Modules/clinic/_bz2module.c.h
Python-3.6.1/Modules/clinic/_weakref.c.h
Python-3.6.1/Modules/clinic/_gdbmmodule.c.h
Python-3.6.1/Modules/clinic/_cursesmodule.c.h
Python-3.6.1/Modules/clinic/_ssl.c.h
Python-3.6.1/Modules/clinic/sha1module.c.h
Python-3.6.1/Modules/clinic/_dbmmodule.c.h
Python-3.6.1/Modules/clinic/signalmodule.c.h
Python-3.6.1/Modules/clinic/md5module.c.h
Python-3.6.1/Modules/clinic/_pickle.c.h
Python-3.6.1/Modules/clinic/_cryptmodule.c.h
Python-3.6.1/Modules/clinic/fcntlmodule.c.h
Python-3.6.1/Modules/clinic/sha512module.c.h
Python-3.6.1/Modules/clinic/pyexpat.c.h
Python-3.6.1/Modules/clinic/_sre.c.h
Python-3.6.1/Modules/clinic/posixmodule.c.h
Python-3.6.1/Modules/clinic/_datetimemodule.c.h
Python-3.6.1/Modules/clinic/_elementtree.c.h
Python-3.6.1/Modules/clinic/sha256module.c.h
Python-3.6.1/Modules/clinic/_tkinter.c.h
Python-3.6.1/Modules/clinic/zlibmodule.c.h
Python-3.6.1/Modules/clinic/_winapi.c.h
Python-3.6.1/Modules/clinic/_asynciomodule.c.h
Python-3.6.1/Modules/_hashopenssl.c
Python-3.6.1/Modules/grpmodule.c
Python-3.6.1/Modules/sre.h
Python-3.6.1/Modules/_gdbmmodule.c
Python-3.6.1/Modules/makesetup
Python-3.6.1/Modules/_scproxy.c
Python-3.6.1/Modules/parsermodule.c
Python-3.6.1/Modules/_tkinter.c
Python-3.6.1/Modules/_weakref.c
Python-3.6.1/Modules/pyexpat.c
Python-3.6.1/Modules/_struct.c
Python-3.6.1/Modules/timemodule.c
Python-3.6.1/Modules/arraymodule.c
Python-3.6.1/Modules/_pickle.c
Python-3.6.1/Modules/ld_so_aix.in
Python-3.6.1/Modules/makexp_aix
Python-3.6.1/Modules/itertoolsmodule.c
Python-3.6.1/Modules/pwdmodule.c
Python-3.6.1/Modules/posixmodule.h
Python-3.6.1/Modules/Setup.dist
Python-3.6.1/Modules/socketmodule.c
Python-3.6.1/Modules/unicodedata.c
Python-3.6.1/Modules/ossaudiodev.c
Python-3.6.1/Modules/sha512module.c
Python-3.6.1/Modules/_ssl_data.h
Python-3.6.1/Modules/hashtable.h
Python-3.6.1/Modules/socketmodule.h
Python-3.6.1/Modules/_functoolsmodule.c
Python-3.6.1/Modules/getbuildinfo.c
Python-3.6.1/Modules/_randommodule.c
Python-3.6.1/Modules/_lsprof.c
Python-3.6.1/Modules/symtablemodule.c
Python-3.6.1/Modules/_testmultiphase.c
Python-3.6.1/Modules/_testimportmultiple.c
Python-3.6.1/Modules/_testcapimodule.c
Python-3.6.1/Modules/posixmodule.c
Python-3.6.1/Modules/_tracemalloc.c
Python-3.6.1/Modules/_cursesmodule.c
Python-3.6.1/Modules/overlapped.c
Python-3.6.1/Modules/main.c
Python-3.6.1/Modules/_posixsubprocess.c
Python-3.6.1/Modules/ar_beos
Python-3.6.1/Modules/_io/
Python-3.6.1/Modules/_io/stringio.c
Python-3.6.1/Modules/_io/bytesio.c
Python-3.6.1/Modules/_io/_iomodule.h
Python-3.6.1/Modules/_io/fileio.c
Python-3.6.1/Modules/_io/textio.c
Python-3.6.1/Modules/_io/bufferedio.c
Python-3.6.1/Modules/_io/clinic/
Python-3.6.1/Modules/_io/clinic/_iomodule.c.h
Python-3.6.1/Modules/_io/clinic/bufferedio.c.h
Python-3.6.1/Modules/_io/clinic/bytesio.c.h
Python-3.6.1/Modules/_io/clinic/fileio.c.h
Python-3.6.1/Modules/_io/clinic/textio.c.h
Python-3.6.1/Modules/_io/clinic/stringio.c.h
Python-3.6.1/Modules/_io/clinic/winconsoleio.c.h
Python-3.6.1/Modules/_io/clinic/iobase.c.h
Python-3.6.1/Modules/_io/winconsoleio.c
Python-3.6.1/Modules/_io/_iomodule.c
Python-3.6.1/Modules/_io/iobase.c
Python-3.6.1/Modules/unicodedata_db.h
Python-3.6.1/Modules/sha256module.c
Python-3.6.1/Modules/cmathmodule.c
Python-3.6.1/Modules/audioop.c
Python-3.6.1/Makefile.pre.in
Python-3.6.1/Tools/
Python-3.6.1/Tools/importbench/
Python-3.6.1/Tools/importbench/importbench.py
Python-3.6.1/Tools/importbench/README
Python-3.6.1/Tools/pynche/
Python-3.6.1/Tools/pynche/pynche.pyw
Python-3.6.1/Tools/pynche/ListViewer.py
Python-3.6.1/Tools/pynche/StripViewer.py
Python-3.6.1/Tools/pynche/pynche
Python-3.6.1/Tools/pynche/ColorDB.py
Python-3.6.1/Tools/pynche/websafe.txt
Python-3.6.1/Tools/pynche/ChipViewer.py
Python-3.6.1/Tools/pynche/__init__.py
Python-3.6.1/Tools/pynche/README
Python-3.6.1/Tools/pynche/html40colors.txt
Python-3.6.1/Tools/pynche/webcolors.txt
Python-3.6.1/Tools/pynche/DetailsViewer.py
Python-3.6.1/Tools/pynche/TextViewer.py
Python-3.6.1/Tools/pynche/PyncheWidget.py
Python-3.6.1/Tools/pynche/namedcolors.txt
Python-3.6.1/Tools/pynche/TypeinViewer.py
Python-3.6.1/Tools/pynche/pyColorChooser.py
Python-3.6.1/Tools/pynche/Main.py
Python-3.6.1/Tools/pynche/Switchboard.py
Python-3.6.1/Tools/pynche/X/
Python-3.6.1/Tools/pynche/X/xlicense.txt
Python-3.6.1/Tools/pynche/X/rgb.txt
Python-3.6.1/Tools/demo/
Python-3.6.1/Tools/demo/queens.py
Python-3.6.1/Tools/demo/markov.py
Python-3.6.1/Tools/demo/beer.py
Python-3.6.1/Tools/demo/rpython.py
Python-3.6.1/Tools/demo/vector.py
Python-3.6.1/Tools/demo/life.py
Python-3.6.1/Tools/demo/sortvisu.py
Python-3.6.1/Tools/demo/eiffel.py
Python-3.6.1/Tools/demo/ss1.py
Python-3.6.1/Tools/demo/hanoi.py
Python-3.6.1/Tools/demo/README
Python-3.6.1/Tools/demo/redemo.py
Python-3.6.1/Tools/demo/rpythond.py
Python-3.6.1/Tools/demo/mcast.py
Python-3.6.1/Tools/stringbench/
Python-3.6.1/Tools/stringbench/stringbench.py
Python-3.6.1/Tools/stringbench/README
Python-3.6.1/Tools/unittestgui/
Python-3.6.1/Tools/unittestgui/unittestgui.py
Python-3.6.1/Tools/unittestgui/README.txt
Python-3.6.1/Tools/ssl/
Python-3.6.1/Tools/ssl/sslspeed.vcxproj
Python-3.6.1/Tools/ssl/make_ssl_data.py
Python-3.6.1/Tools/ssl/test_multiple_versions.py
Python-3.6.1/Tools/unicode/
Python-3.6.1/Tools/unicode/listcodecs.py
Python-3.6.1/Tools/unicode/genwincodecs.bat
Python-3.6.1/Tools/unicode/gencodec.py
Python-3.6.1/Tools/unicode/python-mappings/
Python-3.6.1/Tools/unicode/python-mappings/KOI8-U.TXT
Python-3.6.1/Tools/unicode/python-mappings/CP273.TXT
Python-3.6.1/Tools/unicode/python-mappings/TIS-620.TXT
Python-3.6.1/Tools/unicode/python-mappings/CP1140.TXT
Python-3.6.1/Tools/unicode/genwincodec.py
Python-3.6.1/Tools/unicode/Makefile
Python-3.6.1/Tools/unicode/comparecodecs.py
Python-3.6.1/Tools/unicode/makeunicodedata.py
Python-3.6.1/Tools/unicode/gencjkcodecs.py
Python-3.6.1/Tools/unicode/mkstringprep.py
Python-3.6.1/Tools/i18n/
Python-3.6.1/Tools/i18n/makelocalealias.py
Python-3.6.1/Tools/i18n/msgfmt.py
Python-3.6.1/Tools/i18n/pygettext.py
Python-3.6.1/Tools/iobench/
Python-3.6.1/Tools/iobench/iobench.py
Python-3.6.1/Tools/tz/
Python-3.6.1/Tools/tz/zdump.py
Python-3.6.1/Tools/README
Python-3.6.1/Tools/msi/
Python-3.6.1/Tools/msi/msi.targets
Python-3.6.1/Tools/msi/make_zip.py
Python-3.6.1/Tools/msi/build.bat
Python-3.6.1/Tools/msi/doc/
Python-3.6.1/Tools/msi/doc/doc_files.wxs
Python-3.6.1/Tools/msi/doc/doc_en-US.wxl_template
Python-3.6.1/Tools/msi/doc/doc.wixproj
Python-3.6.1/Tools/msi/doc/doc.wxs
Python-3.6.1/Tools/msi/doc/doc_no_files.wxs
Python-3.6.1/Tools/msi/get_externals.bat
Python-3.6.1/Tools/msi/lib/
Python-3.6.1/Tools/msi/lib/lib_pdb.wixproj
Python-3.6.1/Tools/msi/lib/lib_d.wxs
Python-3.6.1/Tools/msi/lib/lib_en-US.wxl
Python-3.6.1/Tools/msi/lib/lib_d.wixproj
Python-3.6.1/Tools/msi/lib/lib.wixproj
Python-3.6.1/Tools/msi/lib/lib_files.wxs
Python-3.6.1/Tools/msi/lib/lib_pdb.wxs
Python-3.6.1/Tools/msi/lib/lib.wxs
Python-3.6.1/Tools/msi/msi.props
Python-3.6.1/Tools/msi/core/
Python-3.6.1/Tools/msi/core/core_d.wixproj
Python-3.6.1/Tools/msi/core/core_files.wxs
Python-3.6.1/Tools/msi/core/core.wixproj
Python-3.6.1/Tools/msi/core/core_en-US.wxl
Python-3.6.1/Tools/msi/core/core.wxs
Python-3.6.1/Tools/msi/core/core_pdb.wxs
Python-3.6.1/Tools/msi/core/core_pdb.wixproj
Python-3.6.1/Tools/msi/core/core_d.wxs
Python-3.6.1/Tools/msi/pip/
Python-3.6.1/Tools/msi/pip/pip.wxs
Python-3.6.1/Tools/msi/pip/pip.wixproj
Python-3.6.1/Tools/msi/pip/pip_en-US.wxl
Python-3.6.1/Tools/msi/csv_to_wxs.py
Python-3.6.1/Tools/msi/tcltk/
Python-3.6.1/Tools/msi/tcltk/tcltk_d.wxs
Python-3.6.1/Tools/msi/tcltk/tcltk_reg.wxs
Python-3.6.1/Tools/msi/tcltk/tcltk_files.wxs
Python-3.6.1/Tools/msi/tcltk/tcltk_d.wixproj
Python-3.6.1/Tools/msi/tcltk/tcltk_pdb.wxs
Python-3.6.1/Tools/msi/tcltk/tcltk_pdb.wixproj
Python-3.6.1/Tools/msi/tcltk/tcltk.wxs
Python-3.6.1/Tools/msi/tcltk/tcltk.wixproj
Python-3.6.1/Tools/msi/tcltk/tcltk_en-US.wxl_template
Python-3.6.1/Tools/msi/generate_md5.py
Python-3.6.1/Tools/msi/exe/
Python-3.6.1/Tools/msi/exe/exe.wixproj
Python-3.6.1/Tools/msi/exe/exe_pdb.wxs
Python-3.6.1/Tools/msi/exe/exe_d.wixproj
Python-3.6.1/Tools/msi/exe/crtlicense.txt
Python-3.6.1/Tools/msi/exe/exe_d.wxs
Python-3.6.1/Tools/msi/exe/exe_files.wxs
Python-3.6.1/Tools/msi/exe/exe_en-US.wxl_template
Python-3.6.1/Tools/msi/exe/exe.wxs
Python-3.6.1/Tools/msi/exe/exe_reg.wxs
Python-3.6.1/Tools/msi/exe/exe_pdb.wixproj
Python-3.6.1/Tools/msi/uploadrelease.bat
Python-3.6.1/Tools/msi/buildrelease.bat
Python-3.6.1/Tools/msi/bundle/
Python-3.6.1/Tools/msi/bundle/bootstrap/
Python-3.6.1/Tools/msi/bundle/bootstrap/pythonba.vcxproj
Python-3.6.1/Tools/msi/bundle/bootstrap/pythonba.cpp
Python-3.6.1/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
Python-3.6.1/Tools/msi/bundle/bootstrap/resource.h
Python-3.6.1/Tools/msi/bundle/bootstrap/pch.h
Python-3.6.1/Tools/msi/bundle/bootstrap/pythonba.def
Python-3.6.1/Tools/msi/bundle/bootstrap/LICENSE.txt
Python-3.6.1/Tools/msi/bundle/bootstrap/pch.cpp
Python-3.6.1/Tools/msi/bundle/bootstrap/pythonba.sln
Python-3.6.1/Tools/msi/bundle/bundle.wxl
Python-3.6.1/Tools/msi/bundle/releaselocal.wixproj
Python-3.6.1/Tools/msi/bundle/SideBar.png
Python-3.6.1/Tools/msi/bundle/bundle.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/
Python-3.6.1/Tools/msi/bundle/packagegroups/tools.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/test.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/core.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/pip.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/crt.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/doc.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/tcltk.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/postinstall.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/exe.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/launcher.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/packageinstall.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/dev.wxs
Python-3.6.1/Tools/msi/bundle/packagegroups/lib.wxs
Python-3.6.1/Tools/msi/bundle/Default.wxl
Python-3.6.1/Tools/msi/bundle/snapshot.wixproj
Python-3.6.1/Tools/msi/bundle/full.wixproj
Python-3.6.1/Tools/msi/bundle/bundle.targets
Python-3.6.1/Tools/msi/bundle/releaseweb.wixproj
Python-3.6.1/Tools/msi/bundle/Default.thm
Python-3.6.1/Tools/msi/testrelease.bat
Python-3.6.1/Tools/msi/path/
Python-3.6.1/Tools/msi/path/path.wixproj
Python-3.6.1/Tools/msi/path/path.wxs
Python-3.6.1/Tools/msi/path/path_en-US.wxl
Python-3.6.1/Tools/msi/dev/
Python-3.6.1/Tools/msi/dev/dev_files.wxs
Python-3.6.1/Tools/msi/dev/dev_d.wxs
Python-3.6.1/Tools/msi/dev/dev_en-US.wxl
Python-3.6.1/Tools/msi/dev/dev.wixproj
Python-3.6.1/Tools/msi/dev/dev_d.wixproj
Python-3.6.1/Tools/msi/dev/dev.wxs
Python-3.6.1/Tools/msi/common.wxs
Python-3.6.1/Tools/msi/common_en-US.wxl_template
Python-3.6.1/Tools/msi/README.txt
Python-3.6.1/Tools/msi/launcher/
Python-3.6.1/Tools/msi/launcher/launcher.wixproj
Python-3.6.1/Tools/msi/launcher/launcher_en-US.wxl
Python-3.6.1/Tools/msi/launcher/launcher_files.wxs
Python-3.6.1/Tools/msi/launcher/launcher_reg.wxs
Python-3.6.1/Tools/msi/launcher/launcher.wxs
Python-3.6.1/Tools/msi/distutils.command.bdist_wininst.py
Python-3.6.1/Tools/msi/wix.props
Python-3.6.1/Tools/msi/purge.py
Python-3.6.1/Tools/msi/test/
Python-3.6.1/Tools/msi/test/test.wixproj
Python-3.6.1/Tools/msi/test/test_d.wxs
Python-3.6.1/Tools/msi/test/test_pdb.wxs
Python-3.6.1/Tools/msi/test/test.wxs
Python-3.6.1/Tools/msi/test/test_en-US.wxl
Python-3.6.1/Tools/msi/test/test_pdb.wixproj
Python-3.6.1/Tools/msi/test/test_files.wxs
Python-3.6.1/Tools/msi/test/test_d.wixproj
Python-3.6.1/Tools/msi/make_zip.proj
Python-3.6.1/Tools/msi/tools/
Python-3.6.1/Tools/msi/tools/tools.wxs
Python-3.6.1/Tools/msi/tools/tools_files.wxs
Python-3.6.1/Tools/msi/tools/tools_en-US.wxl
Python-3.6.1/Tools/msi/tools/tools.wixproj
Python-3.6.1/Tools/msi/uploadrelease.proj
Python-3.6.1/Tools/clinic/
Python-3.6.1/Tools/clinic/clinic_test.py
Python-3.6.1/Tools/clinic/clinic.py
Python-3.6.1/Tools/clinic/cpp.py
Python-3.6.1/Tools/nuget/
Python-3.6.1/Tools/nuget/build.bat
Python-3.6.1/Tools/nuget/pythonx86.nuspec
Python-3.6.1/Tools/nuget/make_pkg.proj
Python-3.6.1/Tools/nuget/python.nuspec
Python-3.6.1/Tools/buildbot/
Python-3.6.1/Tools/buildbot/test.bat
Python-3.6.1/Tools/buildbot/build.bat
Python-3.6.1/Tools/buildbot/clean.bat
Python-3.6.1/Tools/buildbot/buildmsi.bat
Python-3.6.1/Tools/test2to3/
Python-3.6.1/Tools/test2to3/setup.py
Python-3.6.1/Tools/test2to3/README
Python-3.6.1/Tools/test2to3/test2to3/
Python-3.6.1/Tools/test2to3/test2to3/hello.py
Python-3.6.1/Tools/test2to3/test2to3/__init__.py
Python-3.6.1/Tools/test2to3/test/
Python-3.6.1/Tools/test2to3/test/test_foo.py
Python-3.6.1/Tools/test2to3/test/runtests.py
Python-3.6.1/Tools/test2to3/maintest.py
Python-3.6.1/Tools/hg/
Python-3.6.1/Tools/hg/hgtouch.py
Python-3.6.1/Tools/scripts/
Python-3.6.1/Tools/scripts/pyvenv
Python-3.6.1/Tools/scripts/untabify.py
Python-3.6.1/Tools/scripts/pindent.py
Python-3.6.1/Tools/scripts/pdeps.py
Python-3.6.1/Tools/scripts/linktree.py
Python-3.6.1/Tools/scripts/abitype.py
Python-3.6.1/Tools/scripts/make_ctype.py
Python-3.6.1/Tools/scripts/mkreal.py
Python-3.6.1/Tools/scripts/patchcheck.py
Python-3.6.1/Tools/scripts/import_diagnostics.py
Python-3.6.1/Tools/scripts/pysource.py
Python-3.6.1/Tools/scripts/byteyears.py
Python-3.6.1/Tools/scripts/copytime.py
Python-3.6.1/Tools/scripts/parseentities.py
Python-3.6.1/Tools/scripts/dutree.doc
Python-3.6.1/Tools/scripts/eptags.py
Python-3.6.1/Tools/scripts/mailerdaemon.py
Python-3.6.1/Tools/scripts/objgraph.py
Python-3.6.1/Tools/scripts/pickle2db.py
Python-3.6.1/Tools/scripts/db2pickle.py
Python-3.6.1/Tools/scripts/lll.py
Python-3.6.1/Tools/scripts/fixheader.py
Python-3.6.1/Tools/scripts/ndiff.py
Python-3.6.1/Tools/scripts/md5sum.py
Python-3.6.1/Tools/scripts/2to3
Python-3.6.1/Tools/scripts/google.py
Python-3.6.1/Tools/scripts/find_recursionlimit.py
Python-3.6.1/Tools/scripts/which.py
Python-3.6.1/Tools/scripts/byext.py
Python-3.6.1/Tools/scripts/findlinksto.py
Python-3.6.1/Tools/scripts/treesync.py
Python-3.6.1/Tools/scripts/README
Python-3.6.1/Tools/scripts/texi2html.py
Python-3.6.1/Tools/scripts/rgrep.py
Python-3.6.1/Tools/scripts/combinerefs.py
Python-3.6.1/Tools/scripts/pathfix.py
Python-3.6.1/Tools/scripts/highlight.py
Python-3.6.1/Tools/scripts/fixnotice.py
Python-3.6.1/Tools/scripts/run_tests.py
Python-3.6.1/Tools/scripts/lfcr.py
Python-3.6.1/Tools/scripts/find-uname.py
Python-3.6.1/Tools/scripts/suff.py
Python-3.6.1/Tools/scripts/crlf.py
Python-3.6.1/Tools/scripts/ifdef.py
Python-3.6.1/Tools/scripts/ptags.py
Python-3.6.1/Tools/scripts/gprof2html.py
Python-3.6.1/Tools/scripts/finddiv.py
Python-3.6.1/Tools/scripts/svneol.py
Python-3.6.1/Tools/scripts/cleanfuture.py
Python-3.6.1/Tools/scripts/reindent.py
Python-3.6.1/Tools/scripts/parse_html5_entities.py
Python-3.6.1/Tools/scripts/fixdiv.py
Python-3.6.1/Tools/scripts/dutree.py
Python-3.6.1/Tools/scripts/get-remote-certificate.py
Python-3.6.1/Tools/scripts/nm2def.py
Python-3.6.1/Tools/scripts/findnocoding.py
Python-3.6.1/Tools/scripts/win_add2path.py
Python-3.6.1/Tools/scripts/reindent-rst.py
Python-3.6.1/Tools/scripts/h2py.py
Python-3.6.1/Tools/scripts/serve.py
Python-3.6.1/Tools/scripts/generate_opcode_h.py
Python-3.6.1/Tools/scripts/fixcid.py
Python-3.6.1/Tools/scripts/pydoc3
Python-3.6.1/Tools/scripts/diff.py
Python-3.6.1/Tools/scripts/analyze_dxp.py
Python-3.6.1/Tools/scripts/fixps.py
Python-3.6.1/Tools/scripts/checkpip.py
Python-3.6.1/Tools/scripts/idle3
Python-3.6.1/Tools/scripts/checkpyc.py
Python-3.6.1/Tools/pybench/
Python-3.6.1/Tools/pybench/pybench.py
Python-3.6.1/Tools/pybench/Arithmetic.py
Python-3.6.1/Tools/pybench/Constructs.py
Python-3.6.1/Tools/pybench/NewInstances.py
Python-3.6.1/Tools/pybench/Instances.py
Python-3.6.1/Tools/pybench/Unicode.py
Python-3.6.1/Tools/pybench/package/
Python-3.6.1/Tools/pybench/package/__init__.py
Python-3.6.1/Tools/pybench/package/submodule.py
Python-3.6.1/Tools/pybench/LICENSE
Python-3.6.1/Tools/pybench/Setup.py
Python-3.6.1/Tools/pybench/Lookups.py
Python-3.6.1/Tools/pybench/README
Python-3.6.1/Tools/pybench/Calls.py
Python-3.6.1/Tools/pybench/Strings.py
Python-3.6.1/Tools/pybench/Exceptions.py
Python-3.6.1/Tools/pybench/Lists.py
Python-3.6.1/Tools/pybench/With.py
Python-3.6.1/Tools/pybench/systimes.py
Python-3.6.1/Tools/pybench/Dict.py
Python-3.6.1/Tools/pybench/Numbers.py
Python-3.6.1/Tools/pybench/Imports.py
Python-3.6.1/Tools/pybench/CommandLine.py
Python-3.6.1/Tools/pybench/clockres.py
Python-3.6.1/Tools/pybench/Tuples.py
Python-3.6.1/Tools/parser/
Python-3.6.1/Tools/parser/unparse.py
Python-3.6.1/Tools/ccbench/
Python-3.6.1/Tools/ccbench/ccbench.py
Python-3.6.1/Tools/gdb/
Python-3.6.1/Tools/gdb/libpython.py
Python-3.6.1/Tools/freeze/
Python-3.6.1/Tools/freeze/checkextensions.py
Python-3.6.1/Tools/freeze/hello.py
Python-3.6.1/Tools/freeze/winmakemakefile.py
Python-3.6.1/Tools/freeze/makeconfig.py
Python-3.6.1/Tools/freeze/makemakefile.py
Python-3.6.1/Tools/freeze/flag.py
Python-3.6.1/Tools/freeze/parsesetup.py
Python-3.6.1/Tools/freeze/bkfile.py
Python-3.6.1/Tools/freeze/README
Python-3.6.1/Tools/freeze/checkextensions_win32.py
Python-3.6.1/Tools/freeze/makefreeze.py
Python-3.6.1/Tools/freeze/extensions_win32.ini
Python-3.6.1/Tools/freeze/win32.html
Python-3.6.1/Tools/freeze/test/
Python-3.6.1/Tools/freeze/test/Makefile
Python-3.6.1/Tools/freeze/test/ok.py
Python-3.6.1/Tools/freeze/freeze.py
Python-3.6.1/PCbuild/
Python-3.6.1/PCbuild/_freeze_importlib.vcxproj
Python-3.6.1/PCbuild/pythoncore.vcxproj.filters
Python-3.6.1/PCbuild/_sqlite3.vcxproj
Python-3.6.1/PCbuild/tix.vcxproj
Python-3.6.1/PCbuild/select.vcxproj.filters
Python-3.6.1/PCbuild/_hashlib.vcxproj.filters
Python-3.6.1/PCbuild/pyexpat.vcxproj.filters
Python-3.6.1/PCbuild/_testconsole.vcxproj.filters
Python-3.6.1/PCbuild/_testbuffer.vcxproj
Python-3.6.1/PCbuild/pyproject.props
Python-3.6.1/PCbuild/build_env.bat
Python-3.6.1/PCbuild/_asyncio.vcxproj.filters
Python-3.6.1/PCbuild/pylauncher.vcxproj.filters
Python-3.6.1/PCbuild/_socket.vcxproj.filters
Python-3.6.1/PCbuild/tcltk.props
Python-3.6.1/PCbuild/tcl.vcxproj
Python-3.6.1/PCbuild/_elementtree.vcxproj
Python-3.6.1/PCbuild/build.bat
Python-3.6.1/PCbuild/clean.bat
Python-3.6.1/PCbuild/winsound.vcxproj.filters
Python-3.6.1/PCbuild/get_externals.bat
Python-3.6.1/PCbuild/_testimportmultiple.vcxproj.filters
Python-3.6.1/PCbuild/select.vcxproj
Python-3.6.1/PCbuild/prepare_ssl.bat
Python-3.6.1/PCbuild/winsound.vcxproj
Python-3.6.1/PCbuild/python.vcxproj
Python-3.6.1/PCbuild/liblzma.vcxproj
Python-3.6.1/PCbuild/_ctypes_test.vcxproj
Python-3.6.1/PCbuild/ssleay.vcxproj
Python-3.6.1/PCbuild/_hashlib.vcxproj
Python-3.6.1/PCbuild/_freeze_importlib.vcxproj.filters
Python-3.6.1/PCbuild/_overlapped.vcxproj.filters
Python-3.6.1/PCbuild/_msi.vcxproj.filters
Python-3.6.1/PCbuild/_testmultiphase.vcxproj.filters
Python-3.6.1/PCbuild/tk.vcxproj
Python-3.6.1/PCbuild/_ctypes.vcxproj.filters
Python-3.6.1/PCbuild/_lzma.vcxproj.filters
Python-3.6.1/PCbuild/python.vcxproj.filters
Python-3.6.1/PCbuild/sqlite3.vcxproj.filters
Python-3.6.1/PCbuild/_testembed.vcxproj
Python-3.6.1/PCbuild/pywlauncher.vcxproj
Python-3.6.1/PCbuild/idle.bat
Python-3.6.1/PCbuild/_sqlite3.vcxproj.filters
Python-3.6.1/PCbuild/_bz2.vcxproj.filters
Python-3.6.1/PCbuild/readme.txt
Python-3.6.1/PCbuild/_decimal.vcxproj.filters
Python-3.6.1/PCbuild/_tkinter.vcxproj.filters
Python-3.6.1/PCbuild/_elementtree.vcxproj.filters
Python-3.6.1/PCbuild/_testcapi.vcxproj.filters
Python-3.6.1/PCbuild/prepare_ssl.py
Python-3.6.1/PCbuild/env.bat
Python-3.6.1/PCbuild/python.props
Python-3.6.1/PCbuild/openssl.props
Python-3.6.1/PCbuild/rmpyc.py
Python-3.6.1/PCbuild/_overlapped.vcxproj
Python-3.6.1/PCbuild/_multiprocessing.vcxproj
Python-3.6.1/PCbuild/rt.bat
Python-3.6.1/PCbuild/_ssl.vcxproj.filters
Python-3.6.1/PCbuild/_testmultiphase.vcxproj
Python-3.6.1/PCbuild/_testcapi.vcxproj
Python-3.6.1/PCbuild/pcbuild.proj
Python-3.6.1/PCbuild/pylauncher.vcxproj
Python-3.6.1/PCbuild/unicodedata.vcxproj.filters
Python-3.6.1/PCbuild/_ssl.vcxproj
Python-3.6.1/PCbuild/_testbuffer.vcxproj.filters
Python-3.6.1/PCbuild/libeay.vcxproj
Python-3.6.1/PCbuild/unicodedata.vcxproj
Python-3.6.1/PCbuild/pcbuild.sln
Python-3.6.1/PCbuild/pyexpat.vcxproj
Python-3.6.1/PCbuild/pythonw.vcxproj.filters
Python-3.6.1/PCbuild/_socket.vcxproj
Python-3.6.1/PCbuild/_bz2.vcxproj
Python-3.6.1/PCbuild/_asyncio.vcxproj
Python-3.6.1/PCbuild/_testconsole.vcxproj
Python-3.6.1/PCbuild/field3.py
Python-3.6.1/PCbuild/_testembed.vcxproj.filters
Python-3.6.1/PCbuild/_tkinter.vcxproj
Python-3.6.1/PCbuild/_lzma.vcxproj
Python-3.6.1/PCbuild/xxlimited.vcxproj.filters
Python-3.6.1/PCbuild/_ctypes_test.vcxproj.filters
Python-3.6.1/PCbuild/pywlauncher.vcxproj.filters
Python-3.6.1/PCbuild/python3dll.vcxproj.filters
Python-3.6.1/PCbuild/_testimportmultiple.vcxproj
Python-3.6.1/PCbuild/_ctypes.vcxproj
Python-3.6.1/PCbuild/pyshellext.vcxproj.filters
Python-3.6.1/PCbuild/pythoncore.vcxproj
Python-3.6.1/PCbuild/_decimal.vcxproj
Python-3.6.1/PCbuild/sqlite3.vcxproj
Python-3.6.1/PCbuild/pyshellext.vcxproj
Python-3.6.1/PCbuild/_msi.vcxproj
Python-3.6.1/PCbuild/pythonw.vcxproj
Python-3.6.1/PCbuild/xxlimited.vcxproj
Python-3.6.1/PCbuild/_multiprocessing.vcxproj.filters
Python-3.6.1/PCbuild/python3dll.vcxproj
Python-3.6.1/install-sh
Python-3.6.1/setup.py
Python-3.6.1/.gitignore
Python-3.6.1/pyconfig.h.in
Python-3.6.1/Parser/
Python-3.6.1/Parser/acceler.c
Python-3.6.1/Parser/tokenizer.h
Python-3.6.1/Parser/pgen.c
Python-3.6.1/Parser/parsetok.c
Python-3.6.1/Parser/parser.h
Python-3.6.1/Parser/pgenmain.c
Python-3.6.1/Parser/Python.asdl
Python-3.6.1/Parser/myreadline.c
Python-3.6.1/Parser/node.c
Python-3.6.1/Parser/grammar.c
Python-3.6.1/Parser/metagrammar.c
Python-3.6.1/Parser/listnode.c
Python-3.6.1/Parser/parsetok_pgen.c
Python-3.6.1/Parser/grammar1.c
Python-3.6.1/Parser/tokenizer_pgen.c
Python-3.6.1/Parser/tokenizer.c
Python-3.6.1/Parser/asdl_c.py
Python-3.6.1/Parser/parser.c
Python-3.6.1/Parser/printgrammar.c
Python-3.6.1/Parser/asdl.py
Python-3.6.1/Parser/firstsets.c
Python-3.6.1/Parser/bitset.c
Python-3.6.1/configure
Python-3.6.1/aclocal.m4
Python-3.6.1/README.rst
Python-3.6.1/LICENSE
Python-3.6.1/Mac/
Python-3.6.1/Mac/Tools/
Python-3.6.1/Mac/Tools/pythonw.c
Python-3.6.1/Mac/Tools/plistlib_generate_testdata.py
Python-3.6.1/Mac/BuildScript/
Python-3.6.1/Mac/BuildScript/seticon.m
Python-3.6.1/Mac/BuildScript/resources/
Python-3.6.1/Mac/BuildScript/resources/License.rtf
Python-3.6.1/Mac/BuildScript/resources/Welcome.rtf
Python-3.6.1/Mac/BuildScript/resources/ReadMe.rtf
Python-3.6.1/Mac/BuildScript/resources/background.jpg
Python-3.6.1/Mac/BuildScript/resources/install_certificates.command
Python-3.6.1/Mac/BuildScript/issue19373_tk_8_5_15_source.patch
Python-3.6.1/Mac/BuildScript/build-installer.py
Python-3.6.1/Mac/BuildScript/README.txt
Python-3.6.1/Mac/BuildScript/scripts/
Python-3.6.1/Mac/BuildScript/scripts/postflight.documentation
Python-3.6.1/Mac/BuildScript/scripts/postflight.patch-profile
Python-3.6.1/Mac/BuildScript/scripts/postflight.ensurepip
Python-3.6.1/Mac/BuildScript/scripts/postflight.framework
Python-3.6.1/Mac/BuildScript/openssl_sdk_makedepend.patch
Python-3.6.1/Mac/Makefile.in
Python-3.6.1/Mac/Icons/
Python-3.6.1/Mac/Icons/ReadMe.txt
Python-3.6.1/Mac/Icons/Python Folder.icns
Python-3.6.1/Mac/Icons/PythonLauncher.icns
Python-3.6.1/Mac/Icons/IDLE.icns
Python-3.6.1/Mac/Icons/PythonSource.icns
Python-3.6.1/Mac/Icons/Disk Image.icns
Python-3.6.1/Mac/Icons/PythonCompiled.icns
Python-3.6.1/Mac/Resources/
Python-3.6.1/Mac/Resources/iconsrc/
Python-3.6.1/Mac/Resources/iconsrc/PythonSource.psd
Python-3.6.1/Mac/Resources/iconsrc/PythonCompiled.psd
Python-3.6.1/Mac/Resources/iconsrc/IDE.psd
Python-3.6.1/Mac/Resources/iconsrc/PythonWSource.psd
Python-3.6.1/Mac/Resources/iconsrc/PackageManager.psd
Python-3.6.1/Mac/Resources/iconsrc/PythonIcon.psd
Python-3.6.1/Mac/Resources/iconsrc/PythonApplet.psd
Python-3.6.1/Mac/Resources/app/
Python-3.6.1/Mac/Resources/app/Resources/
Python-3.6.1/Mac/Resources/app/Resources/PythonInterpreter.icns
Python-3.6.1/Mac/Resources/app/Resources/PythonApplet.icns
Python-3.6.1/Mac/Resources/app/Info.plist.in
Python-3.6.1/Mac/Resources/app/PkgInfo
Python-3.6.1/Mac/Resources/framework/
Python-3.6.1/Mac/Resources/framework/Info.plist.in
Python-3.6.1/Mac/README
Python-3.6.1/Mac/IDLE/
Python-3.6.1/Mac/IDLE/IDLE.app/
Python-3.6.1/Mac/IDLE/IDLE.app/Contents/
Python-3.6.1/Mac/IDLE/IDLE.app/Contents/Resources/
Python-3.6.1/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py
Python-3.6.1/Mac/IDLE/IDLE.app/Contents/Resources/IDLE.icns
Python-3.6.1/Mac/IDLE/IDLE.app/Contents/Resources/PythonSource.icns
Python-3.6.1/Mac/IDLE/IDLE.app/Contents/Resources/PythonCompiled.icns
Python-3.6.1/Mac/IDLE/IDLE.app/Contents/MacOS/
Python-3.6.1/Mac/IDLE/IDLE.app/Contents/MacOS/IDLE
Python-3.6.1/Mac/IDLE/IDLE.app/Contents/Info.plist
Python-3.6.1/Mac/IDLE/IDLE.app/Contents/PkgInfo
Python-3.6.1/Mac/Extras.install.py
Python-3.6.1/Mac/PythonLauncher/
Python-3.6.1/Mac/PythonLauncher/doscript.m
Python-3.6.1/Mac/PythonLauncher/doscript.h
Python-3.6.1/Mac/PythonLauncher/FileSettings.h
Python-3.6.1/Mac/PythonLauncher/PreferencesWindowController.h
Python-3.6.1/Mac/PythonLauncher/Makefile.in
Python-3.6.1/Mac/PythonLauncher/MyDocument.m
Python-3.6.1/Mac/PythonLauncher/factorySettings.plist
Python-3.6.1/Mac/PythonLauncher/MyDocument.h
Python-3.6.1/Mac/PythonLauncher/MyAppDelegate.m
Python-3.6.1/Mac/PythonLauncher/FileSettings.m
Python-3.6.1/Mac/PythonLauncher/MyAppDelegate.h
Python-3.6.1/Mac/PythonLauncher/PreferencesWindowController.m
Python-3.6.1/Mac/PythonLauncher/Info.plist.in
Python-3.6.1/Mac/PythonLauncher/English.lproj/
Python-3.6.1/Mac/PythonLauncher/English.lproj/MainMenu.nib/
Python-3.6.1/Mac/PythonLauncher/English.lproj/MainMenu.nib/info.nib
Python-3.6.1/Mac/PythonLauncher/English.lproj/MainMenu.nib/classes.nib
Python-3.6.1/Mac/PythonLauncher/English.lproj/MainMenu.nib/objects.nib
Python-3.6.1/Mac/PythonLauncher/English.lproj/MyDocument.nib/
Python-3.6.1/Mac/PythonLauncher/English.lproj/MyDocument.nib/info.nib
Python-3.6.1/Mac/PythonLauncher/English.lproj/MyDocument.nib/classes.nib
Python-3.6.1/Mac/PythonLauncher/English.lproj/MyDocument.nib/objects.nib
Python-3.6.1/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/
Python-3.6.1/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/info.nib
Python-3.6.1/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/classes.nib
Python-3.6.1/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/objects.nib
Python-3.6.1/Mac/PythonLauncher/English.lproj/Credits.rtf
Python-3.6.1/Mac/PythonLauncher/main.m
Python-3.6.1/Include/
Python-3.6.1/Include/namespaceobject.h
Python-3.6.1/Include/pyhash.h
Python-3.6.1/Include/accu.h
Python-3.6.1/Include/listobject.h
Python-3.6.1/Include/rangeobject.h
Python-3.6.1/Include/unicodeobject.h
Python-3.6.1/Include/pytime.h
Python-3.6.1/Include/pyport.h
Python-3.6.1/Include/pylifecycle.h
Python-3.6.1/Include/py_curses.h
Python-3.6.1/Include/parsetok.h
Python-3.6.1/Include/floatobject.h
Python-3.6.1/Include/intrcheck.h
Python-3.6.1/Include/pydtrace.d
Python-3.6.1/Include/bltinmodule.h
Python-3.6.1/Include/token.h
Python-3.6.1/Include/ceval.h
Python-3.6.1/Include/bytesobject.h
Python-3.6.1/Include/bytes_methods.h
Python-3.6.1/Include/Python-ast.h
Python-3.6.1/Include/dtoa.h
Python-3.6.1/Include/objimpl.h
Python-3.6.1/Include/classobject.h
Python-3.6.1/Include/pystrcmp.h
Python-3.6.1/Include/bytearrayobject.h
Python-3.6.1/Include/sliceobject.h
Python-3.6.1/Include/cellobject.h
Python-3.6.1/Include/complexobject.h
Python-3.6.1/Include/pyerrors.h
Python-3.6.1/Include/pythonrun.h
Python-3.6.1/Include/longintrepr.h
Python-3.6.1/Include/enumobject.h
Python-3.6.1/Include/eval.h
Python-3.6.1/Include/import.h
Python-3.6.1/Include/frameobject.h
Python-3.6.1/Include/boolobject.h
Python-3.6.1/Include/setobject.h
Python-3.6.1/Include/fileutils.h
Python-3.6.1/Include/ast.h
Python-3.6.1/Include/tupleobject.h
Python-3.6.1/Include/abstract.h
Python-3.6.1/Include/sysmodule.h
Python-3.6.1/Include/symtable.h
Python-3.6.1/Include/dictobject.h
Python-3.6.1/Include/errcode.h
Python-3.6.1/Include/pygetopt.h
Python-3.6.1/Include/pystrhex.h
Python-3.6.1/Include/Python.h
Python-3.6.1/Include/dynamic_annotations.h
Python-3.6.1/Include/osmodule.h
Python-3.6.1/Include/pythread.h
Python-3.6.1/Include/pydebug.h
Python-3.6.1/Include/pystate.h
Python-3.6.1/Include/pyexpat.h
Python-3.6.1/Include/pgenheaders.h
Python-3.6.1/Include/pymath.h
Python-3.6.1/Include/codecs.h
Python-3.6.1/Include/longobject.h
Python-3.6.1/Include/funcobject.h
Python-3.6.1/Include/bitset.h
Python-3.6.1/Include/node.h
Python-3.6.1/Include/fileobject.h
Python-3.6.1/Include/structseq.h
Python-3.6.1/Include/grammar.h
Python-3.6.1/Include/structmember.h
Python-3.6.1/Include/weakrefobject.h
Python-3.6.1/Include/pymacro.h
Python-3.6.1/Include/typeslots.h
Python-3.6.1/Include/metagrammar.h
Python-3.6.1/Include/marshal.h
Python-3.6.1/Include/datetime.h
Python-3.6.1/Include/osdefs.h
Python-3.6.1/Include/opcode.h
Python-3.6.1/Include/modsupport.h
Python-3.6.1/Include/odictobject.h
Python-3.6.1/Include/methodobject.h
Python-3.6.1/Include/compile.h
Python-3.6.1/Include/moduleobject.h
Python-3.6.1/Include/pyarena.h
Python-3.6.1/Include/pydtrace.h
Python-3.6.1/Include/pyfpe.h
Python-3.6.1/Include/pyatomic.h
Python-3.6.1/Include/descrobject.h
Python-3.6.1/Include/genobject.h
Python-3.6.1/Include/pyctype.h
Python-3.6.1/Include/pystrtod.h
Python-3.6.1/Include/patchlevel.h
Python-3.6.1/Include/code.h
Python-3.6.1/Include/pgen.h
Python-3.6.1/Include/pymem.h
Python-3.6.1/Include/pymacconfig.h
Python-3.6.1/Include/asdl.h
Python-3.6.1/Include/memoryobject.h
Python-3.6.1/Include/iterobject.h
Python-3.6.1/Include/ucnhash.h
Python-3.6.1/Include/graminit.h
Python-3.6.1/Include/warnings.h
Python-3.6.1/Include/object.h
Python-3.6.1/Include/pycapsule.h
Python-3.6.1/Include/traceback.h
Python-3.6.1/configure.ac
Python-3.6.1/PC/
Python-3.6.1/PC/icons/
Python-3.6.1/PC/icons/py.svg
Python-3.6.1/PC/icons/pyc.ico
Python-3.6.1/PC/icons/launcher.ico
Python-3.6.1/PC/icons/pyd.ico
Python-3.6.1/PC/icons/python.ico
Python-3.6.1/PC/icons/python.svg
Python-3.6.1/PC/icons/python.icns
Python-3.6.1/PC/icons/launcher.svg
Python-3.6.1/PC/icons/pythonw.icns
Python-3.6.1/PC/icons/pyd.icns
Python-3.6.1/PC/icons/setup.svg
Python-3.6.1/PC/icons/pythonw.ico
Python-3.6.1/PC/icons/py.icns
Python-3.6.1/PC/icons/pyd.svg
Python-3.6.1/PC/icons/setup.icns
Python-3.6.1/PC/icons/pythonw.svg
Python-3.6.1/PC/icons/setup.ico
Python-3.6.1/PC/icons/launcher.icns
Python-3.6.1/PC/icons/py.ico
Python-3.6.1/PC/icons/pyc.icns
Python-3.6.1/PC/icons/pyc.svg
Python-3.6.1/PC/errmap.h
Python-3.6.1/PC/bdist_wininst/
Python-3.6.1/PC/bdist_wininst/install.rc
Python-3.6.1/PC/bdist_wininst/build.bat
Python-3.6.1/PC/bdist_wininst/bdist_wininst.vcxproj
Python-3.6.1/PC/bdist_wininst/resource.h
Python-3.6.1/PC/bdist_wininst/extract.c
Python-3.6.1/PC/bdist_wininst/bdist_wininst.vcxproj.filters
Python-3.6.1/PC/bdist_wininst/README.txt
Python-3.6.1/PC/bdist_wininst/archive.h
Python-3.6.1/PC/bdist_wininst/PythonPowered.bmp
Python-3.6.1/PC/bdist_wininst/install.c
Python-3.6.1/PC/_msi.c
Python-3.6.1/PC/pyshellext_d.def
Python-3.6.1/PC/pyshellext.idl
Python-3.6.1/PC/getpathp.c
Python-3.6.1/PC/python_nt.rc
Python-3.6.1/PC/python3dll.c
Python-3.6.1/PC/WinMain.c
Python-3.6.1/PC/testpy.py
Python-3.6.1/PC/python.manifest
Python-3.6.1/PC/dl_nt.c
Python-3.6.1/PC/dllbase_nt.txt
Python-3.6.1/PC/python_ver_rc.h
Python-3.6.1/PC/config.c
Python-3.6.1/PC/pythonw_exe.rc
Python-3.6.1/PC/pyconfig.h
Python-3.6.1/PC/validate_ucrtbase.py
Python-3.6.1/PC/python3.def
Python-3.6.1/PC/sqlite3.rc
Python-3.6.1/PC/readme.txt
Python-3.6.1/PC/pyshellext.cpp
Python-3.6.1/PC/generrmap.c
Python-3.6.1/PC/pylauncher.rc
Python-3.6.1/PC/clinic/
Python-3.6.1/PC/clinic/msvcrtmodule.c.h
Python-3.6.1/PC/clinic/winreg.c.h
Python-3.6.1/PC/clinic/_testconsole.c.h
Python-3.6.1/PC/clinic/winsound.c.h
Python-3.6.1/PC/winreg.c
Python-3.6.1/PC/errmap.mak
Python-3.6.1/PC/winsound.c
Python-3.6.1/PC/pyshellext.def
Python-3.6.1/PC/python_exe.rc
Python-3.6.1/PC/launcher.c
Python-3.6.1/PC/msvcrtmodule.c
Python-3.6.1/PC/empty.c
Python-3.6.1/PC/invalid_parameter_handler.c
Python-3.6.1/PC/pyshellext.rc
Python-3.6.1/PC/frozen_dllmain.c
Python-3.6.1/PC/_testconsole.c
Python-3.6.1/config.sub
Python-3.6.1/config.guess
Python-3.6.1/Misc/
Python-3.6.1/Misc/valgrind-python.supp
Python-3.6.1/Misc/python-wing3.wpr
Python-3.6.1/Misc/HISTORY
Python-3.6.1/Misc/python.pc.in
Python-3.6.1/Misc/python.man
Python-3.6.1/Misc/README.valgrind
Python-3.6.1/Misc/python-config.sh.in
Python-3.6.1/Misc/ACKS
Python-3.6.1/Misc/python-wing5.wpr
Python-3.6.1/Misc/python-wing4.wpr
Python-3.6.1/Misc/README
Python-3.6.1/Misc/svnmap.txt
Python-3.6.1/Misc/Porting
Python-3.6.1/Misc/NEWS
Python-3.6.1/Misc/README.coverity
Python-3.6.1/Misc/coverity_model.c
Python-3.6.1/Misc/SpecialBuilds.txt
Python-3.6.1/Misc/indent.pro
Python-3.6.1/Misc/gdbinit
Python-3.6.1/Misc/python-config.in
Python-3.6.1/Misc/vgrindefs
Python-3.6.1/Misc/README.AIX
Python-3.6.1/.github/
Python-3.6.1/.github/PULL_REQUEST_TEMPLATE.md
Python-3.6.1/Lib/
Python-3.6.1/Lib/_pydecimal.py
Python-3.6.1/Lib/subprocess.py
Python-3.6.1/Lib/socket.py
Python-3.6.1/Lib/tkinter/
Python-3.6.1/Lib/tkinter/filedialog.py
Python-3.6.1/Lib/tkinter/commondialog.py
Python-3.6.1/Lib/tkinter/colorchooser.py
Python-3.6.1/Lib/tkinter/dnd.py
Python-3.6.1/Lib/tkinter/scrolledtext.py
Python-3.6.1/Lib/tkinter/simpledialog.py
Python-3.6.1/Lib/tkinter/__init__.py
Python-3.6.1/Lib/tkinter/tix.py
Python-3.6.1/Lib/tkinter/ttk.py
Python-3.6.1/Lib/tkinter/messagebox.py
Python-3.6.1/Lib/tkinter/constants.py
Python-3.6.1/Lib/tkinter/__main__.py
Python-3.6.1/Lib/tkinter/font.py
Python-3.6.1/Lib/tkinter/test/
Python-3.6.1/Lib/tkinter/test/test_ttk/
Python-3.6.1/Lib/tkinter/test/test_ttk/test_widgets.py
Python-3.6.1/Lib/tkinter/test/test_ttk/test_style.py
Python-3.6.1/Lib/tkinter/test/test_ttk/__init__.py
Python-3.6.1/Lib/tkinter/test/test_ttk/test_extensions.py
Python-3.6.1/Lib/tkinter/test/test_ttk/test_functions.py
Python-3.6.1/Lib/tkinter/test/support.py
Python-3.6.1/Lib/tkinter/test/runtktests.py
Python-3.6.1/Lib/tkinter/test/widget_tests.py
Python-3.6.1/Lib/tkinter/test/__init__.py
Python-3.6.1/Lib/tkinter/test/README
Python-3.6.1/Lib/tkinter/test/test_tkinter/
Python-3.6.1/Lib/tkinter/test/test_tkinter/test_variables.py
Python-3.6.1/Lib/tkinter/test/test_tkinter/test_geometry_managers.py
Python-3.6.1/Lib/tkinter/test/test_tkinter/test_widgets.py
Python-3.6.1/Lib/tkinter/test/test_tkinter/test_loadtk.py
Python-3.6.1/Lib/tkinter/test/test_tkinter/__init__.py
Python-3.6.1/Lib/tkinter/test/test_tkinter/test_misc.py
Python-3.6.1/Lib/tkinter/test/test_tkinter/test_text.py
Python-3.6.1/Lib/tkinter/test/test_tkinter/test_font.py
Python-3.6.1/Lib/tkinter/test/test_tkinter/test_images.py
Python-3.6.1/Lib/tkinter/dialog.py
Python-3.6.1/Lib/telnetlib.py
Python-3.6.1/Lib/io.py
Python-3.6.1/Lib/venv/
Python-3.6.1/Lib/venv/__init__.py
Python-3.6.1/Lib/venv/__main__.py
Python-3.6.1/Lib/venv/scripts/
Python-3.6.1/Lib/venv/scripts/common/
Python-3.6.1/Lib/venv/scripts/common/activate
Python-3.6.1/Lib/venv/scripts/nt/
Python-3.6.1/Lib/venv/scripts/nt/activate.bat
Python-3.6.1/Lib/venv/scripts/nt/Activate.ps1
Python-3.6.1/Lib/venv/scripts/nt/deactivate.bat
Python-3.6.1/Lib/venv/scripts/posix/
Python-3.6.1/Lib/venv/scripts/posix/activate.fish
Python-3.6.1/Lib/venv/scripts/posix/activate.csh
Python-3.6.1/Lib/shutil.py
Python-3.6.1/Lib/sre_constants.py
Python-3.6.1/Lib/fnmatch.py
Python-3.6.1/Lib/gzip.py
Python-3.6.1/Lib/pipes.py
Python-3.6.1/Lib/textwrap.py
Python-3.6.1/Lib/dbm/
Python-3.6.1/Lib/dbm/dumb.py
Python-3.6.1/Lib/dbm/__init__.py
Python-3.6.1/Lib/dbm/ndbm.py
Python-3.6.1/Lib/dbm/gnu.py
Python-3.6.1/Lib/_dummy_thread.py
Python-3.6.1/Lib/threading.py
Python-3.6.1/Lib/keyword.py
Python-3.6.1/Lib/difflib.py
Python-3.6.1/Lib/_bootlocale.py
Python-3.6.1/Lib/xdrlib.py
Python-3.6.1/Lib/traceback.py
Python-3.6.1/Lib/gettext.py
Python-3.6.1/Lib/cgi.py
Python-3.6.1/Lib/operator.py
Python-3.6.1/Lib/tracemalloc.py
Python-3.6.1/Lib/fractions.py
Python-3.6.1/Lib/tarfile.py
Python-3.6.1/Lib/distutils/
Python-3.6.1/Lib/distutils/text_file.py
Python-3.6.1/Lib/distutils/dep_util.py
Python-3.6.1/Lib/distutils/extension.py
Python-3.6.1/Lib/distutils/errors.py
Python-3.6.1/Lib/distutils/msvccompiler.py
Python-3.6.1/Lib/distutils/filelist.py
Python-3.6.1/Lib/distutils/util.py
Python-3.6.1/Lib/distutils/dir_util.py
Python-3.6.1/Lib/distutils/debug.py
Python-3.6.1/Lib/distutils/file_util.py
Python-3.6.1/Lib/distutils/msvc9compiler.py
Python-3.6.1/Lib/distutils/sysconfig.py
Python-3.6.1/Lib/distutils/__init__.py
Python-3.6.1/Lib/distutils/spawn.py
Python-3.6.1/Lib/distutils/README
Python-3.6.1/Lib/distutils/command/
Python-3.6.1/Lib/distutils/command/install_data.py
Python-3.6.1/Lib/distutils/command/register.py
Python-3.6.1/Lib/distutils/command/build_py.py
Python-3.6.1/Lib/distutils/command/install_egg_info.py
Python-3.6.1/Lib/distutils/command/upload.py
Python-3.6.1/Lib/distutils/command/wininst-9.0-amd64.exe
Python-3.6.1/Lib/distutils/command/install_scripts.py
Python-3.6.1/Lib/distutils/command/install_headers.py
Python-3.6.1/Lib/distutils/command/wininst-9.0.exe
Python-3.6.1/Lib/distutils/command/wininst-10.0-amd64.exe
Python-3.6.1/Lib/distutils/command/build_clib.py
Python-3.6.1/Lib/distutils/command/__init__.py
Python-3.6.1/Lib/distutils/command/command_template
Python-3.6.1/Lib/distutils/command/install.py
Python-3.6.1/Lib/distutils/command/bdist_rpm.py
Python-3.6.1/Lib/distutils/command/build.py
Python-3.6.1/Lib/distutils/command/bdist_msi.py
Python-3.6.1/Lib/distutils/command/wininst-6.0.exe
Python-3.6.1/Lib/distutils/command/wininst-8.0.exe
Python-3.6.1/Lib/distutils/command/bdist.py
Python-3.6.1/Lib/distutils/command/wininst-14.0.exe
Python-3.6.1/Lib/distutils/command/check.py
Python-3.6.1/Lib/distutils/command/install_lib.py
Python-3.6.1/Lib/distutils/command/bdist_dumb.py
Python-3.6.1/Lib/distutils/command/build_ext.py
Python-3.6.1/Lib/distutils/command/wininst-7.1.exe
Python-3.6.1/Lib/distutils/command/clean.py
Python-3.6.1/Lib/distutils/command/bdist_wininst.py
Python-3.6.1/Lib/distutils/command/sdist.py
Python-3.6.1/Lib/distutils/command/wininst-14.0-amd64.exe
Python-3.6.1/Lib/distutils/command/wininst-10.0.exe
Python-3.6.1/Lib/distutils/command/config.py
Python-3.6.1/Lib/distutils/command/build_scripts.py
Python-3.6.1/Lib/distutils/fancy_getopt.py
Python-3.6.1/Lib/distutils/_msvccompiler.py
Python-3.6.1/Lib/distutils/versionpredicate.py
Python-3.6.1/Lib/distutils/bcppcompiler.py
Python-3.6.1/Lib/distutils/ccompiler.py
Python-3.6.1/Lib/distutils/archive_util.py
Python-3.6.1/Lib/distutils/core.py
Python-3.6.1/Lib/distutils/cmd.py
Python-3.6.1/Lib/distutils/unixccompiler.py
Python-3.6.1/Lib/distutils/tests/
Python-3.6.1/Lib/distutils/tests/test_install_headers.py
Python-3.6.1/Lib/distutils/tests/test_build.py
Python-3.6.1/Lib/distutils/tests/test_cmd.py
Python-3.6.1/Lib/distutils/tests/support.py
Python-3.6.1/Lib/distutils/tests/test_file_util.py
Python-3.6.1/Lib/distutils/tests/test_archive_util.py
Python-3.6.1/Lib/distutils/tests/test_clean.py
Python-3.6.1/Lib/distutils/tests/test_filelist.py
Python-3.6.1/Lib/distutils/tests/test_register.py
Python-3.6.1/Lib/distutils/tests/test_msvc9compiler.py
Python-3.6.1/Lib/distutils/tests/test_bdist_rpm.py
Python-3.6.1/Lib/distutils/tests/test_build_ext.py
Python-3.6.1/Lib/distutils/tests/test_bdist_msi.py
Python-3.6.1/Lib/distutils/tests/test_sysconfig.py
Python-3.6.1/Lib/distutils/tests/test_msvccompiler.py
Python-3.6.1/Lib/distutils/tests/test_build_clib.py
Python-3.6.1/Lib/distutils/tests/test_dir_util.py
Python-3.6.1/Lib/distutils/tests/test_build_scripts.py
Python-3.6.1/Lib/distutils/tests/__init__.py
Python-3.6.1/Lib/distutils/tests/Setup.sample
Python-3.6.1/Lib/distutils/tests/test_text_file.py
Python-3.6.1/Lib/distutils/tests/test_cygwinccompiler.py
Python-3.6.1/Lib/distutils/tests/test_util.py
Python-3.6.1/Lib/distutils/tests/test_sdist.py
Python-3.6.1/Lib/distutils/tests/test_upload.py
Python-3.6.1/Lib/distutils/tests/test_install_scripts.py
Python-3.6.1/Lib/distutils/tests/test_extension.py
Python-3.6.1/Lib/distutils/tests/test_config_cmd.py
Python-3.6.1/Lib/distutils/tests/test_versionpredicate.py
Python-3.6.1/Lib/distutils/tests/test_install_lib.py
Python-3.6.1/Lib/distutils/tests/test_config.py
Python-3.6.1/Lib/distutils/tests/test_check.py
Python-3.6.1/Lib/distutils/tests/test_version.py
Python-3.6.1/Lib/distutils/tests/test_unixccompiler.py
Python-3.6.1/Lib/distutils/tests/test_bdist.py
Python-3.6.1/Lib/distutils/tests/test_build_py.py
Python-3.6.1/Lib/distutils/tests/test_dep_util.py
Python-3.6.1/Lib/distutils/tests/test_install_data.py
Python-3.6.1/Lib/distutils/tests/test_bdist_dumb.py
Python-3.6.1/Lib/distutils/tests/test_log.py
Python-3.6.1/Lib/distutils/tests/test_spawn.py
Python-3.6.1/Lib/distutils/tests/test_dist.py
Python-3.6.1/Lib/distutils/tests/test_install.py
Python-3.6.1/Lib/distutils/tests/test_core.py
Python-3.6.1/Lib/distutils/tests/test_bdist_wininst.py
Python-3.6.1/Lib/distutils/cygwinccompiler.py
Python-3.6.1/Lib/distutils/version.py
Python-3.6.1/Lib/distutils/dist.py
Python-3.6.1/Lib/distutils/config.py
Python-3.6.1/Lib/distutils/log.py
Python-3.6.1/Lib/html/
Python-3.6.1/Lib/html/parser.py
Python-3.6.1/Lib/html/__init__.py
Python-3.6.1/Lib/html/entities.py
Python-3.6.1/Lib/zipapp.py
Python-3.6.1/Lib/msilib/
Python-3.6.1/Lib/msilib/text.py
Python-3.6.1/Lib/msilib/schema.py
Python-3.6.1/Lib/msilib/sequence.py
Python-3.6.1/Lib/msilib/__init__.py
Python-3.6.1/Lib/logging/
Python-3.6.1/Lib/logging/handlers.py
Python-3.6.1/Lib/logging/__init__.py
Python-3.6.1/Lib/logging/config.py
Python-3.6.1/Lib/site-packages/
Python-3.6.1/Lib/site-packages/README.txt
Python-3.6.1/Lib/asyncore.py
Python-3.6.1/Lib/bisect.py
Python-3.6.1/Lib/posixpath.py
Python-3.6.1/Lib/opcode.py
Python-3.6.1/Lib/dummy_threading.py
Python-3.6.1/Lib/codeop.py
Python-3.6.1/Lib/asyncio/
Python-3.6.1/Lib/asyncio/base_subprocess.py
Python-3.6.1/Lib/asyncio/subprocess.py
Python-3.6.1/Lib/asyncio/windows_events.py
Python-3.6.1/Lib/asyncio/proactor_events.py
Python-3.6.1/Lib/asyncio/compat.py
Python-3.6.1/Lib/asyncio/streams.py
Python-3.6.1/Lib/asyncio/unix_events.py
Python-3.6.1/Lib/asyncio/protocols.py
Python-3.6.1/Lib/asyncio/transports.py
Python-3.6.1/Lib/asyncio/__init__.py
Python-3.6.1/Lib/asyncio/futures.py
Python-3.6.1/Lib/asyncio/tasks.py
Python-3.6.1/Lib/asyncio/base_futures.py
Python-3.6.1/Lib/asyncio/constants.py
Python-3.6.1/Lib/asyncio/selector_events.py
Python-3.6.1/Lib/asyncio/sslproto.py
Python-3.6.1/Lib/asyncio/queues.py
Python-3.6.1/Lib/asyncio/events.py
Python-3.6.1/Lib/asyncio/windows_utils.py
Python-3.6.1/Lib/asyncio/coroutines.py
Python-3.6.1/Lib/asyncio/base_tasks.py
Python-3.6.1/Lib/asyncio/locks.py
Python-3.6.1/Lib/asyncio/log.py
Python-3.6.1/Lib/asyncio/test_utils.py
Python-3.6.1/Lib/asyncio/base_events.py
Python-3.6.1/Lib/idlelib/
Python-3.6.1/Lib/idlelib/extend.txt
Python-3.6.1/Lib/idlelib/debugobj_r.py
Python-3.6.1/Lib/idlelib/TODO.txt
Python-3.6.1/Lib/idlelib/debugger.py
Python-3.6.1/Lib/idlelib/autocomplete.py
Python-3.6.1/Lib/idlelib/NEWS2x.txt
Python-3.6.1/Lib/idlelib/autoexpand.py
Python-3.6.1/Lib/idlelib/hyperparser.py
Python-3.6.1/Lib/idlelib/help.py
Python-3.6.1/Lib/idlelib/configdialog.py
Python-3.6.1/Lib/idlelib/editor.py
Python-3.6.1/Lib/idlelib/calltips.py
Python-3.6.1/Lib/idlelib/tree.py
Python-3.6.1/Lib/idlelib/rstrip.py
Python-3.6.1/Lib/idlelib/paragraph.py
Python-3.6.1/Lib/idlelib/filelist.py
Python-3.6.1/Lib/idlelib/CREDITS.txt
Python-3.6.1/Lib/idlelib/Icons/
Python-3.6.1/Lib/idlelib/Icons/plusnode.gif
Python-3.6.1/Lib/idlelib/Icons/minusnode.gif
Python-3.6.1/Lib/idlelib/Icons/idle_16.gif
Python-3.6.1/Lib/idlelib/Icons/idle_48.gif
Python-3.6.1/Lib/idlelib/Icons/idle_48.png
Python-3.6.1/Lib/idlelib/Icons/openfolder.gif
Python-3.6.1/Lib/idlelib/Icons/folder.gif
Python-3.6.1/Lib/idlelib/Icons/idle_16.png
Python-3.6.1/Lib/idlelib/Icons/idle.icns
Python-3.6.1/Lib/idlelib/Icons/idle.ico
Python-3.6.1/Lib/idlelib/Icons/idle_32.gif
Python-3.6.1/Lib/idlelib/Icons/idle_32.png
Python-3.6.1/Lib/idlelib/Icons/tk.gif
Python-3.6.1/Lib/idlelib/Icons/python.gif
Python-3.6.1/Lib/idlelib/help.html
Python-3.6.1/Lib/idlelib/percolator.py
Python-3.6.1/Lib/idlelib/debugger_r.py
Python-3.6.1/Lib/idlelib/statusbar.py
Python-3.6.1/Lib/idlelib/redirector.py
Python-3.6.1/Lib/idlelib/history.py
Python-3.6.1/Lib/idlelib/rpc.py
Python-3.6.1/Lib/idlelib/runscript.py
Python-3.6.1/Lib/idlelib/macosx.py
Python-3.6.1/Lib/idlelib/searchbase.py
Python-3.6.1/Lib/idlelib/idle_test/
Python-3.6.1/Lib/idlelib/idle_test/test_autocomplete.py
Python-3.6.1/Lib/idlelib/idle_test/test_delegator.py
Python-3.6.1/Lib/idlelib/idle_test/test_config_key.py
Python-3.6.1/Lib/idlelib/idle_test/test_search.py
Python-3.6.1/Lib/idlelib/idle_test/test_tree.py
Python-3.6.1/Lib/idlelib/idle_test/test_rstrip.py
Python-3.6.1/Lib/idlelib/idle_test/test_pathbrowser.py
Python-3.6.1/Lib/idlelib/idle_test/mock_tk.py
Python-3.6.1/Lib/idlelib/idle_test/test_textview.py
Python-3.6.1/Lib/idlelib/idle_test/test_warning.py
Python-3.6.1/Lib/idlelib/idle_test/test_undo.py
Python-3.6.1/Lib/idlelib/idle_test/test_query.py
Python-3.6.1/Lib/idlelib/idle_test/test_autoexpand.py
Python-3.6.1/Lib/idlelib/idle_test/test_help_about.py
Python-3.6.1/Lib/idlelib/idle_test/mock_idle.py
Python-3.6.1/Lib/idlelib/idle_test/test_percolator.py
Python-3.6.1/Lib/idlelib/idle_test/__init__.py
Python-3.6.1/Lib/idlelib/idle_test/htest.py
Python-3.6.1/Lib/idlelib/idle_test/test_macosx.py
Python-3.6.1/Lib/idlelib/idle_test/test_grep.py
Python-3.6.1/Lib/idlelib/idle_test/test_configdialog.py
Python-3.6.1/Lib/idlelib/idle_test/test_redirector.py
Python-3.6.1/Lib/idlelib/idle_test/test_text.py
Python-3.6.1/Lib/idlelib/idle_test/test_editmenu.py
Python-3.6.1/Lib/idlelib/idle_test/README.txt
Python-3.6.1/Lib/idlelib/idle_test/test_parenmatch.py
Python-3.6.1/Lib/idlelib/idle_test/test_scrolledlist.py
Python-3.6.1/Lib/idlelib/idle_test/test_hyperparser.py
Python-3.6.1/Lib/idlelib/idle_test/test_config.py
Python-3.6.1/Lib/idlelib/idle_test/test_calltips.py
Python-3.6.1/Lib/idlelib/idle_test/test_replace.py
Python-3.6.1/Lib/idlelib/idle_test/test_debugger.py
Python-3.6.1/Lib/idlelib/idle_test/test_history.py
Python-3.6.1/Lib/idlelib/idle_test/test_help.py
Python-3.6.1/Lib/idlelib/idle_test/test_editor.py
Python-3.6.1/Lib/idlelib/idle_test/test_searchengine.py
Python-3.6.1/Lib/idlelib/idle_test/test_colorizer.py
Python-3.6.1/Lib/idlelib/idle_test/test_searchbase.py
Python-3.6.1/Lib/idlelib/idle_test/test_iomenu.py
Python-3.6.1/Lib/idlelib/idle_test/test_paragraph.py
Python-3.6.1/Lib/idlelib/config-main.def
Python-3.6.1/Lib/idlelib/zoomheight.py
Python-3.6.1/Lib/idlelib/debugobj.py
Python-3.6.1/Lib/idlelib/config-highlight.def
Python-3.6.1/Lib/idlelib/__init__.py
Python-3.6.1/Lib/idlelib/codecontext.py
Python-3.6.1/Lib/idlelib/idle.bat
Python-3.6.1/Lib/idlelib/delegator.py
Python-3.6.1/Lib/idlelib/iomenu.py
Python-3.6.1/Lib/idlelib/ChangeLog
Python-3.6.1/Lib/idlelib/browser.py
Python-3.6.1/Lib/idlelib/idle.pyw
Python-3.6.1/Lib/idlelib/help_about.py
Python-3.6.1/Lib/idlelib/query.py
Python-3.6.1/Lib/idlelib/run.py
Python-3.6.1/Lib/idlelib/search.py
Python-3.6.1/Lib/idlelib/scrolledlist.py
Python-3.6.1/Lib/idlelib/colorizer.py
Python-3.6.1/Lib/idlelib/tabbedpages.py
Python-3.6.1/Lib/idlelib/HISTORY.txt
Python-3.6.1/Lib/idlelib/windows.py
Python-3.6.1/Lib/idlelib/parenmatch.py
Python-3.6.1/Lib/idlelib/__main__.py
Python-3.6.1/Lib/idlelib/idle.py
Python-3.6.1/Lib/idlelib/README.txt
Python-3.6.1/Lib/idlelib/undo.py
Python-3.6.1/Lib/idlelib/searchengine.py
Python-3.6.1/Lib/idlelib/tooltip.py
Python-3.6.1/Lib/idlelib/autocomplete_w.py
Python-3.6.1/Lib/idlelib/NEWS.txt
Python-3.6.1/Lib/idlelib/outwin.py
Python-3.6.1/Lib/idlelib/textview.py
Python-3.6.1/Lib/idlelib/dynoption.py
Python-3.6.1/Lib/idlelib/pyparse.py
Python-3.6.1/Lib/idlelib/pyshell.py
Python-3.6.1/Lib/idlelib/pathbrowser.py
Python-3.6.1/Lib/idlelib/config-extensions.def
Python-3.6.1/Lib/idlelib/config-keys.def
Python-3.6.1/Lib/idlelib/replace.py
Python-3.6.1/Lib/idlelib/grep.py
Python-3.6.1/Lib/idlelib/config.py
Python-3.6.1/Lib/idlelib/multicall.py
Python-3.6.1/Lib/idlelib/calltip_w.py
Python-3.6.1/Lib/idlelib/config_key.py
Python-3.6.1/Lib/idlelib/stackviewer.py
Python-3.6.1/Lib/idlelib/mainmenu.py
Python-3.6.1/Lib/signal.py
Python-3.6.1/Lib/webbrowser.py
Python-3.6.1/Lib/decimal.py
Python-3.6.1/Lib/tempfile.py
Python-3.6.1/Lib/nntplib.py
Python-3.6.1/Lib/xmlrpc/
Python-3.6.1/Lib/xmlrpc/client.py
Python-3.6.1/Lib/xmlrpc/__init__.py
Python-3.6.1/Lib/xmlrpc/server.py
Python-3.6.1/Lib/turtledemo/
Python-3.6.1/Lib/turtledemo/chaos.py
Python-3.6.1/Lib/turtledemo/colormixer.py
Python-3.6.1/Lib/turtledemo/round_dance.py
Python-3.6.1/Lib/turtledemo/tree.py
Python-3.6.1/Lib/turtledemo/peace.py
Python-3.6.1/Lib/turtledemo/sorting_animate.py
Python-3.6.1/Lib/turtledemo/planet_and_moon.py
Python-3.6.1/Lib/turtledemo/yinyang.py
Python-3.6.1/Lib/turtledemo/bytedesign.py
Python-3.6.1/Lib/turtledemo/lindenmayer.py
Python-3.6.1/Lib/turtledemo/__init__.py
Python-3.6.1/Lib/turtledemo/fractalcurves.py
Python-3.6.1/Lib/turtledemo/forest.py
Python-3.6.1/Lib/turtledemo/penrose.py
Python-3.6.1/Lib/turtledemo/turtle.cfg
Python-3.6.1/Lib/turtledemo/clock.py
Python-3.6.1/Lib/turtledemo/__main__.py
Python-3.6.1/Lib/turtledemo/paint.py
Python-3.6.1/Lib/turtledemo/wikipedia.py
Python-3.6.1/Lib/turtledemo/nim.py
Python-3.6.1/Lib/turtledemo/two_canvases.py
Python-3.6.1/Lib/turtledemo/minimal_hanoi.py
Python-3.6.1/Lib/ctypes/
Python-3.6.1/Lib/ctypes/util.py
Python-3.6.1/Lib/ctypes/wintypes.py
Python-3.6.1/Lib/ctypes/__init__.py
Python-3.6.1/Lib/ctypes/_endian.py
Python-3.6.1/Lib/ctypes/macholib/
Python-3.6.1/Lib/ctypes/macholib/dyld.py
Python-3.6.1/Lib/ctypes/macholib/fetch_macholib
Python-3.6.1/Lib/ctypes/macholib/fetch_macholib.bat
Python-3.6.1/Lib/ctypes/macholib/README.ctypes
Python-3.6.1/Lib/ctypes/macholib/dylib.py
Python-3.6.1/Lib/ctypes/macholib/__init__.py
Python-3.6.1/Lib/ctypes/macholib/framework.py
Python-3.6.1/Lib/ctypes/test/
Python-3.6.1/Lib/ctypes/test/test_returnfuncptrs.py
Python-3.6.1/Lib/ctypes/test/test_errno.py
Python-3.6.1/Lib/ctypes/test/test_stringptr.py
Python-3.6.1/Lib/ctypes/test/test_array_in_pointer.py
Python-3.6.1/Lib/ctypes/test/test_incomplete.py
Python-3.6.1/Lib/ctypes/test/test_arrays.py
Python-3.6.1/Lib/ctypes/test/test_prototypes.py
Python-3.6.1/Lib/ctypes/test/test_bytes.py
Python-3.6.1/Lib/ctypes/test/test_funcptr.py
Python-3.6.1/Lib/ctypes/test/test_refcounts.py
Python-3.6.1/Lib/ctypes/test/test_slicing.py
Python-3.6.1/Lib/ctypes/test/test_values.py
Python-3.6.1/Lib/ctypes/test/test_memfunctions.py
Python-3.6.1/Lib/ctypes/test/test_objects.py
Python-3.6.1/Lib/ctypes/test/test_numbers.py
Python-3.6.1/Lib/ctypes/test/test_parameters.py
Python-3.6.1/Lib/ctypes/test/test_callbacks.py
Python-3.6.1/Lib/ctypes/test/test_simplesubclasses.py
Python-3.6.1/Lib/ctypes/test/__init__.py
Python-3.6.1/Lib/ctypes/test/test_buffers.py
Python-3.6.1/Lib/ctypes/test/test_cast.py
Python-3.6.1/Lib/ctypes/test/test_byteswap.py
Python-3.6.1/Lib/ctypes/test/test_macholib.py
Python-3.6.1/Lib/ctypes/test/test_sizes.py
Python-3.6.1/Lib/ctypes/test/test_libc.py
Python-3.6.1/Lib/ctypes/test/test_python_api.py
Python-3.6.1/Lib/ctypes/test/test_strings.py
Python-3.6.1/Lib/ctypes/test/test_internals.py
Python-3.6.1/Lib/ctypes/test/test_bitfields.py
Python-3.6.1/Lib/ctypes/test/test_wintypes.py
Python-3.6.1/Lib/ctypes/test/test_repr.py
Python-3.6.1/Lib/ctypes/test/test_anon.py
Python-3.6.1/Lib/ctypes/test/test_checkretval.py
Python-3.6.1/Lib/ctypes/test/test_init.py
Python-3.6.1/Lib/ctypes/test/test_keeprefs.py
Python-3.6.1/Lib/ctypes/test/test_pep3118.py
Python-3.6.1/Lib/ctypes/test/__main__.py
Python-3.6.1/Lib/ctypes/test/test_random_things.py
Python-3.6.1/Lib/ctypes/test/test_win32.py
Python-3.6.1/Lib/ctypes/test/test_frombuffer.py
Python-3.6.1/Lib/ctypes/test/test_struct_fields.py
Python-3.6.1/Lib/ctypes/test/test_pickling.py
Python-3.6.1/Lib/ctypes/test/test_cfuncs.py
Python-3.6.1/Lib/ctypes/test/test_loading.py
Python-3.6.1/Lib/ctypes/test/test_find.py
Python-3.6.1/Lib/ctypes/test/test_as_parameter.py
Python-3.6.1/Lib/ctypes/test/test_varsize_struct.py
Python-3.6.1/Lib/ctypes/test/test_unicode.py
Python-3.6.1/Lib/ctypes/test/test_structures.py
Python-3.6.1/Lib/ctypes/test/test_unaligned_structures.py
Python-3.6.1/Lib/ctypes/test/test_delattr.py
Python-3.6.1/Lib/ctypes/test/test_functions.py
Python-3.6.1/Lib/ctypes/test/test_pointers.py
Python-3.6.1/Lib/filecmp.py
Python-3.6.1/Lib/http/
Python-3.6.1/Lib/http/cookies.py
Python-3.6.1/Lib/http/client.py
Python-3.6.1/Lib/http/__init__.py
Python-3.6.1/Lib/http/server.py
Python-3.6.1/Lib/http/cookiejar.py
Python-3.6.1/Lib/shlex.py
Python-3.6.1/Lib/hashlib.py
Python-3.6.1/Lib/_strptime.py
Python-3.6.1/Lib/plistlib.py
Python-3.6.1/Lib/tty.py
Python-3.6.1/Lib/bdb.py
Python-3.6.1/Lib/token.py
Python-3.6.1/Lib/multiprocessing/
Python-3.6.1/Lib/multiprocessing/popen_forkserver.py
Python-3.6.1/Lib/multiprocessing/popen_spawn_posix.py
Python-3.6.1/Lib/multiprocessing/sharedctypes.py
Python-3.6.1/Lib/multiprocessing/synchronize.py
Python-3.6.1/Lib/multiprocessing/util.py
Python-3.6.1/Lib/multiprocessing/reduction.py
Python-3.6.1/Lib/multiprocessing/dummy/
Python-3.6.1/Lib/multiprocessing/dummy/__init__.py
Python-3.6.1/Lib/multiprocessing/dummy/connection.py
Python-3.6.1/Lib/multiprocessing/forkserver.py
Python-3.6.1/Lib/multiprocessing/pool.py
Python-3.6.1/Lib/multiprocessing/popen_fork.py
Python-3.6.1/Lib/multiprocessing/__init__.py
Python-3.6.1/Lib/multiprocessing/spawn.py
Python-3.6.1/Lib/multiprocessing/connection.py
Python-3.6.1/Lib/multiprocessing/process.py
Python-3.6.1/Lib/multiprocessing/resource_sharer.py
Python-3.6.1/Lib/multiprocessing/heap.py
Python-3.6.1/Lib/multiprocessing/semaphore_tracker.py
Python-3.6.1/Lib/multiprocessing/managers.py
Python-3.6.1/Lib/multiprocessing/queues.py
Python-3.6.1/Lib/multiprocessing/popen_spawn_win32.py
Python-3.6.1/Lib/multiprocessing/context.py
Python-3.6.1/Lib/__phello__.foo.py
Python-3.6.1/Lib/email/
Python-3.6.1/Lib/email/encoders.py
Python-3.6.1/Lib/email/headerregistry.py
Python-3.6.1/Lib/email/_policybase.py
Python-3.6.1/Lib/email/parser.py
Python-3.6.1/Lib/email/header.py
Python-3.6.1/Lib/email/errors.py
Python-3.6.1/Lib/email/_parseaddr.py
Python-3.6.1/Lib/email/iterators.py
Python-3.6.1/Lib/email/_encoded_words.py
Python-3.6.1/Lib/email/__init__.py
Python-3.6.1/Lib/email/mime/
Python-3.6.1/Lib/email/mime/text.py
Python-3.6.1/Lib/email/mime/base.py
Python-3.6.1/Lib/email/mime/application.py
Python-3.6.1/Lib/email/mime/__init__.py
Python-3.6.1/Lib/email/mime/audio.py
Python-3.6.1/Lib/email/mime/image.py
Python-3.6.1/Lib/email/mime/nonmultipart.py
Python-3.6.1/Lib/email/mime/message.py
Python-3.6.1/Lib/email/mime/multipart.py
Python-3.6.1/Lib/email/utils.py
Python-3.6.1/Lib/email/quoprimime.py
Python-3.6.1/Lib/email/_header_value_parser.py
Python-3.6.1/Lib/email/base64mime.py
Python-3.6.1/Lib/email/generator.py
Python-3.6.1/Lib/email/charset.py
Python-3.6.1/Lib/email/policy.py
Python-3.6.1/Lib/email/feedparser.py
Python-3.6.1/Lib/email/message.py
Python-3.6.1/Lib/email/architecture.rst
Python-3.6.1/Lib/email/contentmanager.py
Python-3.6.1/Lib/timeit.py
Python-3.6.1/Lib/curses/
Python-3.6.1/Lib/curses/panel.py
Python-3.6.1/Lib/curses/ascii.py
Python-3.6.1/Lib/curses/textpad.py
Python-3.6.1/Lib/curses/__init__.py
Python-3.6.1/Lib/curses/has_key.py
Python-3.6.1/Lib/antigravity.py
Python-3.6.1/Lib/codecs.py
Python-3.6.1/Lib/pydoc_data/
Python-3.6.1/Lib/pydoc_data/topics.py
Python-3.6.1/Lib/pydoc_data/_pydoc.css
Python-3.6.1/Lib/pydoc_data/__init__.py
Python-3.6.1/Lib/pstats.py
Python-3.6.1/Lib/optparse.py
Python-3.6.1/Lib/stringprep.py
Python-3.6.1/Lib/sysconfig.py
Python-3.6.1/Lib/secrets.py
Python-3.6.1/Lib/os.py
Python-3.6.1/Lib/_threading_local.py
Python-3.6.1/Lib/statistics.py
Python-3.6.1/Lib/cProfile.py
Python-3.6.1/Lib/zipfile.py
Python-3.6.1/Lib/wave.py
Python-3.6.1/Lib/profile.py
Python-3.6.1/Lib/sqlite3/
Python-3.6.1/Lib/sqlite3/dbapi2.py
Python-3.6.1/Lib/sqlite3/dump.py
Python-3.6.1/Lib/sqlite3/__init__.py
Python-3.6.1/Lib/sqlite3/test/
Python-3.6.1/Lib/sqlite3/test/userfunctions.py
Python-3.6.1/Lib/sqlite3/test/regression.py
Python-3.6.1/Lib/sqlite3/test/dump.py
Python-3.6.1/Lib/sqlite3/test/dbapi.py
Python-3.6.1/Lib/sqlite3/test/factory.py
Python-3.6.1/Lib/sqlite3/test/transactions.py
Python-3.6.1/Lib/sqlite3/test/__init__.py
Python-3.6.1/Lib/sqlite3/test/types.py
Python-3.6.1/Lib/sqlite3/test/hooks.py
Python-3.6.1/Lib/pathlib.py
Python-3.6.1/Lib/ntpath.py
Python-3.6.1/Lib/macpath.py
Python-3.6.1/Lib/weakref.py
Python-3.6.1/Lib/code.py
Python-3.6.1/Lib/pprint.py
Python-3.6.1/Lib/_collections_abc.py
Python-3.6.1/Lib/this.py
Python-3.6.1/Lib/shelve.py
Python-3.6.1/Lib/types.py
Python-3.6.1/Lib/reprlib.py
Python-3.6.1/Lib/socketserver.py
Python-3.6.1/Lib/typing.py
Python-3.6.1/Lib/pickle.py
Python-3.6.1/Lib/smtpd.py
Python-3.6.1/Lib/__future__.py
Python-3.6.1/Lib/random.py
Python-3.6.1/Lib/_compression.py
Python-3.6.1/Lib/stat.py
Python-3.6.1/Lib/sre_compile.py
Python-3.6.1/Lib/ssl.py
Python-3.6.1/Lib/contextlib.py
Python-3.6.1/Lib/pty.py
Python-3.6.1/Lib/configparser.py
Python-3.6.1/Lib/datetime.py
Python-3.6.1/Lib/wsgiref/
Python-3.6.1/Lib/wsgiref/handlers.py
Python-3.6.1/Lib/wsgiref/headers.py
Python-3.6.1/Lib/wsgiref/util.py
Python-3.6.1/Lib/wsgiref/simple_server.py
Python-3.6.1/Lib/wsgiref/validate.py
Python-3.6.1/Lib/wsgiref/__init__.py
Python-3.6.1/Lib/ftplib.py
Python-3.6.1/Lib/lib2to3/
Python-3.6.1/Lib/lib2to3/patcomp.py
Python-3.6.1/Lib/lib2to3/fixer_base.py
Python-3.6.1/Lib/lib2to3/fixer_util.py
Python-3.6.1/Lib/lib2to3/btm_matcher.py
Python-3.6.1/Lib/lib2to3/PatternGrammar.txt
Python-3.6.1/Lib/lib2to3/pgen2/
Python-3.6.1/Lib/lib2to3/pgen2/grammar.py
Python-3.6.1/Lib/lib2to3/pgen2/driver.py
Python-3.6.1/Lib/lib2to3/pgen2/conv.py
Python-3.6.1/Lib/lib2to3/pgen2/parse.py
Python-3.6.1/Lib/lib2to3/pgen2/pgen.py
Python-3.6.1/Lib/lib2to3/pgen2/literals.py
Python-3.6.1/Lib/lib2to3/pgen2/token.py
Python-3.6.1/Lib/lib2to3/pgen2/__init__.py
Python-3.6.1/Lib/lib2to3/pgen2/tokenize.py
Python-3.6.1/Lib/lib2to3/fixes/
Python-3.6.1/Lib/lib2to3/fixes/fix_types.py
Python-3.6.1/Lib/lib2to3/fixes/fix_exec.py
Python-3.6.1/Lib/lib2to3/fixes/fix_imports.py
Python-3.6.1/Lib/lib2to3/fixes/fix_itertools.py
Python-3.6.1/Lib/lib2to3/fixes/fix_has_key.py
Python-3.6.1/Lib/lib2to3/fixes/fix_repr.py
Python-3.6.1/Lib/lib2to3/fixes/fix_itertools_imports.py
Python-3.6.1/Lib/lib2to3/fixes/fix_xrange.py
Python-3.6.1/Lib/lib2to3/fixes/fix_unicode.py
Python-3.6.1/Lib/lib2to3/fixes/fix_import.py
Python-3.6.1/Lib/lib2to3/fixes/fix_nonzero.py
Python-3.6.1/Lib/lib2to3/fixes/fix_getcwdu.py
Python-3.6.1/Lib/lib2to3/fixes/fix_filter.py
Python-3.6.1/Lib/lib2to3/fixes/fix_raw_input.py
Python-3.6.1/Lib/lib2to3/fixes/fix_reload.py
Python-3.6.1/Lib/lib2to3/fixes/fix_execfile.py
Python-3.6.1/Lib/lib2to3/fixes/fix_operator.py
Python-3.6.1/Lib/lib2to3/fixes/fix_next.py
Python-3.6.1/Lib/lib2to3/fixes/fix_tuple_params.py
Python-3.6.1/Lib/lib2to3/fixes/fix_idioms.py
Python-3.6.1/Lib/lib2to3/fixes/fix_except.py
Python-3.6.1/Lib/lib2to3/fixes/__init__.py
Python-3.6.1/Lib/lib2to3/fixes/fix_map.py
Python-3.6.1/Lib/lib2to3/fixes/fix_numliterals.py
Python-3.6.1/Lib/lib2to3/fixes/fix_print.py
Python-3.6.1/Lib/lib2to3/fixes/fix_exitfunc.py
Python-3.6.1/Lib/lib2to3/fixes/fix_xreadlines.py
Python-3.6.1/Lib/lib2to3/fixes/fix_set_literal.py
Python-3.6.1/Lib/lib2to3/fixes/fix_metaclass.py
Python-3.6.1/Lib/lib2to3/fixes/fix_ws_comma.py
Python-3.6.1/Lib/lib2to3/fixes/fix_isinstance.py
Python-3.6.1/Lib/lib2to3/fixes/fix_funcattrs.py
Python-3.6.1/Lib/lib2to3/fixes/fix_asserts.py
Python-3.6.1/Lib/lib2to3/fixes/fix_buffer.py
Python-3.6.1/Lib/lib2to3/fixes/fix_paren.py
Python-3.6.1/Lib/lib2to3/fixes/fix_dict.py
Python-3.6.1/Lib/lib2to3/fixes/fix_sys_exc.py
Python-3.6.1/Lib/lib2to3/fixes/fix_future.py
Python-3.6.1/Lib/lib2to3/fixes/fix_apply.py
Python-3.6.1/Lib/lib2to3/fixes/fix_intern.py
Python-3.6.1/Lib/lib2to3/fixes/fix_basestring.py
Python-3.6.1/Lib/lib2to3/fixes/fix_reduce.py
Python-3.6.1/Lib/lib2to3/fixes/fix_standarderror.py
Python-3.6.1/Lib/lib2to3/fixes/fix_raise.py
Python-3.6.1/Lib/lib2to3/fixes/fix_long.py
Python-3.6.1/Lib/lib2to3/fixes/fix_throw.py
Python-3.6.1/Lib/lib2to3/fixes/fix_renames.py
Python-3.6.1/Lib/lib2to3/fixes/fix_ne.py
Python-3.6.1/Lib/lib2to3/fixes/fix_zip.py
Python-3.6.1/Lib/lib2to3/fixes/fix_input.py
Python-3.6.1/Lib/lib2to3/fixes/fix_imports2.py
Python-3.6.1/Lib/lib2to3/fixes/fix_urllib.py
Python-3.6.1/Lib/lib2to3/fixes/fix_methodattrs.py
Python-3.6.1/Lib/lib2to3/__init__.py
Python-3.6.1/Lib/lib2to3/Grammar.txt
Python-3.6.1/Lib/lib2to3/__main__.py
Python-3.6.1/Lib/lib2to3/pytree.py
Python-3.6.1/Lib/lib2to3/main.py
Python-3.6.1/Lib/lib2to3/tests/
Python-3.6.1/Lib/lib2to3/tests/support.py
Python-3.6.1/Lib/lib2to3/tests/test_refactor.py
Python-3.6.1/Lib/lib2to3/tests/__init__.py
Python-3.6.1/Lib/lib2to3/tests/test_util.py
Python-3.6.1/Lib/lib2to3/tests/test_fixers.py
Python-3.6.1/Lib/lib2to3/tests/test_parser.py
Python-3.6.1/Lib/lib2to3/tests/__main__.py
Python-3.6.1/Lib/lib2to3/tests/test_pytree.py
Python-3.6.1/Lib/lib2to3/tests/data/
Python-3.6.1/Lib/lib2to3/tests/data/bom.py
Python-3.6.1/Lib/lib2to3/tests/data/fixers/
Python-3.6.1/Lib/lib2to3/tests/data/fixers/parrot_example.py
Python-3.6.1/Lib/lib2to3/tests/data/fixers/bad_order.py
Python-3.6.1/Lib/lib2to3/tests/data/fixers/myfixes/
Python-3.6.1/Lib/lib2to3/tests/data/fixers/myfixes/fix_last.py
Python-3.6.1/Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py
Python-3.6.1/Lib/lib2to3/tests/data/fixers/myfixes/fix_explicit.py
Python-3.6.1/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py
Python-3.6.1/Lib/lib2to3/tests/data/fixers/myfixes/fix_first.py
Python-3.6.1/Lib/lib2to3/tests/data/fixers/myfixes/fix_parrot.py
Python-3.6.1/Lib/lib2to3/tests/data/fixers/no_fixer_cls.py
Python-3.6.1/Lib/lib2to3/tests/data/infinite_recursion.py
Python-3.6.1/Lib/lib2to3/tests/data/README
Python-3.6.1/Lib/lib2to3/tests/data/false_encoding.py
Python-3.6.1/Lib/lib2to3/tests/data/crlf.py
Python-3.6.1/Lib/lib2to3/tests/data/py2_test_grammar.py
Python-3.6.1/Lib/lib2to3/tests/data/py3_test_grammar.py
Python-3.6.1/Lib/lib2to3/tests/data/different_encoding.py
Python-3.6.1/Lib/lib2to3/tests/test_all_fixers.py
Python-3.6.1/Lib/lib2to3/tests/pytree_idempotency.py
Python-3.6.1/Lib/lib2to3/tests/test_main.py
Python-3.6.1/Lib/lib2to3/btm_utils.py
Python-3.6.1/Lib/lib2to3/refactor.py
Python-3.6.1/Lib/lib2to3/pygram.py
Python-3.6.1/Lib/xml/
Python-3.6.1/Lib/xml/etree/
Python-3.6.1/Lib/xml/etree/ElementTree.py
Python-3.6.1/Lib/xml/etree/cElementTree.py
Python-3.6.1/Lib/xml/etree/__init__.py
Python-3.6.1/Lib/xml/etree/ElementPath.py
Python-3.6.1/Lib/xml/etree/ElementInclude.py
Python-3.6.1/Lib/xml/parsers/
Python-3.6.1/Lib/xml/parsers/__init__.py
Python-3.6.1/Lib/xml/parsers/expat.py
Python-3.6.1/Lib/xml/__init__.py
Python-3.6.1/Lib/xml/dom/
Python-3.6.1/Lib/xml/dom/domreg.py
Python-3.6.1/Lib/xml/dom/pulldom.py
Python-3.6.1/Lib/xml/dom/NodeFilter.py
Python-3.6.1/Lib/xml/dom/minidom.py
Python-3.6.1/Lib/xml/dom/__init__.py
Python-3.6.1/Lib/xml/dom/xmlbuilder.py
Python-3.6.1/Lib/xml/dom/minicompat.py
Python-3.6.1/Lib/xml/dom/expatbuilder.py
Python-3.6.1/Lib/xml/sax/
Python-3.6.1/Lib/xml/sax/expatreader.py
Python-3.6.1/Lib/xml/sax/__init__.py
Python-3.6.1/Lib/xml/sax/saxutils.py
Python-3.6.1/Lib/xml/sax/_exceptions.py
Python-3.6.1/Lib/xml/sax/xmlreader.py
Python-3.6.1/Lib/xml/sax/handler.py
Python-3.6.1/Lib/binhex.py
Python-3.6.1/Lib/turtle.py
Python-3.6.1/Lib/calendar.py
Python-3.6.1/Lib/selectors.py
Python-3.6.1/Lib/nturl2path.py
Python-3.6.1/Lib/trace.py
Python-3.6.1/Lib/sre_parse.py
Python-3.6.1/Lib/aifc.py
Python-3.6.1/Lib/cgitb.py
Python-3.6.1/Lib/netrc.py
Python-3.6.1/Lib/_sitebuiltins.py
Python-3.6.1/Lib/ensurepip/
Python-3.6.1/Lib/ensurepip/_bundled/
Python-3.6.1/Lib/ensurepip/_bundled/setuptools-28.8.0-py2.py3-none-any.whl
Python-3.6.1/Lib/ensurepip/_bundled/pip-9.0.1-py2.py3-none-any.whl
Python-3.6.1/Lib/ensurepip/_uninstall.py
Python-3.6.1/Lib/ensurepip/__init__.py
Python-3.6.1/Lib/ensurepip/__main__.py
Python-3.6.1/Lib/_osx_support.py
Python-3.6.1/Lib/genericpath.py
Python-3.6.1/Lib/runpy.py
Python-3.6.1/Lib/fileinput.py
Python-3.6.1/Lib/crypt.py
Python-3.6.1/Lib/platform.py
Python-3.6.1/Lib/uuid.py
Python-3.6.1/Lib/locale.py
Python-3.6.1/Lib/getpass.py
Python-3.6.1/Lib/copy.py
Python-3.6.1/Lib/hmac.py
Python-3.6.1/Lib/ast.py
Python-3.6.1/Lib/imp.py
Python-3.6.1/Lib/functools.py
Python-3.6.1/Lib/heapq.py
Python-3.6.1/Lib/tabnanny.py
Python-3.6.1/Lib/modulefinder.py
Python-3.6.1/Lib/mimetypes.py
Python-3.6.1/Lib/warnings.py
Python-3.6.1/Lib/collections/
Python-3.6.1/Lib/collections/__init__.py
Python-3.6.1/Lib/collections/abc.py
Python-3.6.1/Lib/inspect.py
Python-3.6.1/Lib/queue.py
Python-3.6.1/Lib/quopri.py
Python-3.6.1/Lib/pdb.py
Python-3.6.1/Lib/abc.py
Python-3.6.1/Lib/sndhdr.py
Python-3.6.1/Lib/macurl2path.py
Python-3.6.1/Lib/ipaddress.py
Python-3.6.1/Lib/pydoc.py
Python-3.6.1/Lib/base64.py
Python-3.6.1/Lib/encodings/
Python-3.6.1/Lib/encodings/cp950.py
Python-3.6.1/Lib/encodings/iso2022_kr.py
Python-3.6.1/Lib/encodings/big5.py
Python-3.6.1/Lib/encodings/gb18030.py
Python-3.6.1/Lib/encodings/cp874.py
Python-3.6.1/Lib/encodings/mac_latin2.py
Python-3.6.1/Lib/encodings/latin_1.py
Python-3.6.1/Lib/encodings/cp1026.py
Python-3.6.1/Lib/encodings/cp437.py
Python-3.6.1/Lib/encodings/hex_codec.py
Python-3.6.1/Lib/encodings/iso2022_jp_2004.py
Python-3.6.1/Lib/encodings/iso8859_9.py
Python-3.6.1/Lib/encodings/cp424.py
Python-3.6.1/Lib/encodings/euc_kr.py
Python-3.6.1/Lib/encodings/iso8859_14.py
Python-3.6.1/Lib/encodings/zlib_codec.py
Python-3.6.1/Lib/encodings/iso8859_2.py
Python-3.6.1/Lib/encodings/iso8859_1.py
Python-3.6.1/Lib/encodings/iso2022_jp_ext.py
Python-3.6.1/Lib/encodings/shift_jis.py
Python-3.6.1/Lib/encodings/iso8859_15.py
Python-3.6.1/Lib/encodings/mac_iceland.py
Python-3.6.1/Lib/encodings/tis_620.py
Python-3.6.1/Lib/encodings/iso2022_jp_3.py
Python-3.6.1/Lib/encodings/cp1254.py
Python-3.6.1/Lib/encodings/utf_7.py
Python-3.6.1/Lib/encodings/cp861.py
Python-3.6.1/Lib/encodings/iso8859_5.py
Python-3.6.1/Lib/encodings/punycode.py
Python-3.6.1/Lib/encodings/cp1006.py
Python-3.6.1/Lib/encodings/iso2022_jp_2.py
Python-3.6.1/Lib/encodings/big5hkscs.py
Python-3.6.1/Lib/encodings/cp858.py
Python-3.6.1/Lib/encodings/shift_jis_2004.py
Python-3.6.1/Lib/encodings/iso8859_7.py
Python-3.6.1/Lib/encodings/cp1250.py
Python-3.6.1/Lib/encodings/gbk.py
Python-3.6.1/Lib/encodings/utf_32_be.py
Python-3.6.1/Lib/encodings/iso2022_jp_1.py
Python-3.6.1/Lib/encodings/gb2312.py
Python-3.6.1/Lib/encodings/ascii.py
Python-3.6.1/Lib/encodings/mac_farsi.py
Python-3.6.1/Lib/encodings/hp_roman8.py
Python-3.6.1/Lib/encodings/mbcs.py
Python-3.6.1/Lib/encodings/cp932.py
Python-3.6.1/Lib/encodings/cp65001.py
Python-3.6.1/Lib/encodings/cp866.py
Python-3.6.1/Lib/encodings/mac_greek.py
Python-3.6.1/Lib/encodings/cp860.py
Python-3.6.1/Lib/encodings/cp855.py
Python-3.6.1/Lib/encodings/utf_8_sig.py
Python-3.6.1/Lib/encodings/rot_13.py
Python-3.6.1/Lib/encodings/euc_jis_2004.py
Python-3.6.1/Lib/encodings/cp869.py
Python-3.6.1/Lib/encodings/cp1140.py
Python-3.6.1/Lib/encodings/iso2022_jp.py
Python-3.6.1/Lib/encodings/palmos.py
Python-3.6.1/Lib/encodings/charmap.py
Python-3.6.1/Lib/encodings/base64_codec.py
Python-3.6.1/Lib/encodings/__init__.py
Python-3.6.1/Lib/encodings/cp500.py
Python-3.6.1/Lib/encodings/cp862.py
Python-3.6.1/Lib/encodings/utf_32.py
Python-3.6.1/Lib/encodings/undefined.py
Python-3.6.1/Lib/encodings/mac_centeuro.py
Python-3.6.1/Lib/encodings/kz1048.py
Python-3.6.1/Lib/encodings/cp1255.py
Python-3.6.1/Lib/encodings/quopri_codec.py
Python-3.6.1/Lib/encodings/cp864.py
Python-3.6.1/Lib/encodings/cp1125.py
Python-3.6.1/Lib/encodings/iso8859_11.py
Python-3.6.1/Lib/encodings/utf_16_le.py
Python-3.6.1/Lib/encodings/idna.py
Python-3.6.1/Lib/encodings/cp857.py
Python-3.6.1/Lib/encodings/iso8859_6.py
Python-3.6.1/Lib/encodings/cp1252.py
Python-3.6.1/Lib/encodings/iso8859_16.py
Python-3.6.1/Lib/encodings/ptcp154.py
Python-3.6.1/Lib/encodings/cp273.py
Python-3.6.1/Lib/encodings/cp1257.py
Python-3.6.1/Lib/encodings/iso8859_8.py
Python-3.6.1/Lib/encodings/cp720.py
Python-3.6.1/Lib/encodings/euc_jp.py
Python-3.6.1/Lib/encodings/shift_jisx0213.py
Python-3.6.1/Lib/encodings/hz.py
Python-3.6.1/Lib/encodings/cp775.py
Python-3.6.1/Lib/encodings/utf_32_le.py
Python-3.6.1/Lib/encodings/raw_unicode_escape.py
Python-3.6.1/Lib/encodings/koi8_u.py
Python-3.6.1/Lib/encodings/mac_croatian.py
Python-3.6.1/Lib/encodings/aliases.py
Python-3.6.1/Lib/encodings/johab.py
Python-3.6.1/Lib/encodings/uu_codec.py
Python-3.6.1/Lib/encodings/cp852.py
Python-3.6.1/Lib/encodings/oem.py
Python-3.6.1/Lib/encodings/cp037.py
Python-3.6.1/Lib/encodings/unicode_internal.py
Python-3.6.1/Lib/encodings/iso8859_13.py
Python-3.6.1/Lib/encodings/unicode_escape.py
Python-3.6.1/Lib/encodings/euc_jisx0213.py
Python-3.6.1/Lib/encodings/iso8859_10.py
Python-3.6.1/Lib/encodings/mac_turkish.py
Python-3.6.1/Lib/encodings/cp949.py
Python-3.6.1/Lib/encodings/mac_arabic.py
Python-3.6.1/Lib/encodings/mac_romanian.py
Python-3.6.1/Lib/encodings/cp737.py
Python-3.6.1/Lib/encodings/iso8859_3.py
Python-3.6.1/Lib/encodings/cp856.py
Python-3.6.1/Lib/encodings/cp863.py
Python-3.6.1/Lib/encodings/cp1256.py
Python-3.6.1/Lib/encodings/cp1253.py
Python-3.6.1/Lib/encodings/utf_16_be.py
Python-3.6.1/Lib/encodings/cp865.py
Python-3.6.1/Lib/encodings/mac_cyrillic.py
Python-3.6.1/Lib/encodings/utf_8.py
Python-3.6.1/Lib/encodings/cp875.py
Python-3.6.1/Lib/encodings/bz2_codec.py
Python-3.6.1/Lib/encodings/cp1251.py
Python-3.6.1/Lib/encodings/koi8_t.py
Python-3.6.1/Lib/encodings/mac_roman.py
Python-3.6.1/Lib/encodings/cp1258.py
Python-3.6.1/Lib/encodings/cp850.py
Python-3.6.1/Lib/encodings/iso8859_4.py
Python-3.6.1/Lib/encodings/koi8_r.py
Python-3.6.1/Lib/encodings/utf_16.py
Python-3.6.1/Lib/linecache.py
Python-3.6.1/Lib/copyreg.py
Python-3.6.1/Lib/pickletools.py
Python-3.6.1/Lib/cmd.py
Python-3.6.1/Lib/_pyio.py
Python-3.6.1/Lib/argparse.py
Python-3.6.1/Lib/formatter.py
Python-3.6.1/Lib/colorsys.py
Python-3.6.1/Lib/rlcompleter.py
Python-3.6.1/Lib/tokenize.py
Python-3.6.1/Lib/csv.py
Python-3.6.1/Lib/pyclbr.py
Python-3.6.1/Lib/struct.py
Python-3.6.1/Lib/compileall.py
Python-3.6.1/Lib/_markupbase.py
Python-3.6.1/Lib/concurrent/
Python-3.6.1/Lib/concurrent/futures/
Python-3.6.1/Lib/concurrent/futures/thread.py
Python-3.6.1/Lib/concurrent/futures/_base.py
Python-3.6.1/Lib/concurrent/futures/__init__.py
Python-3.6.1/Lib/concurrent/futures/process.py
Python-3.6.1/Lib/concurrent/__init__.py
Python-3.6.1/Lib/asynchat.py
Python-3.6.1/Lib/site.py
Python-3.6.1/Lib/symtable.py
Python-3.6.1/Lib/re.py
Python-3.6.1/Lib/unittest/
Python-3.6.1/Lib/unittest/runner.py
Python-3.6.1/Lib/unittest/loader.py
Python-3.6.1/Lib/unittest/suite.py
Python-3.6.1/Lib/unittest/util.py
Python-3.6.1/Lib/unittest/result.py
Python-3.6.1/Lib/unittest/case.py
Python-3.6.1/Lib/unittest/__init__.py
Python-3.6.1/Lib/unittest/signals.py
Python-3.6.1/Lib/unittest/mock.py
Python-3.6.1/Lib/unittest/__main__.py
Python-3.6.1/Lib/unittest/main.py
Python-3.6.1/Lib/unittest/test/
Python-3.6.1/Lib/unittest/test/test_result.py
Python-3.6.1/Lib/unittest/test/support.py
Python-3.6.1/Lib/unittest/test/test_setups.py
Python-3.6.1/Lib/unittest/test/test_discovery.py
Python-3.6.1/Lib/unittest/test/_test_warnings.py
Python-3.6.1/Lib/unittest/test/__init__.py
Python-3.6.1/Lib/unittest/test/testmock/
Python-3.6.1/Lib/unittest/test/testmock/support.py
Python-3.6.1/Lib/unittest/test/testmock/testcallable.py
Python-3.6.1/Lib/unittest/test/testmock/testmagicmethods.py
Python-3.6.1/Lib/unittest/test/testmock/__init__.py
Python-3.6.1/Lib/unittest/test/testmock/testpatch.py
Python-3.6.1/Lib/unittest/test/testmock/testsentinel.py
Python-3.6.1/Lib/unittest/test/testmock/testhelpers.py
Python-3.6.1/Lib/unittest/test/testmock/testwith.py
Python-3.6.1/Lib/unittest/test/testmock/__main__.py
Python-3.6.1/Lib/unittest/test/testmock/testmock.py
Python-3.6.1/Lib/unittest/test/test_case.py
Python-3.6.1/Lib/unittest/test/dummy.py
Python-3.6.1/Lib/unittest/test/test_suite.py
Python-3.6.1/Lib/unittest/test/test_runner.py
Python-3.6.1/Lib/unittest/test/test_functiontestcase.py
Python-3.6.1/Lib/unittest/test/__main__.py
Python-3.6.1/Lib/unittest/test/test_break.py
Python-3.6.1/Lib/unittest/test/test_program.py
Python-3.6.1/Lib/unittest/test/test_loader.py
Python-3.6.1/Lib/unittest/test/test_skipping.py
Python-3.6.1/Lib/unittest/test/test_assertions.py
Python-3.6.1/Lib/getopt.py
Python-3.6.1/Lib/pkgutil.py
Python-3.6.1/Lib/bz2.py
Python-3.6.1/Lib/test/
Python-3.6.1/Lib/test/test_codecmaps_tw.py
Python-3.6.1/Lib/test/test_colorsys.py
Python-3.6.1/Lib/test/test_random.py
Python-3.6.1/Lib/test/re_tests.py
Python-3.6.1/Lib/test/test_extcall.py
Python-3.6.1/Lib/test/pycakey.pem
Python-3.6.1/Lib/test/ssl_servers.py
Python-3.6.1/Lib/test/test_zipfile.py
Python-3.6.1/Lib/test/subprocessdata/
Python-3.6.1/Lib/test/subprocessdata/qcat.py
Python-3.6.1/Lib/test/subprocessdata/input_reader.py
Python-3.6.1/Lib/test/subprocessdata/fd_status.py
Python-3.6.1/Lib/test/subprocessdata/qgrep.py
Python-3.6.1/Lib/test/subprocessdata/sigchild_ignore.py
Python-3.6.1/Lib/test/test_grp.py
Python-3.6.1/Lib/test/test_dictviews.py
Python-3.6.1/Lib/test/pystone.py
Python-3.6.1/Lib/test/test_abc.py
Python-3.6.1/Lib/test/revocation.crl
Python-3.6.1/Lib/test/test_codecs.py
Python-3.6.1/Lib/test/test_multiprocessing_forkserver.py
Python-3.6.1/Lib/test/test_codecmaps_kr.py
Python-3.6.1/Lib/test/test_errno.py
Python-3.6.1/Lib/test/test_crypt.py
Python-3.6.1/Lib/test/test_fstring.py
Python-3.6.1/Lib/test/test_lzma.py
Python-3.6.1/Lib/test/test_call.py
Python-3.6.1/Lib/test/test_xml_dom_minicompat.py
Python-3.6.1/Lib/test/badsyntax_future3.py
Python-3.6.1/Lib/test/imp_dummy.py
Python-3.6.1/Lib/test/test_sundry.py
Python-3.6.1/Lib/test/test_http_cookies.py
Python-3.6.1/Lib/test/test_dis.py
Python-3.6.1/Lib/test/test_timeit.py
Python-3.6.1/Lib/test/test_cmd.py
Python-3.6.1/Lib/test/randv3.pck
Python-3.6.1/Lib/test/test_poplib.py
Python-3.6.1/Lib/test/test_rlcompleter.py
Python-3.6.1/Lib/test/future_test1.py
Python-3.6.1/Lib/test/keycert2.pem
Python-3.6.1/Lib/test/badkey.pem
Python-3.6.1/Lib/test/test_glob.py
Python-3.6.1/Lib/test/test_utf8source.py
Python-3.6.1/Lib/test/test_dummy_thread.py
Python-3.6.1/Lib/test/test_json/
Python-3.6.1/Lib/test/test_json/test_recursion.py
Python-3.6.1/Lib/test/test_json/test_tool.py
Python-3.6.1/Lib/test/test_json/test_encode_basestring_ascii.py
Python-3.6.1/Lib/test/test_json/test_scanstring.py
Python-3.6.1/Lib/test/test_json/test_pass1.py
Python-3.6.1/Lib/test/test_json/__init__.py
Python-3.6.1/Lib/test/test_json/test_fail.py
Python-3.6.1/Lib/test/test_json/test_decode.py
Python-3.6.1/Lib/test/test_json/test_pass3.py
Python-3.6.1/Lib/test/test_json/test_indent.py
Python-3.6.1/Lib/test/test_json/test_pass2.py
Python-3.6.1/Lib/test/test_json/test_default.py
Python-3.6.1/Lib/test/test_json/test_separators.py
Python-3.6.1/Lib/test/test_json/__main__.py
Python-3.6.1/Lib/test/test_json/test_float.py
Python-3.6.1/Lib/test/test_json/test_unicode.py
Python-3.6.1/Lib/test/test_json/test_enum.py
Python-3.6.1/Lib/test/test_json/test_dump.py
Python-3.6.1/Lib/test/test_json/test_speedups.py
Python-3.6.1/Lib/test/test__osx_support.py
Python-3.6.1/Lib/test/test_memoryview.py
Python-3.6.1/Lib/test/test_filecmp.py
Python-3.6.1/Lib/test/test_thread.py
Python-3.6.1/Lib/test/test_gzip.py
Python-3.6.1/Lib/test/coding20731.py
Python-3.6.1/Lib/test/test_fractions.py
Python-3.6.1/Lib/test/profilee.py
Python-3.6.1/Lib/test/test_enumerate.py
Python-3.6.1/Lib/test/test_pkgimport.py
Python-3.6.1/Lib/test/test_set.py
Python-3.6.1/Lib/test/test_asyncore.py
Python-3.6.1/Lib/test/test_cgi.py
Python-3.6.1/Lib/test/test_augassign.py
Python-3.6.1/Lib/test/test_bz2.py
Python-3.6.1/Lib/test/memory_watchdog.py
Python-3.6.1/Lib/test/test_weakref.py
Python-3.6.1/Lib/test/mp_preload.py
Python-3.6.1/Lib/test/badsyntax_future5.py
Python-3.6.1/Lib/test/test_file.py
Python-3.6.1/Lib/test/tokenize_tests.txt
Python-3.6.1/Lib/test/audiotests.py
Python-3.6.1/Lib/test/test_baseexception.py
Python-3.6.1/Lib/test/test_abstract_numbers.py
Python-3.6.1/Lib/test/test_codecencodings_kr.py
Python-3.6.1/Lib/test/test_doctest2.txt
Python-3.6.1/Lib/test/test_bytes.py
Python-3.6.1/Lib/test/test_struct.py
Python-3.6.1/Lib/test/test_io.py
Python-3.6.1/Lib/test/test_curses.py
Python-3.6.1/Lib/test/test_tools/
Python-3.6.1/Lib/test/test_tools/test_sundry.py
Python-3.6.1/Lib/test/test_tools/test_pindent.py
Python-3.6.1/Lib/test/test_tools/test_i18n.py
Python-3.6.1/Lib/test/test_tools/test_fixcid.py
Python-3.6.1/Lib/test/test_tools/__init__.py
Python-3.6.1/Lib/test/test_tools/test_pdeps.py
Python-3.6.1/Lib/test/test_tools/test_gprof2html.py
Python-3.6.1/Lib/test/test_tools/__main__.py
Python-3.6.1/Lib/test/test_tools/test_md5sum.py
Python-3.6.1/Lib/test/test_tools/test_unparse.py
Python-3.6.1/Lib/test/test_tools/test_reindent.py
Python-3.6.1/Lib/test/test_select.py
Python-3.6.1/Lib/test/test_format.py
Python-3.6.1/Lib/test/test_codecencodings_tw.py
Python-3.6.1/Lib/test/allsans.pem
Python-3.6.1/Lib/test/test_winsound.py
Python-3.6.1/Lib/test/test_gc.py
Python-3.6.1/Lib/test/test_wait4.py
Python-3.6.1/Lib/test/testcodec.py
Python-3.6.1/Lib/test/xmltests.py
Python-3.6.1/Lib/test/test_cmd_line.py
Python-3.6.1/Lib/test/crashers/
Python-3.6.1/Lib/test/crashers/mutation_inside_cyclegc.py
Python-3.6.1/Lib/test/crashers/infinite_loop_re.py
Python-3.6.1/Lib/test/crashers/bogus_code_obj.py
Python-3.6.1/Lib/test/crashers/trace_at_recursion_limit.py
Python-3.6.1/Lib/test/crashers/README
Python-3.6.1/Lib/test/crashers/underlying_dict.py
Python-3.6.1/Lib/test/crashers/recursive_call.py
Python-3.6.1/Lib/test/crashers/gc_inspection.py
Python-3.6.1/Lib/test/threaded_import_hangers.py
Python-3.6.1/Lib/test/test_traceback.py
Python-3.6.1/Lib/test/tf_inherit_check.py
Python-3.6.1/Lib/test/test_getpass.py
Python-3.6.1/Lib/test/test_iterlen.py
Python-3.6.1/Lib/test/test_compile.py
Python-3.6.1/Lib/test/test_shelve.py
Python-3.6.1/Lib/test/test_scope.py
Python-3.6.1/Lib/test/test_logging.py
Python-3.6.1/Lib/test/zipdir.zip
Python-3.6.1/Lib/test/badsyntax_future7.py
Python-3.6.1/Lib/test/empty.vbs
Python-3.6.1/Lib/test/formatfloat_testcases.txt
Python-3.6.1/Lib/test/relimport.py
Python-3.6.1/Lib/test/pydoc_mod.py
Python-3.6.1/Lib/test/test_contextlib.py
Python-3.6.1/Lib/test/test_getargs2.py
Python-3.6.1/Lib/test/nullbytecert.pem
Python-3.6.1/Lib/test/badsyntax_future9.py
Python-3.6.1/Lib/test/test_lib2to3.py
Python-3.6.1/Lib/test/test_locale.py
Python-3.6.1/Lib/test/test_syslog.py
Python-3.6.1/Lib/test/test_openpty.py
Python-3.6.1/Lib/test/test_sunau.py
Python-3.6.1/Lib/test/test_devpoll.py
Python-3.6.1/Lib/test/inspect_fodder2.py
Python-3.6.1/Lib/test/mailcap.txt
Python-3.6.1/Lib/test/test_pkgutil.py
Python-3.6.1/Lib/test/test_zipimport.py
Python-3.6.1/Lib/test/test_sched.py
Python-3.6.1/Lib/test/test_memoryio.py
Python-3.6.1/Lib/test/test_tix.py
Python-3.6.1/Lib/test/test_capi.py
Python-3.6.1/Lib/test/test_urllib_response.py
Python-3.6.1/Lib/test/test_codecencodings_hk.py
Python-3.6.1/Lib/test/test_msilib.py
Python-3.6.1/Lib/test/test_multiprocessing_fork.py
Python-3.6.1/Lib/test/test_zlib.py
Python-3.6.1/Lib/test/nokia.pem
Python-3.6.1/Lib/test/test_subclassinit.py
Python-3.6.1/Lib/test/sample_doctest_no_docstrings.py
Python-3.6.1/Lib/test/test_userdict.py
Python-3.6.1/Lib/test/test_compileall.py
Python-3.6.1/Lib/test/test_threadedtempfile.py
Python-3.6.1/Lib/test/test_syntax.py
Python-3.6.1/Lib/test/test_trace.py
Python-3.6.1/Lib/test/test_fileinput.py
Python-3.6.1/Lib/test/make_ssl_certs.py
Python-3.6.1/Lib/test/bad_coding2.py
Python-3.6.1/Lib/test/test_ntpath.py
Python-3.6.1/Lib/test/test_smtpd.py
Python-3.6.1/Lib/test/test_listcomps.py
Python-3.6.1/Lib/test/test_future4.py
Python-3.6.1/Lib/test/testtar.tar
Python-3.6.1/Lib/test/test_tarfile.py
Python-3.6.1/Lib/test/support/
Python-3.6.1/Lib/test/support/__init__.py
Python-3.6.1/Lib/test/support/script_helper.py
Python-3.6.1/Lib/test/lock_tests.py
Python-3.6.1/Lib/test/math_testcases.txt
Python-3.6.1/Lib/test/test_docxmlrpc.py
Python-3.6.1/Lib/test/test_py_compile.py
Python-3.6.1/Lib/test/test_bigmem.py
Python-3.6.1/Lib/test/autotest.py
Python-3.6.1/Lib/test/sample_doctest_no_doctests.py
Python-3.6.1/Lib/test/test_marshal.py
Python-3.6.1/Lib/test/test_list.py
Python-3.6.1/Lib/test/test_int.py
Python-3.6.1/Lib/test/test_warnings/
Python-3.6.1/Lib/test/test_warnings/__init__.py
Python-3.6.1/Lib/test/test_warnings/__main__.py
Python-3.6.1/Lib/test/test_warnings/data/
Python-3.6.1/Lib/test/test_warnings/data/import_warning.py
Python-3.6.1/Lib/test/test_warnings/data/stacklevel.py
Python-3.6.1/Lib/test/test_osx_env.py
Python-3.6.1/Lib/test/test_spwd.py
Python-3.6.1/Lib/test/test___future__.py
Python-3.6.1/Lib/test/test_opcodes.py
Python-3.6.1/Lib/test/test_sax.py
Python-3.6.1/Lib/test/test_netrc.py
Python-3.6.1/Lib/test/ssl_key.passwd.pem
Python-3.6.1/Lib/test/test_secrets.py
Python-3.6.1/Lib/test/list_tests.py
Python-3.6.1/Lib/test/test_ssl.py
Python-3.6.1/Lib/test/badsyntax_future6.py
Python-3.6.1/Lib/test/test_zipfile64.py
Python-3.6.1/Lib/test/test_long.py
Python-3.6.1/Lib/test/test_future5.py
Python-3.6.1/Lib/test/doctest_aliases.py
Python-3.6.1/Lib/test/test_charmapcodec.py
Python-3.6.1/Lib/test/test_sys.py
Python-3.6.1/Lib/test/test_fork1.py
Python-3.6.1/Lib/test/badcert.pem
Python-3.6.1/Lib/test/test_string.py
Python-3.6.1/Lib/test/test_math.py
Python-3.6.1/Lib/test/test_ttk_guionly.py
Python-3.6.1/Lib/test/test_codecmaps_cn.py
Python-3.6.1/Lib/test/test_stringprep.py
Python-3.6.1/Lib/test/test_resource.py
Python-3.6.1/Lib/test/encoded_modules/
Python-3.6.1/Lib/test/encoded_modules/module_iso_8859_1.py
Python-3.6.1/Lib/test/encoded_modules/module_koi8_r.py
Python-3.6.1/Lib/test/encoded_modules/__init__.py
Python-3.6.1/Lib/test/test_funcattrs.py
Python-3.6.1/Lib/test/test_configparser.py
Python-3.6.1/Lib/test/test_smtplib.py
Python-3.6.1/Lib/test/test_keyword.py
Python-3.6.1/Lib/test/test_dict_version.py
Python-3.6.1/Lib/test/dis_module.py
Python-3.6.1/Lib/test/final_b.py
Python-3.6.1/Lib/test/test_descrtut.py
Python-3.6.1/Lib/test/test_raise.py
Python-3.6.1/Lib/test/test_range.py
Python-3.6.1/Lib/test/test_pickletools.py
Python-3.6.1/Lib/test/test_atexit.py
Python-3.6.1/Lib/test/test_zipapp.py
Python-3.6.1/Lib/test/test_structseq.py
Python-3.6.1/Lib/test/test_binascii.py
Python-3.6.1/Lib/test/badsyntax_future8.py
Python-3.6.1/Lib/test/test_future.py
Python-3.6.1/Lib/test/test_builtin.py
Python-3.6.1/Lib/test/test_dictcomps.py
Python-3.6.1/Lib/test/test_univnewlines.py
Python-3.6.1/Lib/test/test_runpy.py
Python-3.6.1/Lib/test/test_pstats.py
Python-3.6.1/Lib/test/signalinterproctester.py
Python-3.6.1/Lib/test/test_webbrowser.py
Python-3.6.1/Lib/test/test__opcode.py
Python-3.6.1/Lib/test/cfgparser.1
Python-3.6.1/Lib/test/test_codeccallbacks.py
Python-3.6.1/Lib/test/test_nis.py
Python-3.6.1/Lib/test/test_zipimport_support.py
Python-3.6.1/Lib/test/test_import/
Python-3.6.1/Lib/test/test_import/__init__.py
Python-3.6.1/Lib/test/test_import/__main__.py
Python-3.6.1/Lib/test/test_import/data/
Python-3.6.1/Lib/test/test_import/data/circular_imports/
Python-3.6.1/Lib/test/test_import/data/circular_imports/util.py
Python-3.6.1/Lib/test/test_import/data/circular_imports/indirect.py
Python-3.6.1/Lib/test/test_import/data/circular_imports/basic2.py
Python-3.6.1/Lib/test/test_import/data/circular_imports/basic.py
Python-3.6.1/Lib/test/test_import/data/circular_imports/subpackage.py
Python-3.6.1/Lib/test/test_import/data/circular_imports/rebinding2.py
Python-3.6.1/Lib/test/test_import/data/circular_imports/subpkg/
Python-3.6.1/Lib/test/test_import/data/circular_imports/subpkg/util.py
Python-3.6.1/Lib/test/test_import/data/circular_imports/subpkg/subpackage2.py
Python-3.6.1/Lib/test/test_import/data/circular_imports/rebinding.py
Python-3.6.1/Lib/test/test_contains.py
Python-3.6.1/Lib/test/test_sysconfig.py
Python-3.6.1/Lib/test/test_setcomps.py
Python-3.6.1/Lib/test/audiotest.au
Python-3.6.1/Lib/test/test_base64.py
Python-3.6.1/Lib/test/wrongcert.pem
Python-3.6.1/Lib/test/keycert.pem
Python-3.6.1/Lib/test/test_robotparser.py
Python-3.6.1/Lib/test/test_flufl.py
Python-3.6.1/Lib/test/test_strptime.py
Python-3.6.1/Lib/test/test_shutil.py
Python-3.6.1/Lib/test/test_pdb.py
Python-3.6.1/Lib/test/decimaltestdata/
Python-3.6.1/Lib/test/decimaltestdata/dqNextToward.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqAnd.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqOr.decTest
Python-3.6.1/Lib/test/decimaltestdata/xor.decTest
Python-3.6.1/Lib/test/decimaltestdata/maxmag.decTest
Python-3.6.1/Lib/test/decimaltestdata/divide.decTest
Python-3.6.1/Lib/test/decimaltestdata/multiply.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddBase.decTest
Python-3.6.1/Lib/test/decimaltestdata/minmag.decTest
Python-3.6.1/Lib/test/decimaltestdata/randomBound32.decTest
Python-3.6.1/Lib/test/decimaltestdata/inexact.decTest
Python-3.6.1/Lib/test/decimaltestdata/powersqrt.decTest
Python-3.6.1/Lib/test/decimaltestdata/tointegralx.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddScaleB.decTest
Python-3.6.1/Lib/test/decimaltestdata/add.decTest
Python-3.6.1/Lib/test/decimaltestdata/log10.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddFMA.decTest
Python-3.6.1/Lib/test/decimaltestdata/and.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddEncode.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddShift.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddRotate.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqRemainder.decTest
Python-3.6.1/Lib/test/decimaltestdata/power.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddMax.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddInvert.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqXor.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqMax.decTest
Python-3.6.1/Lib/test/decimaltestdata/rounding.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqAdd.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddNextMinus.decTest
Python-3.6.1/Lib/test/decimaltestdata/subtract.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqBase.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqSameQuantum.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddAdd.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddCopySign.decTest
Python-3.6.1/Lib/test/decimaltestdata/extra.decTest
Python-3.6.1/Lib/test/decimaltestdata/or.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddMaxMag.decTest
Python-3.6.1/Lib/test/decimaltestdata/copynegate.decTest
Python-3.6.1/Lib/test/decimaltestdata/comparetotmag.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqRemainderNear.decTest
Python-3.6.1/Lib/test/decimaltestdata/nextplus.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqToIntegral.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqNextMinus.decTest
Python-3.6.1/Lib/test/decimaltestdata/logb.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddPlus.decTest
Python-3.6.1/Lib/test/decimaltestdata/testall.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddCopy.decTest
Python-3.6.1/Lib/test/decimaltestdata/compare.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddSubtract.decTest
Python-3.6.1/Lib/test/decimaltestdata/decDouble.decTest
Python-3.6.1/Lib/test/decimaltestdata/reduce.decTest
Python-3.6.1/Lib/test/decimaltestdata/samequantum.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqReduce.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqMinus.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddMin.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddRemainder.decTest
Python-3.6.1/Lib/test/decimaltestdata/remainderNear.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddMinMag.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddCopyAbs.decTest
Python-3.6.1/Lib/test/decimaltestdata/decSingle.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqMaxMag.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddQuantize.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddAnd.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqCanonical.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddNextPlus.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddCanonical.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqDivide.decTest
Python-3.6.1/Lib/test/decimaltestdata/ln.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqCopy.decTest
Python-3.6.1/Lib/test/decimaltestdata/minus.decTest
Python-3.6.1/Lib/test/decimaltestdata/abs.decTest
Python-3.6.1/Lib/test/decimaltestdata/plus.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddToIntegral.decTest
Python-3.6.1/Lib/test/decimaltestdata/divideint.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqPlus.decTest
Python-3.6.1/Lib/test/decimaltestdata/tointegral.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqLogB.decTest
Python-3.6.1/Lib/test/decimaltestdata/clamp.decTest
Python-3.6.1/Lib/test/decimaltestdata/decQuad.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqEncode.decTest
Python-3.6.1/Lib/test/decimaltestdata/max.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqShift.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqCompareSig.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddRemainderNear.decTest
Python-3.6.1/Lib/test/decimaltestdata/dsBase.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqMin.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqQuantize.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddMultiply.decTest
Python-3.6.1/Lib/test/decimaltestdata/copysign.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqNextPlus.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddNextToward.decTest
Python-3.6.1/Lib/test/decimaltestdata/remainder.decTest
Python-3.6.1/Lib/test/decimaltestdata/quantize.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddClass.decTest
Python-3.6.1/Lib/test/decimaltestdata/class.decTest
Python-3.6.1/Lib/test/decimaltestdata/base.decTest
Python-3.6.1/Lib/test/decimaltestdata/shift.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddLogB.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddSameQuantum.decTest
Python-3.6.1/Lib/test/decimaltestdata/comparetotal.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddCompareTotal.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqCopySign.decTest
Python-3.6.1/Lib/test/decimaltestdata/rescale.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddOr.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqScaleB.decTest
Python-3.6.1/Lib/test/decimaltestdata/copy.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddXor.decTest
Python-3.6.1/Lib/test/decimaltestdata/invert.decTest
Python-3.6.1/Lib/test/decimaltestdata/nexttoward.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqMinMag.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqCopyAbs.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddCompare.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqDivideInt.decTest
Python-3.6.1/Lib/test/decimaltestdata/nextminus.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqCopyNegate.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddCopyNegate.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqMultiply.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqFMA.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddCompareTotalMag.decTest
Python-3.6.1/Lib/test/decimaltestdata/scaleb.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddDivide.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqInvert.decTest
Python-3.6.1/Lib/test/decimaltestdata/randoms.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddReduce.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqSubtract.decTest
Python-3.6.1/Lib/test/decimaltestdata/rotate.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqRotate.decTest
Python-3.6.1/Lib/test/decimaltestdata/copyabs.decTest
Python-3.6.1/Lib/test/decimaltestdata/dsEncode.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddMinus.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqClass.decTest
Python-3.6.1/Lib/test/decimaltestdata/fma.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddCompareSig.decTest
Python-3.6.1/Lib/test/decimaltestdata/squareroot.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddAbs.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqAbs.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqCompare.decTest
Python-3.6.1/Lib/test/decimaltestdata/exp.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqCompareTotalMag.decTest
Python-3.6.1/Lib/test/decimaltestdata/dqCompareTotal.decTest
Python-3.6.1/Lib/test/decimaltestdata/ddDivideInt.decTest
Python-3.6.1/Lib/test/decimaltestdata/min.decTest
Python-3.6.1/Lib/test/test_doctest.txt
Python-3.6.1/Lib/test/test_metaclass.py
Python-3.6.1/Lib/test/test_script_helper.py
Python-3.6.1/Lib/test/test_tempfile.py
Python-3.6.1/Lib/test/test_deque.py
Python-3.6.1/Lib/test/zip_cp437_header.zip
Python-3.6.1/Lib/test/test_slice.py
Python-3.6.1/Lib/test/test_bigaddrspace.py
Python-3.6.1/Lib/test/ann_module2.py
Python-3.6.1/Lib/test/test_socket.py
Python-3.6.1/Lib/test/test_xmlrpc_net.py
Python-3.6.1/Lib/test/randv2_32.pck
Python-3.6.1/Lib/test/test_symbol.py
Python-3.6.1/Lib/test/keycert4.pem
Python-3.6.1/Lib/test/ssl_key.pem
Python-3.6.1/Lib/test/pycacert.pem
Python-3.6.1/Lib/test/test_mailbox.py
Python-3.6.1/Lib/test/test_sndhdr.py
Python-3.6.1/Lib/test/test_fcntl.py
Python-3.6.1/Lib/test/test_tokenize.py
Python-3.6.1/Lib/test/test_turtle.py
Python-3.6.1/Lib/test/test_compare.py
Python-3.6.1/Lib/test/test_asdl_parser.py
Python-3.6.1/Lib/test/test_unicode_identifiers.py
Python-3.6.1/Lib/test/test_threading.py
Python-3.6.1/Lib/test/test_buffer.py
Python-3.6.1/Lib/test/test_codeop.py
Python-3.6.1/Lib/test/test_yield_from.py
Python-3.6.1/Lib/test/__init__.py
Python-3.6.1/Lib/test/test_nntplib.py
Python-3.6.1/Lib/test/test_idle.py
Python-3.6.1/Lib/test/test_uuid.py
Python-3.6.1/Lib/test/test_with.py
Python-3.6.1/Lib/test/test_ctypes.py
Python-3.6.1/Lib/test/test_xml_etree.py
Python-3.6.1/Lib/test/ssl_cert.pem
Python-3.6.1/Lib/test/test_keywordonlyarg.py
Python-3.6.1/Lib/test/test_types.py
Python-3.6.1/Lib/test/ieee754.txt
Python-3.6.1/Lib/test/xmltestdata/
Python-3.6.1/Lib/test/xmltestdata/simple-ns.xml
Python-3.6.1/Lib/test/xmltestdata/test.xml
Python-3.6.1/Lib/test/xmltestdata/test.xml.out
Python-3.6.1/Lib/test/xmltestdata/simple.xml
Python-3.6.1/Lib/test/test_code.py
Python-3.6.1/Lib/test/reperf.py
Python-3.6.1/Lib/test/test_urllib2.py
Python-3.6.1/Lib/test/test_typing.py
Python-3.6.1/Lib/test/test_structmembers.py
Python-3.6.1/Lib/test/test_statistics.py
Python-3.6.1/Lib/test/test_codecencodings_iso2022.py
Python-3.6.1/Lib/test/tracedmodules/
Python-3.6.1/Lib/test/tracedmodules/testmod.py
Python-3.6.1/Lib/test/tracedmodules/__init__.py
Python-3.6.1/Lib/test/test_plistlib.py
Python-3.6.1/Lib/test/test_sqlite.py
Python-3.6.1/Lib/test/test_largefile.py
Python-3.6.1/Lib/test/test_httplib.py
Python-3.6.1/Lib/test/test_startfile.py
Python-3.6.1/Lib/test/cjkencodings/
Python-3.6.1/Lib/test/cjkencodings/hz-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/euc_jp-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/gbk.txt
Python-3.6.1/Lib/test/cjkencodings/iso2022_kr.txt
Python-3.6.1/Lib/test/cjkencodings/gbk-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/big5hkscs.txt
Python-3.6.1/Lib/test/cjkencodings/gb18030-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/gb2312.txt
Python-3.6.1/Lib/test/cjkencodings/iso2022_jp-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/euc_kr-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/shift_jis-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/cp949.txt
Python-3.6.1/Lib/test/cjkencodings/shift_jisx0213-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/euc_jisx0213.txt
Python-3.6.1/Lib/test/cjkencodings/gb2312-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/iso2022_jp.txt
Python-3.6.1/Lib/test/cjkencodings/euc_kr.txt
Python-3.6.1/Lib/test/cjkencodings/shift_jisx0213.txt
Python-3.6.1/Lib/test/cjkencodings/johab.txt
Python-3.6.1/Lib/test/cjkencodings/euc_jisx0213-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/gb18030.txt
Python-3.6.1/Lib/test/cjkencodings/big5hkscs-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/cp949-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/euc_jp.txt
Python-3.6.1/Lib/test/cjkencodings/shift_jis.txt
Python-3.6.1/Lib/test/cjkencodings/iso2022_kr-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/big5-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/johab-utf8.txt
Python-3.6.1/Lib/test/cjkencodings/big5.txt
Python-3.6.1/Lib/test/cjkencodings/hz.txt
Python-3.6.1/Lib/test/test_linecache.py
Python-3.6.1/Lib/test/test_iter.py
Python-3.6.1/Lib/test/test_crashers.py
Python-3.6.1/Lib/test/pstats.pck
Python-3.6.1/Lib/test/test_pyexpat.py
Python-3.6.1/Lib/test/floating_points.txt
Python-3.6.1/Lib/test/test_urllib2net.py
Python-3.6.1/Lib/test/test_grammar.py
Python-3.6.1/Lib/test/regrtest.py
Python-3.6.1/Lib/test/fork_wait.py
Python-3.6.1/Lib/test/test_queue.py
Python-3.6.1/Lib/test/test_ttk_textonly.py
Python-3.6.1/Lib/test/test_timeout.py
Python-3.6.1/Lib/test/test_collections.py
Python-3.6.1/Lib/test/test_pathlib.py
Python-3.6.1/Lib/test/test_pkg.py
Python-3.6.1/Lib/test/test_source_encoding.py
Python-3.6.1/Lib/test/test__locale.py
Python-3.6.1/Lib/test/test_dtrace.py
Python-3.6.1/Lib/test/test_dbm_gnu.py
Python-3.6.1/Lib/test/test_complex.py
Python-3.6.1/Lib/test/test_minidom.py
Python-3.6.1/Lib/test/cmath_testcases.txt
Python-3.6.1/Lib/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt
Python-3.6.1/Lib/test/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt
Python-3.6.1/Lib/test/test_inspect.py
Python-3.6.1/Lib/test/Sine-1000Hz-300ms.aif
Python-3.6.1/Lib/test/leakers/
Python-3.6.1/Lib/test/leakers/__init__.py
Python-3.6.1/Lib/test/leakers/test_ctypes.py
Python-3.6.1/Lib/test/leakers/README.txt
Python-3.6.1/Lib/test/leakers/test_selftype.py
Python-3.6.1/Lib/test/time_hashlib.py
Python-3.6.1/Lib/test/test_pow.py
Python-3.6.1/Lib/test/sndhdrdata/
Python-3.6.1/Lib/test/sndhdrdata/sndhdr.aiff
Python-3.6.1/Lib/test/sndhdrdata/sndhdr.8svx
Python-3.6.1/Lib/test/sndhdrdata/sndhdr.voc
Python-3.6.1/Lib/test/sndhdrdata/sndhdr.au
Python-3.6.1/Lib/test/sndhdrdata/README
Python-3.6.1/Lib/test/sndhdrdata/sndhdr.aifc
Python-3.6.1/Lib/test/sndhdrdata/sndhdr.sndt
Python-3.6.1/Lib/test/sndhdrdata/sndhdr.hcom
Python-3.6.1/Lib/test/sndhdrdata/sndhdr.wav
Python-3.6.1/Lib/test/bytecode_helper.py
Python-3.6.1/Lib/test/dh1024.pem
Python-3.6.1/Lib/test/test_future3.py
Python-3.6.1/Lib/test/test_dynamic.py
Python-3.6.1/Lib/test/test_array.py
Python-3.6.1/Lib/test/mock_socket.py
Python-3.6.1/Lib/test/ann_module.py
Python-3.6.1/Lib/test/test_dict.py
Python-3.6.1/Lib/test/test_dbm.py
Python-3.6.1/Lib/test/randv2_64.pck
Python-3.6.1/Lib/test/test_code_module.py
Python-3.6.1/Lib/test/test_heapq.py
Python-3.6.1/Lib/test/test_userstring.py
Python-3.6.1/Lib/test/test_pulldom.py
Python-3.6.1/Lib/test/_test_multiprocessing.py
Python-3.6.1/Lib/test/nullcert.pem
Python-3.6.1/Lib/test/test_uu.py
Python-3.6.1/Lib/test/test_pickle.py
Python-3.6.1/Lib/test/185test.db
Python-3.6.1/Lib/test/test_sys_setprofile.py
Python-3.6.1/Lib/test/test_tk.py
Python-3.6.1/Lib/test/test_ioctl.py
Python-3.6.1/Lib/test/test_asyncio/
Python-3.6.1/Lib/test/test_asyncio/echo3.py
Python-3.6.1/Lib/test/test_asyncio/test_tasks.py
Python-3.6.1/Lib/test/test_asyncio/test_selector_events.py
Python-3.6.1/Lib/test/test_asyncio/test_streams.py
Python-3.6.1/Lib/test/test_asyncio/test_locks.py
Python-3.6.1/Lib/test/test_asyncio/test_transports.py
Python-3.6.1/Lib/test/test_asyncio/echo.py
Python-3.6.1/Lib/test/test_asyncio/test_windows_events.py
Python-3.6.1/Lib/test/test_asyncio/ssl_key.pem
Python-3.6.1/Lib/test/test_asyncio/pycacert.pem
Python-3.6.1/Lib/test/test_asyncio/test_events.py
Python-3.6.1/Lib/test/test_asyncio/__init__.py
Python-3.6.1/Lib/test/test_asyncio/test_futures.py
Python-3.6.1/Lib/test/test_asyncio/ssl_cert.pem
Python-3.6.1/Lib/test/test_asyncio/test_proactor_events.py
Python-3.6.1/Lib/test/test_asyncio/test_unix_events.py
Python-3.6.1/Lib/test/test_asyncio/test_queues.py
Python-3.6.1/Lib/test/test_asyncio/echo2.py
Python-3.6.1/Lib/test/test_asyncio/test_subprocess.py
Python-3.6.1/Lib/test/test_asyncio/test_base_events.py
Python-3.6.1/Lib/test/test_asyncio/test_sslproto.py
Python-3.6.1/Lib/test/test_asyncio/__main__.py
Python-3.6.1/Lib/test/test_asyncio/test_pep492.py
Python-3.6.1/Lib/test/test_asyncio/test_windows_utils.py
Python-3.6.1/Lib/test/test_asyncio/keycert3.pem
Python-3.6.1/Lib/test/test_threaded_import.py
Python-3.6.1/Lib/test/audiodata/
Python-3.6.1/Lib/test/audiodata/pluck-pcm16.au
Python-3.6.1/Lib/test/audiodata/pluck-ulaw.aifc
Python-3.6.1/Lib/test/audiodata/pluck-pcm32.wav
Python-3.6.1/Lib/test/audiodata/pluck-pcm8.au
Python-3.6.1/Lib/test/audiodata/pluck-alaw.aifc
Python-3.6.1/Lib/test/audiodata/pluck-ulaw.au
Python-3.6.1/Lib/test/audiodata/pluck-pcm16.wav
Python-3.6.1/Lib/test/audiodata/pluck-pcm8.aiff
Python-3.6.1/Lib/test/audiodata/pluck-pcm24.au
Python-3.6.1/Lib/test/audiodata/pluck-pcm32.au
Python-3.6.1/Lib/test/audiodata/pluck-pcm32.aiff
Python-3.6.1/Lib/test/audiodata/pluck-pcm24.wav
Python-3.6.1/Lib/test/audiodata/pluck-pcm24.aiff
Python-3.6.1/Lib/test/audiodata/pluck-pcm16.aiff
Python-3.6.1/Lib/test/audiodata/pluck-pcm8.wav
Python-3.6.1/Lib/test/badsyntax_pep3120.py
Python-3.6.1/Lib/test/test_doctest3.txt
Python-3.6.1/Lib/test/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt
Python-3.6.1/Lib/test/test_itertools.py
Python-3.6.1/Lib/test/test_signal.py
Python-3.6.1/Lib/test/dtracedata/
Python-3.6.1/Lib/test/dtracedata/call_stack.py
Python-3.6.1/Lib/test/dtracedata/call_stack.stp
Python-3.6.1/Lib/test/dtracedata/gc.stp.expected
Python-3.6.1/Lib/test/dtracedata/assert_usable.d
Python-3.6.1/Lib/test/dtracedata/call_stack.d.expected
Python-3.6.1/Lib/test/dtracedata/gc.d
Python-3.6.1/Lib/test/dtracedata/call_stack.d
Python-3.6.1/Lib/test/dtracedata/assert_usable.stp
Python-3.6.1/Lib/test/dtracedata/call_stack.stp.expected
Python-3.6.1/Lib/test/dtracedata/gc.stp
Python-3.6.1/Lib/test/dtracedata/gc.d.expected
Python-3.6.1/Lib/test/dtracedata/instance.py
Python-3.6.1/Lib/test/dtracedata/line.py
Python-3.6.1/Lib/test/dtracedata/gc.py
Python-3.6.1/Lib/test/dtracedata/line.d
Python-3.6.1/Lib/test/dtracedata/line.d.expected
Python-3.6.1/Lib/test/test_finalization.py
Python-3.6.1/Lib/test/test_tuple.py
Python-3.6.1/Lib/test/test_string_literals.py
Python-3.6.1/Lib/test/bad_coding.py
Python-3.6.1/Lib/test/test_copyreg.py
Python-3.6.1/Lib/test/test_cgitb.py
Python-3.6.1/Lib/test/test_kqueue.py
Python-3.6.1/Lib/test/test_httpservers.py
Python-3.6.1/Lib/test/multibytecodec_support.py
Python-3.6.1/Lib/test/test_quopri.py
Python-3.6.1/Lib/test/test_difflib_expect.html
Python-3.6.1/Lib/test/sortperf.py
Python-3.6.1/Lib/test/test_imghdr.py
Python-3.6.1/Lib/test/test_poll.py
Python-3.6.1/Lib/test/test_subprocess.py
Python-3.6.1/Lib/test/test_sort.py
Python-3.6.1/Lib/test/test_smtpnet.py
Python-3.6.1/Lib/test/test_cmd_line_script.py
Python-3.6.1/Lib/test/test_winconsoleio.py
Python-3.6.1/Lib/test/cfgparser.2
Python-3.6.1/Lib/test/test_symtable.py
Python-3.6.1/Lib/test/test_bisect.py
Python-3.6.1/Lib/test/test_wait3.py
Python-3.6.1/Lib/test/test_ordered_dict.py
Python-3.6.1/Lib/test/test_exception_variations.py
Python-3.6.1/Lib/test/test_argparse.py
Python-3.6.1/Lib/test/test_multibytecodec.py
Python-3.6.1/Lib/test/test_strftime.py
Python-3.6.1/Lib/test/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt
Python-3.6.1/Lib/test/test_ipaddress.py
Python-3.6.1/Lib/test/test_mmap.py
Python-3.6.1/Lib/test/test_ftplib.py
Python-3.6.1/Lib/test/test_selectors.py
Python-3.6.1/Lib/test/test_operator.py
Python-3.6.1/Lib/test/badsyntax_future10.py
Python-3.6.1/Lib/test/test_decimal.py
Python-3.6.1/Lib/test/test_popen.py
Python-3.6.1/Lib/test/test_genexps.py
Python-3.6.1/Lib/test/test_stat.py
Python-3.6.1/Lib/test/datetimetester.py
Python-3.6.1/Lib/test/test_socketserver.py
Python-3.6.1/Lib/test/test_codecmaps_hk.py
Python-3.6.1/Lib/test/curses_tests.py
Python-3.6.1/Lib/test/test_decorators.py
Python-3.6.1/Lib/test/test_pyclbr.py
Python-3.6.1/Lib/test/test_shlex.py
Python-3.6.1/Lib/test/ssltests.py
Python-3.6.1/Lib/test/test_xdrlib.py
Python-3.6.1/Lib/test/test_multiprocessing_spawn.py
Python-3.6.1/Lib/test/test_readline.py
Python-3.6.1/Lib/test/test_fnmatch.py
Python-3.6.1/Lib/test/test_calendar.py
Python-3.6.1/Lib/test/test_pty.py
Python-3.6.1/Lib/test/test_datetime.py
Python-3.6.1/Lib/test/final_a.py
Python-3.6.1/Lib/test/test_cmath.py
Python-3.6.1/Lib/test/test_pydoc.py
Python-3.6.1/Lib/test/test_urllib.py
Python-3.6.1/Lib/test/test_eof.py
Python-3.6.1/Lib/test/test_hash.py
Python-3.6.1/Lib/test/test_profile.py
Python-3.6.1/Lib/test/selfsigned_pythontestdotnet.pem
Python-3.6.1/Lib/test/sgml_input.html
Python-3.6.1/Lib/test/test_parser.py
Python-3.6.1/Lib/test/test_cprofile.py
Python-3.6.1/Lib/test/win_console_handler.py
Python-3.6.1/Lib/test/test_time.py
Python-3.6.1/Lib/test/test_file_eintr.py
Python-3.6.1/Lib/test/test_urllib2_localnet.py
Python-3.6.1/Lib/test/__main__.py
Python-3.6.1/Lib/test/test_unpack_ex.py
Python-3.6.1/Lib/test/test_numeric_tower.py
Python-3.6.1/Lib/test/mod_generics_cache.py
Python-3.6.1/Lib/test/test_global.py
Python-3.6.1/Lib/test/test_float.py
Python-3.6.1/Lib/test/test_wave.py
Python-3.6.1/Lib/test/double_const.py
Python-3.6.1/Lib/test/test_concurrent_futures.py
Python-3.6.1/Lib/test/test_pprint.py
Python-3.6.1/Lib/test/test_coroutines.py
Python-3.6.1/Lib/test/test_bool.py
Python-3.6.1/Lib/test/test_unicodedata.py
Python-3.6.1/Lib/test/test_ucn.py
Python-3.6.1/Lib/test/test_unicode_file.py
Python-3.6.1/Lib/test/test_imaplib.py
Python-3.6.1/Lib/test/test_textwrap.py
Python-3.6.1/Lib/test/sample_doctest.py
Python-3.6.1/Lib/test/test_asyncgen.py
Python-3.6.1/Lib/test/test_http_cookiejar.py
Python-3.6.1/Lib/test/test_pipes.py
Python-3.6.1/Lib/test/test_strtod.py
Python-3.6.1/Lib/test/test_mimetypes.py
Python-3.6.1/Lib/test/test_email/
Python-3.6.1/Lib/test/test_email/test__header_value_parser.py
Python-3.6.1/Lib/test/test_email/test__encoded_words.py
Python-3.6.1/Lib/test/test_email/test_inversion.py
Python-3.6.1/Lib/test/test_email/torture_test.py
Python-3.6.1/Lib/test/test_email/test_email.py
Python-3.6.1/Lib/test/test_email/test_generator.py
Python-3.6.1/Lib/test/test_email/__init__.py
Python-3.6.1/Lib/test/test_email/test_policy.py
Python-3.6.1/Lib/test/test_email/test_defect_handling.py
Python-3.6.1/Lib/test/test_email/test_contentmanager.py
Python-3.6.1/Lib/test/test_email/test_headerregistry.py
Python-3.6.1/Lib/test/test_email/test_asian_codecs.py
Python-3.6.1/Lib/test/test_email/test_parser.py
Python-3.6.1/Lib/test/test_email/__main__.py
Python-3.6.1/Lib/test/test_email/test_pickleable.py
Python-3.6.1/Lib/test/test_email/data/
Python-3.6.1/Lib/test/test_email/data/msg_33.txt
Python-3.6.1/Lib/test/test_email/data/msg_08.txt
Python-3.6.1/Lib/test/test_email/data/msg_28.txt
Python-3.6.1/Lib/test/test_email/data/msg_31.txt
Python-3.6.1/Lib/test/test_email/data/msg_44.txt
Python-3.6.1/Lib/test/test_email/data/msg_21.txt
Python-3.6.1/Lib/test/test_email/data/msg_06.txt
Python-3.6.1/Lib/test/test_email/data/msg_04.txt
Python-3.6.1/Lib/test/test_email/data/msg_09.txt
Python-3.6.1/Lib/test/test_email/data/msg_17.txt
Python-3.6.1/Lib/test/test_email/data/msg_32.txt
Python-3.6.1/Lib/test/test_email/data/msg_12a.txt
Python-3.6.1/Lib/test/test_email/data/msg_45.txt
Python-3.6.1/Lib/test/test_email/data/msg_38.txt
Python-3.6.1/Lib/test/test_email/data/msg_11.txt
Python-3.6.1/Lib/test/test_email/data/msg_35.txt
Python-3.6.1/Lib/test/test_email/data/audiotest.au
Python-3.6.1/Lib/test/test_email/data/msg_05.txt
Python-3.6.1/Lib/test/test_email/data/msg_22.txt
Python-3.6.1/Lib/test/test_email/data/msg_19.txt
Python-3.6.1/Lib/test/test_email/data/msg_23.txt
Python-3.6.1/Lib/test/test_email/data/msg_34.txt
Python-3.6.1/Lib/test/test_email/data/msg_43.txt
Python-3.6.1/Lib/test/test_email/data/msg_02.txt
Python-3.6.1/Lib/test/test_email/data/msg_42.txt
Python-3.6.1/Lib/test/test_email/data/msg_37.txt
Python-3.6.1/Lib/test/test_email/data/msg_41.txt
Python-3.6.1/Lib/test/test_email/data/msg_24.txt
Python-3.6.1/Lib/test/test_email/data/msg_27.txt
Python-3.6.1/Lib/test/test_email/data/msg_12.txt
Python-3.6.1/Lib/test/test_email/data/msg_20.txt
Python-3.6.1/Lib/test/test_email/data/msg_10.txt
Python-3.6.1/Lib/test/test_email/data/msg_03.txt
Python-3.6.1/Lib/test/test_email/data/msg_01.txt
Python-3.6.1/Lib/test/test_email/data/msg_16.txt
Python-3.6.1/Lib/test/test_email/data/msg_25.txt
Python-3.6.1/Lib/test/test_email/data/msg_13.txt
Python-3.6.1/Lib/test/test_email/data/msg_39.txt
Python-3.6.1/Lib/test/test_email/data/msg_29.txt
Python-3.6.1/Lib/test/test_email/data/PyBanner048.gif
Python-3.6.1/Lib/test/test_email/data/msg_15.txt
Python-3.6.1/Lib/test/test_email/data/msg_07.txt
Python-3.6.1/Lib/test/test_email/data/msg_30.txt
Python-3.6.1/Lib/test/test_email/data/msg_36.txt
Python-3.6.1/Lib/test/test_email/data/msg_26.txt
Python-3.6.1/Lib/test/test_email/data/msg_46.txt
Python-3.6.1/Lib/test/test_email/data/msg_14.txt
Python-3.6.1/Lib/test/test_email/data/msg_18.txt
Python-3.6.1/Lib/test/test_email/data/msg_40.txt
Python-3.6.1/Lib/test/test_email/test_message.py
Python-3.6.1/Lib/test/test_email/test_utils.py
Python-3.6.1/Lib/test/test_os.py
Python-3.6.1/Lib/test/data/
Python-3.6.1/Lib/test/data/README
Python-3.6.1/Lib/test/test_tcl.py
Python-3.6.1/Lib/test/test_index.py
Python-3.6.1/Lib/test/test_csv.py
Python-3.6.1/Lib/test/test_doctest4.txt
Python-3.6.1/Lib/test/test_tracemalloc.py
Python-3.6.1/Lib/test/test_urlparse.py
Python-3.6.1/Lib/test/test_gettext.py
Python-3.6.1/Lib/test/libregrtest/
Python-3.6.1/Lib/test/libregrtest/runtest_mp.py
Python-3.6.1/Lib/test/libregrtest/setup.py
Python-3.6.1/Lib/test/libregrtest/refleak.py
Python-3.6.1/Lib/test/libregrtest/runtest.py
Python-3.6.1/Lib/test/libregrtest/__init__.py
Python-3.6.1/Lib/test/libregrtest/save_env.py
Python-3.6.1/Lib/test/libregrtest/main.py
Python-3.6.1/Lib/test/libregrtest/cmdline.py
Python-3.6.1/Lib/test/test_mailcap.py
Python-3.6.1/Lib/test/test_re.py
Python-3.6.1/Lib/test/test_distutils.py
Python-3.6.1/Lib/test/test_sys_settrace.py
Python-3.6.1/Lib/test/test_unittest.py
Python-3.6.1/Lib/test/test_typechecks.py
Python-3.6.1/Lib/test/test_binhex.py
Python-3.6.1/Lib/test/eintrdata/
Python-3.6.1/Lib/test/eintrdata/eintr_tester.py
Python-3.6.1/Lib/test/test_asynchat.py
Python-3.6.1/Lib/test/test_richcmp.py
Python-3.6.1/Lib/test/outstanding_bugs.py
Python-3.6.1/Lib/test/test_super.py
Python-3.6.1/Lib/test/string_tests.py
Python-3.6.1/Lib/test/cfgparser.3
Python-3.6.1/Lib/test/future_test2.py
Python-3.6.1/Lib/test/test_copy.py
Python-3.6.1/Lib/test/test_urllibnet.py
Python-3.6.1/Lib/test/test_defaultdict.py
Python-3.6.1/Lib/test/test___all__.py
Python-3.6.1/Lib/test/badsyntax_future4.py
Python-3.6.1/Lib/test/inspect_fodder.py
Python-3.6.1/Lib/test/exception_hierarchy.txt
Python-3.6.1/Lib/test/test_ensurepip.py
Python-3.6.1/Lib/test/test_bufio.py
Python-3.6.1/Lib/test/test_exception_hierarchy.py
Python-3.6.1/Lib/test/mime.types
Python-3.6.1/Lib/test/test_threading_local.py
Python-3.6.1/Lib/test/test_support.py
Python-3.6.1/Lib/test/test_weakset.py
Python-3.6.1/Lib/test/test_longexp.py
Python-3.6.1/Lib/test/test_unary.py
Python-3.6.1/Lib/test/test_reprlib.py
Python-3.6.1/Lib/test/test_htmlparser.py
Python-3.6.1/Lib/test/keycert.passwd.pem
Python-3.6.1/Lib/test/test_platform.py
Python-3.6.1/Lib/test/test_codecmaps_jp.py
Python-3.6.1/Lib/test/test_userlist.py
Python-3.6.1/Lib/test/test_multiprocessing_main_handling.py
Python-3.6.1/Lib/test/badsyntax_3131.py
Python-3.6.1/Lib/test/test_fileio.py
Python-3.6.1/Lib/test/test_peepholer.py
Python-3.6.1/Lib/test/test_property.py
Python-3.6.1/Lib/test/test_dbm_dumb.py
Python-3.6.1/Lib/test/test_codecencodings_cn.py
Python-3.6.1/Lib/test/test_descr.py
Python-3.6.1/Lib/test/test_hashlib.py
Python-3.6.1/Lib/test/test_html.py
Python-3.6.1/Lib/test/test_dbm_ndbm.py
Python-3.6.1/Lib/test/test_aifc.py
Python-3.6.1/Lib/test/test_audioop.py
Python-3.6.1/Lib/test/test_ossaudiodev.py
Python-3.6.1/Lib/test/test_site.py
Python-3.6.1/Lib/test/mapping_tests.py
Python-3.6.1/Lib/test/test_imp.py
Python-3.6.1/Lib/test/test_normalization.py
Python-3.6.1/Lib/test/test_gdb.py
Python-3.6.1/Lib/test/test_threadsignals.py
Python-3.6.1/Lib/test/test_winreg.py
Python-3.6.1/Lib/test/test_isinstance.py
Python-3.6.1/Lib/test/pickletester.py
Python-3.6.1/Lib/test/test_posixpath.py
Python-3.6.1/Lib/test/test_doctest.py
Python-3.6.1/Lib/test/test_xml_etree_c.py
Python-3.6.1/Lib/test/test_telnetlib.py
Python-3.6.1/Lib/test/test_functools.py
Python-3.6.1/Lib/test/test_macurl2path.py
Python-3.6.1/Lib/test/test_class.py
Python-3.6.1/Lib/test/test_ast.py
Python-3.6.1/Lib/test/ann_module3.py
Python-3.6.1/Lib/test/mp_fork_bomb.py
Python-3.6.1/Lib/test/test_exceptions.py
Python-3.6.1/Lib/test/test_regrtest.py
Python-3.6.1/Lib/test/test_optparse.py
Python-3.6.1/Lib/test/test_hmac.py
Python-3.6.1/Lib/test/test_unicode.py
Python-3.6.1/Lib/test/test_generators.py
Python-3.6.1/Lib/test/imghdrdata/
Python-3.6.1/Lib/test/imghdrdata/python.webp
Python-3.6.1/Lib/test/imghdrdata/python.jpg
Python-3.6.1/Lib/test/imghdrdata/python.xbm
Python-3.6.1/Lib/test/imghdrdata/python.pbm
Python-3.6.1/Lib/test/imghdrdata/python.exr
Python-3.6.1/Lib/test/imghdrdata/python.png
Python-3.6.1/Lib/test/imghdrdata/python.pgm
Python-3.6.1/Lib/test/imghdrdata/python.ppm
Python-3.6.1/Lib/test/imghdrdata/python.tiff
Python-3.6.1/Lib/test/imghdrdata/python.sgi
Python-3.6.1/Lib/test/imghdrdata/python.ras
Python-3.6.1/Lib/test/imghdrdata/python.gif
Python-3.6.1/Lib/test/imghdrdata/python.bmp
Python-3.6.1/Lib/test/test_enum.py
Python-3.6.1/Lib/test/capath/
Python-3.6.1/Lib/test/capath/6e88d7b8.0
Python-3.6.1/Lib/test/capath/99d0fa06.0
Python-3.6.1/Lib/test/capath/5ed36f99.0
Python-3.6.1/Lib/test/capath/ceff1710.0
Python-3.6.1/Lib/test/capath/4e1295a3.0
Python-3.6.1/Lib/test/capath/b1930218.0
Python-3.6.1/Lib/test/test_eintr.py
Python-3.6.1/Lib/test/test_unicode_file_functions.py
Python-3.6.1/Lib/test/seq_tests.py
Python-3.6.1/Lib/test/test_faulthandler.py
Python-3.6.1/Lib/test/test_print.py
Python-3.6.1/Lib/test/test_modulefinder.py
Python-3.6.1/Lib/test/test_importlib/
Python-3.6.1/Lib/test/test_importlib/test_lazy.py
Python-3.6.1/Lib/test/test_importlib/test_abc.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project3/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project3/parent/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/three.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project1/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project1/parent/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/both_portions/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/portion2/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/portion2/foo/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/portion1/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/portion1/foo/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project2/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project2/parent/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/missing_directory.zip
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/top_level_portion1.zip
Python-3.6.1/Lib/test/test_importlib/namespace_pkgs/nested_portion1.zip
Python-3.6.1/Lib/test/test_importlib/test_api.py
Python-3.6.1/Lib/test/test_importlib/util.py
Python-3.6.1/Lib/test/test_importlib/test_locks.py
Python-3.6.1/Lib/test/test_importlib/test_windows.py
Python-3.6.1/Lib/test/test_importlib/builtin/
Python-3.6.1/Lib/test/test_importlib/builtin/__init__.py
Python-3.6.1/Lib/test/test_importlib/builtin/__main__.py
Python-3.6.1/Lib/test/test_importlib/builtin/test_loader.py
Python-3.6.1/Lib/test/test_importlib/builtin/test_finder.py
Python-3.6.1/Lib/test/test_importlib/test_spec.py
Python-3.6.1/Lib/test/test_importlib/__init__.py
Python-3.6.1/Lib/test/test_importlib/test_util.py
Python-3.6.1/Lib/test/test_importlib/extension/
Python-3.6.1/Lib/test/test_importlib/extension/test_path_hook.py
Python-3.6.1/Lib/test/test_importlib/extension/__init__.py
Python-3.6.1/Lib/test/test_importlib/extension/test_case_sensitivity.py
Python-3.6.1/Lib/test/test_importlib/extension/__main__.py
Python-3.6.1/Lib/test/test_importlib/extension/test_loader.py
Python-3.6.1/Lib/test/test_importlib/extension/test_finder.py
Python-3.6.1/Lib/test/test_importlib/test_namespace_pkgs.py
Python-3.6.1/Lib/test/test_importlib/__main__.py
Python-3.6.1/Lib/test/test_importlib/frozen/
Python-3.6.1/Lib/test/test_importlib/frozen/__init__.py
Python-3.6.1/Lib/test/test_importlib/frozen/__main__.py
Python-3.6.1/Lib/test/test_importlib/frozen/test_loader.py
Python-3.6.1/Lib/test/test_importlib/frozen/test_finder.py
Python-3.6.1/Lib/test/test_importlib/abc.py
Python-3.6.1/Lib/test/test_importlib/import_/
Python-3.6.1/Lib/test/test_importlib/import_/test_fromlist.py
Python-3.6.1/Lib/test/test_importlib/import_/test_relative_imports.py
Python-3.6.1/Lib/test/test_importlib/import_/test_api.py
Python-3.6.1/Lib/test/test_importlib/import_/test_packages.py
Python-3.6.1/Lib/test/test_importlib/import_/test_meta_path.py
Python-3.6.1/Lib/test/test_importlib/import_/test_path.py
Python-3.6.1/Lib/test/test_importlib/import_/__init__.py
Python-3.6.1/Lib/test/test_importlib/import_/test_caching.py
Python-3.6.1/Lib/test/test_importlib/import_/__main__.py
Python-3.6.1/Lib/test/test_importlib/import_/test___package__.py
Python-3.6.1/Lib/test/test_importlib/import_/test___loader__.py
Python-3.6.1/Lib/test/test_importlib/source/
Python-3.6.1/Lib/test/test_importlib/source/test_file_loader.py
Python-3.6.1/Lib/test/test_importlib/source/test_path_hook.py
Python-3.6.1/Lib/test/test_importlib/source/__init__.py
Python-3.6.1/Lib/test/test_importlib/source/test_source_encoding.py
Python-3.6.1/Lib/test/test_importlib/source/test_case_sensitivity.py
Python-3.6.1/Lib/test/test_importlib/source/__main__.py
Python-3.6.1/Lib/test/test_importlib/source/test_finder.py
Python-3.6.1/Lib/test/test_dynamicclassattribute.py
Python-3.6.1/Lib/test/pydocfodder.py
Python-3.6.1/Lib/test/gdb_sample.py
Python-3.6.1/Lib/test/test_xmlrpc.py
Python-3.6.1/Lib/test/sha256.pem
Python-3.6.1/Lib/test/test_frame.py
Python-3.6.1/Lib/test/test_unpack.py
Python-3.6.1/Lib/test/test_int_literal.py
Python-3.6.1/Lib/test/pyclbr_input.py
Python-3.6.1/Lib/test/test_module.py
Python-3.6.1/Lib/test/test_doctest2.py
Python-3.6.1/Lib/test/test_difflib.py
Python-3.6.1/Lib/test/test_getopt.py
Python-3.6.1/Lib/test/test_genericpath.py
Python-3.6.1/Lib/test/test_posix.py
Python-3.6.1/Lib/test/test_dummy_threading.py
Python-3.6.1/Lib/test/test_venv.py
Python-3.6.1/Lib/test/keycert3.pem
Python-3.6.1/Lib/test/test_macpath.py
Python-3.6.1/Lib/test/test_pwd.py
Python-3.6.1/Lib/test/test_codecencodings_jp.py
Python-3.6.1/Lib/test/test_epoll.py
Python-3.6.1/Lib/test/test_generator_stop.py
Python-3.6.1/Lib/test/test_wsgiref.py
Python-3.6.1/Lib/test/test_binop.py
Python-3.6.1/Lib/chunk.py
Python-3.6.1/Lib/json/
Python-3.6.1/Lib/json/tool.py
Python-3.6.1/Lib/json/scanner.py
Python-3.6.1/Lib/json/__init__.py
Python-3.6.1/Lib/json/encoder.py
Python-3.6.1/Lib/json/decoder.py
Python-3.6.1/Lib/sched.py
Python-3.6.1/Lib/imghdr.py
Python-3.6.1/Lib/numbers.py
Python-3.6.1/Lib/dis.py
Python-3.6.1/Lib/uu.py
Python-3.6.1/Lib/string.py
Python-3.6.1/Lib/lzma.py
Python-3.6.1/Lib/importlib/
Python-3.6.1/Lib/importlib/_bootstrap_external.py
Python-3.6.1/Lib/importlib/util.py
Python-3.6.1/Lib/importlib/_bootstrap.py
Python-3.6.1/Lib/importlib/__init__.py
Python-3.6.1/Lib/importlib/machinery.py
Python-3.6.1/Lib/importlib/abc.py
Python-3.6.1/Lib/imaplib.py
Python-3.6.1/Lib/mailbox.py
Python-3.6.1/Lib/doctest.py
Python-3.6.1/Lib/glob.py
Python-3.6.1/Lib/_weakrefset.py
Python-3.6.1/Lib/sunau.py
Python-3.6.1/Lib/symbol.py
Python-3.6.1/Lib/py_compile.py
Python-3.6.1/Lib/enum.py
Python-3.6.1/Lib/smtplib.py
Python-3.6.1/Lib/mailcap.py
Python-3.6.1/Lib/poplib.py
Python-3.6.1/Lib/urllib/
Python-3.6.1/Lib/urllib/request.py
Python-3.6.1/Lib/urllib/robotparser.py
Python-3.6.1/Lib/urllib/error.py
Python-3.6.1/Lib/urllib/parse.py
Python-3.6.1/Lib/urllib/response.py
Python-3.6.1/Lib/urllib/__init__.py
Python-3.6.1/Lib/_compat_pickle.py
Python-3.6.1/Grammar/
Python-3.6.1/Grammar/Grammar
Python-3.6.1/Python/
Python-3.6.1/Python/random.c
Python-3.6.1/Python/pythonrun.c
Python-3.6.1/Python/thread_foobar.h
Python-3.6.1/Python/importlib_external.h
Python-3.6.1/Python/dynload_aix.c
Python-3.6.1/Python/dtoa.c
Python-3.6.1/Python/dynload_stub.c
Python-3.6.1/Python/importdl.c
Python-3.6.1/Python/ceval.c
Python-3.6.1/Python/asdl.c
Python-3.6.1/Python/wordcode_helpers.h
Python-3.6.1/Python/pytime.c
Python-3.6.1/Python/getversion.c
Python-3.6.1/Python/dynload_hpux.c
Python-3.6.1/Python/getcopyright.c
Python-3.6.1/Python/importdl.h
Python-3.6.1/Python/getplatform.c
Python-3.6.1/Python/pystrtod.c
Python-3.6.1/Python/modsupport.c
Python-3.6.1/Python/strdup.c
Python-3.6.1/Python/dynload_next.c
Python-3.6.1/Python/future.c
Python-3.6.1/Python/importlib.h
Python-3.6.1/Python/pystrhex.c
Python-3.6.1/Python/condvar.h
Python-3.6.1/Python/pyarena.c
Python-3.6.1/Python/thread_nt.h
Python-3.6.1/Python/README
Python-3.6.1/Python/structmember.c
Python-3.6.1/Python/import.c
Python-3.6.1/Python/getopt.c
Python-3.6.1/Python/pymath.c
Python-3.6.1/Python/pylifecycle.c
Python-3.6.1/Python/Python-ast.c
Python-3.6.1/Python/dynload_shlib.c
Python-3.6.1/Python/codecs.c
Python-3.6.1/Python/sysmodule.c
Python-3.6.1/Python/getargs.c
Python-3.6.1/Python/frozenmain.c
Python-3.6.1/Python/pystate.c
Python-3.6.1/Python/dynload_win.c
Python-3.6.1/Python/sigcheck.c
Python-3.6.1/Python/errors.c
Python-3.6.1/Python/dynamic_annotations.c
Python-3.6.1/Python/clinic/
Python-3.6.1/Python/clinic/bltinmodule.c.h
Python-3.6.1/Python/clinic/import.c.h
Python-3.6.1/Python/formatter_unicode.c
Python-3.6.1/Python/bltinmodule.c
Python-3.6.1/Python/pyctype.c
Python-3.6.1/Python/symtable.c
Python-3.6.1/Python/traceback.c
Python-3.6.1/Python/dynload_dl.c
Python-3.6.1/Python/opcode_targets.h
Python-3.6.1/Python/getcompiler.c
Python-3.6.1/Python/marshal.c
Python-3.6.1/Python/frozen.c
Python-3.6.1/Python/mystrtoul.c
Python-3.6.1/Python/pystrcmp.c
Python-3.6.1/Python/peephole.c
Python-3.6.1/Python/thread.c
Python-3.6.1/Python/pyfpe.c
Python-3.6.1/Python/graminit.c
Python-3.6.1/Python/fileutils.c
Python-3.6.1/Python/pyhash.c
Python-3.6.1/Python/thread_pthread.h
Python-3.6.1/Python/dup2.c
Python-3.6.1/Python/ceval_gil.h
Python-3.6.1/Python/ast.c
Python-3.6.1/Python/_warnings.c
Python-3.6.1/Python/compile.c
Python-3.6.1/Python/mysnprintf.c
Python-3.6.1/Python/makeopcodetargets.py
Python-3.6.1/Programs/
Python-3.6.1/Programs/_testembed.c
Python-3.6.1/Programs/README
Python-3.6.1/Programs/python.c
Python-3.6.1/Programs/_freeze_importlib.c
Python-3.6.1/Objects/
Python-3.6.1/Objects/dictobject.c
Python-3.6.1/Objects/dict-common.h
Python-3.6.1/Objects/exceptions.c
Python-3.6.1/Objects/funcobject.c
Python-3.6.1/Objects/capsule.c
Python-3.6.1/Objects/unicodetype_db.h
Python-3.6.1/Objects/boolobject.c
Python-3.6.1/Objects/fileobject.c
Python-3.6.1/Objects/longobject.c
Python-3.6.1/Objects/odictobject.c
Python-3.6.1/Objects/setobject.c
Python-3.6.1/Objects/weakrefobject.c
Python-3.6.1/Objects/memoryobject.c
Python-3.6.1/Objects/descrobject.c
Python-3.6.1/Objects/frameobject.c
Python-3.6.1/Objects/cellobject.c
Python-3.6.1/Objects/codeobject.c
Python-3.6.1/Objects/sliceobject.c
Python-3.6.1/Objects/classobject.c
Python-3.6.1/Objects/moduleobject.c
Python-3.6.1/Objects/enumobject.c
Python-3.6.1/Objects/rangeobject.c
Python-3.6.1/Objects/complexobject.c
Python-3.6.1/Objects/README
Python-3.6.1/Objects/iterobject.c
Python-3.6.1/Objects/bytesobject.c
Python-3.6.1/Objects/unicodectype.c
Python-3.6.1/Objects/genobject.c
Python-3.6.1/Objects/stringlib/
Python-3.6.1/Objects/stringlib/ctype.h
Python-3.6.1/Objects/stringlib/count.h
Python-3.6.1/Objects/stringlib/eq.h
Python-3.6.1/Objects/stringlib/partition.h
Python-3.6.1/Objects/stringlib/unicodedefs.h
Python-3.6.1/Objects/stringlib/stringdefs.h
Python-3.6.1/Objects/stringlib/fastsearch.h
Python-3.6.1/Objects/stringlib/join.h
Python-3.6.1/Objects/stringlib/ucs2lib.h
Python-3.6.1/Objects/stringlib/find_max_char.h
Python-3.6.1/Objects/stringlib/unicode_format.h
Python-3.6.1/Objects/stringlib/ucs4lib.h
Python-3.6.1/Objects/stringlib/transmogrify.h
Python-3.6.1/Objects/stringlib/ucs1lib.h
Python-3.6.1/Objects/stringlib/replace.h
Python-3.6.1/Objects/stringlib/asciilib.h
Python-3.6.1/Objects/stringlib/localeutil.h
Python-3.6.1/Objects/stringlib/codecs.h
Python-3.6.1/Objects/stringlib/README.txt
Python-3.6.1/Objects/stringlib/undef.h
Python-3.6.1/Objects/stringlib/find.h
Python-3.6.1/Objects/stringlib/split.h
Python-3.6.1/Objects/unicodeobject.c
Python-3.6.1/Objects/listsort.txt
Python-3.6.1/Objects/accu.c
Python-3.6.1/Objects/structseq.c
Python-3.6.1/Objects/namespaceobject.c
Python-3.6.1/Objects/typeslots.py
Python-3.6.1/Objects/floatobject.c
Python-3.6.1/Objects/clinic/
Python-3.6.1/Objects/clinic/unicodeobject.c.h
Python-3.6.1/Objects/clinic/bytearrayobject.c.h
Python-3.6.1/Objects/clinic/bytesobject.c.h
Python-3.6.1/Objects/clinic/dictobject.c.h
Python-3.6.1/Objects/bytearrayobject.c
Python-3.6.1/Objects/typeobject.c
Python-3.6.1/Objects/lnotab_notes.txt
Python-3.6.1/Objects/methodobject.c
Python-3.6.1/Objects/tupleobject.c
Python-3.6.1/Objects/obmalloc.c
Python-3.6.1/Objects/object.c
Python-3.6.1/Objects/abstract.c
Python-3.6.1/Objects/listobject.c
Python-3.6.1/Objects/bytes_methods.c
Python-3.6.1/Objects/dictnotes.txt
Python-3.6.1/Objects/typeslots.inc
[root@localhost Python-3.6.1]# 

 

[root@localhost Python-3.6.1]# 
[root@localhost Python-3.6.1]# ./configure && make && make install
# 。。。。。。。。。。。。。。。后续执行内容省略

 


 

 

 

 

3、建立 Python 虚拟环境

因为 CentOS 6/7 自带的是 Python2,而 Yum 等工具依赖原来的 Python,为了不扰乱原来的环境我们来使用 Python 虚拟环境

cd /opt

python3 -m venv py3

source /opt/py3/bin/activate

# 看到下面的提示符代表成功

 

 

以后运行 Jumpserver 都要先运行以上 source 命令,以下所有命令均在该虚拟环境中运行

 

[root@localhost Python-3.6.1]# cd /opt
[root@localhost opt]# ls
atlassian  rh
[root@localhost opt]# python3 -m venv py3
[root@localhost opt]# ls
atlassian  py3  rh
[root@localhost opt]# source /opt/py3/bin/activate
(py3) [root@localhost opt]# 

 

 

 

 

四、安装 Jumpserver 1.3.3

1、下载或 Clone 项目

项目提交较多时 git clone较大,你可以选择去 Github 项目页面直接下载zip包。

git clone https://github.com/jumpserver/jumpserver.git && cd jumpserver && git checkout master

echo "source /opt/py3/bin/activate" > /opt/jumpserver/.env  # 进入 jumpserver 目录时将自动载入 python 虚拟环境

# 首次进入 jumpserver 文件夹会有提示,按 y 即可

# Are you sure you want to allow this? (y/N) y

 

[root@localhost opt]# source /opt/py3/bin/activate
(py3) [root@localhost opt]# git clone https://github.com/jumpserver/jumpserver.git && cd jumpserver && git checkout master

Cloning into 'jumpserver'...
remote: Enumerating objects: 370, done.
remote: Counting objects: 100% (370/370), done.
remote: Compressing objects: 100% (253/253), done.
remote: Total 57555 (delta 198), reused 219 (delta 113), pack-reused 57185
Receiving objects: 100% (57555/57555), 60.03 MiB | 156.00 KiB/s, done.
Resolving deltas: 100% (39581/39581), done.
error: pathspec 'mastergit' did not match any file(s) known to git.
error: pathspec 'clone' did not match any file(s) known to git.
error: pathspec 'https:/github.com/jumpserver/jumpserver.git' did not match any file(s) known to git.
(py3) [root@localhost jumpserver]#
(py3) [root@localhost jumpserver]# echo "source /opt/py3/bin/activate" > /opt/jumpserver/.env

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 


 

posted @ 2021-04-01 15:12  一品堂.技术学习笔记  阅读(1840)  评论(0编辑  收藏  举报