diff --git a/libc/runtime/sysconf.c b/libc/runtime/sysconf.c
index d84f7de89..779c1fc3a 100644
--- a/libc/runtime/sysconf.c
+++ b/libc/runtime/sysconf.c
@@ -16,8 +16,21 @@
 │ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR             │
 │ PERFORMANCE OF THIS SOFTWARE.                                                │
 ╚─────────────────────────────────────────────────────────────────────────────*/
+#include "libc/calls/calls.h"
+#include "libc/calls/struct/rlimit.h"
+#include "libc/limits.h"
+#include "libc/macros.internal.h"
 #include "libc/runtime/clktck.h"
 #include "libc/runtime/sysconf.h"
+#include "libc/sysv/consts/rlim.h"
+#include "libc/sysv/consts/rlimit.h"
+
+static long GetResourceLimit(int resource) {
+  struct rlimit rl;
+  getrlimit(resource, &rl);
+  if (rl.rlim_cur == RLIM_INFINITY) return -1;
+  return MIN(rl.rlim_cur, LONG_MAX);
+}
 
 /**
  * Returns configuration value about system.
@@ -39,8 +52,12 @@ long sysconf(int name) {
   switch (name) {
     case _SC_ARG_MAX:
       return ARG_MAX;
+    case _SC_CHILD_MAX:
+      return GetResourceLimit(RLIMIT_NPROC);
     case _SC_CLK_TCK:
       return CLK_TCK;
+    case _SC_OPEN_MAX:
+      return GetResourceLimit(RLIMIT_NOFILE);
     case _SC_PAGESIZE:
       return FRAMESIZE;
     case _SC_NPROCESSORS_ONLN:
diff --git a/libc/runtime/sysconf.h b/libc/runtime/sysconf.h
index 74c70a7f0..42774d35a 100644
--- a/libc/runtime/sysconf.h
+++ b/libc/runtime/sysconf.h
@@ -2,7 +2,9 @@
 #define COSMOPOLITAN_LIBC_RUNTIME_SYSCONF_H_
 
 #define _SC_ARG_MAX          0
+#define _SC_CHILD_MAX        1
 #define _SC_CLK_TCK          2
+#define _SC_OPEN_MAX         4
 #define _SC_PAGESIZE         30
 #define _SC_PAGE_SIZE        30
 #define _SC_NPROCESSORS_ONLN 1002
diff --git a/third_party/python/Lib/_bootlocale.py b/third_party/python/Lib/_bootlocale.py
index 4bccac113..da07da861 100644
--- a/third_party/python/Lib/_bootlocale.py
+++ b/third_party/python/Lib/_bootlocale.py
@@ -23,7 +23,7 @@ else:
         def getpreferredencoding(do_setlocale=True):
             assert not do_setlocale
             result = _locale.nl_langinfo(_locale.CODESET)
-            if not result and sys.platform == 'darwin':
+            if not result and sys.platform in ('darwin', 'cosmo'):
                 # nl_langinfo can return an empty string
                 # when the setting has an invalid value.
                 # Default to UTF-8 in that case because
diff --git a/third_party/python/Lib/test/test_locale.py b/third_party/python/Lib/test/test_locale.py
index a527fc79b..39d4787f3 100644
--- a/third_party/python/Lib/test/test_locale.py
+++ b/third_party/python/Lib/test/test_locale.py
@@ -358,7 +358,7 @@ class TestEnUSCollation(BaseLocalizedTest, TestCollation):
         enc = codecs.lookup(locale.getpreferredencoding(False) or 'ascii').name
         if enc not in ('utf-8', 'iso8859-1', 'cp1252'):
             raise unittest.SkipTest('encoding not suitable')
-        if enc != 'iso8859-1' and (sys.platform == 'darwin' or is_android or
+        if enc != 'iso8859-1' and (sys.platform in ('darwin','cosmo') or is_android or
                                    sys.platform.startswith('freebsd')):
             raise unittest.SkipTest('wcscoll/wcsxfrm have known bugs')
         BaseLocalizedTest.setUp(self)
diff --git a/third_party/python/Modules/posixmodule.c b/third_party/python/Modules/posixmodule.c
index f72563383..50f03c834 100644
--- a/third_party/python/Modules/posixmodule.c
+++ b/third_party/python/Modules/posixmodule.c
@@ -10681,7 +10681,6 @@ os_cpu_count_impl(PyObject *module)
 {
     int ncpu;
     ncpu = GetCpuCount();
-    printf("cpu count %d\n", ncpu);
     if (ncpu >= 1)
         return PyLong_FromLong(ncpu);
     else
diff --git a/third_party/python/Tools/scripts/patchcheck.py b/third_party/python/Tools/scripts/patchcheck.py
new file mode 100644
index 000000000..e5214abf6
--- /dev/null
+++ b/third_party/python/Tools/scripts/patchcheck.py
@@ -0,0 +1,286 @@
+#!/usr/bin/env python3
+"""Check proposed changes for common issues."""
+import re
+import sys
+import shutil
+import os.path
+import subprocess
+import sysconfig
+
+import reindent
+import untabify
+
+
+# Excluded directories which are copies of external libraries:
+# don't check their coding style
+EXCLUDE_DIRS = [os.path.join('Modules', '_ctypes', 'libffi'),
+                os.path.join('Modules', '_ctypes', 'libffi_osx'),
+                os.path.join('Modules', '_ctypes', 'libffi_msvc'),
+                os.path.join('Modules', '_decimal', 'libmpdec'),
+                os.path.join('Modules', 'expat'),
+                os.path.join('Modules', 'zlib')]
+SRCDIR = sysconfig.get_config_var('srcdir')
+
+
+def n_files_str(count):
+    """Return 'N file(s)' with the proper plurality on 'file'."""
+    return "{} file{}".format(count, "s" if count != 1 else "")
+
+
+def status(message, modal=False, info=None):
+    """Decorator to output status info to stdout."""
+    def decorated_fxn(fxn):
+        def call_fxn(*args, **kwargs):
+            sys.stdout.write(message + ' ... ')
+            sys.stdout.flush()
+            result = fxn(*args, **kwargs)
+            if not modal and not info:
+                print("done")
+            elif info:
+                print(info(result))
+            else:
+                print("yes" if result else "NO")
+            return result
+        return call_fxn
+    return decorated_fxn
+
+
+def get_git_branch():
+    """Get the symbolic name for the current git branch"""
+    cmd = "git rev-parse --abbrev-ref HEAD".split()
+    try:
+        return subprocess.check_output(cmd,
+                                       stderr=subprocess.DEVNULL,
+                                       cwd=SRCDIR)
+    except subprocess.CalledProcessError:
+        return None
+
+
+def get_git_upstream_remote():
+    """Get the remote name to use for upstream branches
+
+    Uses "upstream" if it exists, "origin" otherwise
+    """
+    cmd = "git remote get-url upstream".split()
+    try:
+        subprocess.check_output(cmd,
+                                stderr=subprocess.DEVNULL,
+                                cwd=SRCDIR)
+    except subprocess.CalledProcessError:
+        return "origin"
+    return "upstream"
+
+
+@status("Getting base branch for PR",
+        info=lambda x: x if x is not None else "not a PR branch")
+def get_base_branch():
+    if not os.path.exists(os.path.join(SRCDIR, '.git')):
+        # Not a git checkout, so there's no base branch
+        return None
+    version = sys.version_info
+    if version.releaselevel == 'alpha':
+        base_branch = "master"
+    else:
+        base_branch = "{0.major}.{0.minor}".format(version)
+    this_branch = get_git_branch()
+    if this_branch is None or this_branch == base_branch:
+        # Not on a git PR branch, so there's no base branch
+        return None
+    upstream_remote = get_git_upstream_remote()
+    return upstream_remote + "/" + base_branch
+
+
+@status("Getting the list of files that have been added/changed",
+        info=lambda x: n_files_str(len(x)))
+def changed_files(base_branch=None):
+    """Get the list of changed or added files from git."""
+    if os.path.exists(os.path.join(SRCDIR, '.git')):
+        # We just use an existence check here as:
+        #  directory = normal git checkout/clone
+        #  file = git worktree directory
+        if base_branch:
+            cmd = 'git diff --name-status ' + base_branch
+        else:
+            cmd = 'git status --porcelain'
+        filenames = []
+        with subprocess.Popen(cmd.split(),
+                              stdout=subprocess.PIPE,
+                              cwd=SRCDIR) as st:
+            for line in st.stdout:
+                line = line.decode().rstrip()
+                status_text, filename = line.split(maxsplit=1)
+                status = set(status_text)
+                # modified, added or unmerged files
+                if not status.intersection('MAU'):
+                    continue
+                if ' -> ' in filename:
+                    # file is renamed
+                    filename = filename.split(' -> ', 2)[1].strip()
+                filenames.append(filename)
+    else:
+        sys.exit('need a git checkout to get modified files')
+
+    filenames2 = []
+    for filename in filenames:
+        # Normalize the path to be able to match using .startswith()
+        filename = os.path.normpath(filename)
+        if any(filename.startswith(path) for path in EXCLUDE_DIRS):
+            # Exclude the file
+            continue
+        filenames2.append(filename)
+
+    return filenames2
+
+
+def report_modified_files(file_paths):
+    count = len(file_paths)
+    if count == 0:
+        return n_files_str(count)
+    else:
+        lines = ["{}:".format(n_files_str(count))]
+        for path in file_paths:
+            lines.append("  {}".format(path))
+        return "\n".join(lines)
+
+
+@status("Fixing Python file whitespace", info=report_modified_files)
+def normalize_whitespace(file_paths):
+    """Make sure that the whitespace for .py files have been normalized."""
+    reindent.makebackup = False  # No need to create backups.
+    fixed = [path for path in file_paths if path.endswith('.py') and
+             reindent.check(os.path.join(SRCDIR, path))]
+    return fixed
+
+
+@status("Fixing C file whitespace", info=report_modified_files)
+def normalize_c_whitespace(file_paths):
+    """Report if any C files """
+    fixed = []
+    for path in file_paths:
+        abspath = os.path.join(SRCDIR, path)
+        with open(abspath, 'r') as f:
+            if '\t' not in f.read():
+                continue
+        untabify.process(abspath, 8, verbose=False)
+        fixed.append(path)
+    return fixed
+
+
+ws_re = re.compile(br'\s+(\r?\n)$')
+
+@status("Fixing docs whitespace", info=report_modified_files)
+def normalize_docs_whitespace(file_paths):
+    fixed = []
+    for path in file_paths:
+        abspath = os.path.join(SRCDIR, path)
+        try:
+            with open(abspath, 'rb') as f:
+                lines = f.readlines()
+            new_lines = [ws_re.sub(br'\1', line) for line in lines]
+            if new_lines != lines:
+                shutil.copyfile(abspath, abspath + '.bak')
+                with open(abspath, 'wb') as f:
+                    f.writelines(new_lines)
+                fixed.append(path)
+        except Exception as err:
+            print('Cannot fix %s: %s' % (path, err))
+    return fixed
+
+
+@status("Docs modified", modal=True)
+def docs_modified(file_paths):
+    """Report if any file in the Doc directory has been changed."""
+    return bool(file_paths)
+
+
+@status("Misc/ACKS updated", modal=True)
+def credit_given(file_paths):
+    """Check if Misc/ACKS has been changed."""
+    return os.path.join('Misc', 'ACKS') in file_paths
+
+
+@status("Misc/NEWS.d updated with `blurb`", modal=True)
+def reported_news(file_paths):
+    """Check if Misc/NEWS.d has been changed."""
+    return any(p.startswith(os.path.join('Misc', 'NEWS.d', 'next'))
+               for p in file_paths)
+
+@status("configure regenerated", modal=True, info=str)
+def regenerated_configure(file_paths):
+    """Check if configure has been regenerated."""
+    if 'configure.ac' in file_paths:
+        return "yes" if 'configure' in file_paths else "no"
+    else:
+        return "not needed"
+
+@status("pyconfig.h.in regenerated", modal=True, info=str)
+def regenerated_pyconfig_h_in(file_paths):
+    """Check if pyconfig.h.in has been regenerated."""
+    if 'configure.ac' in file_paths:
+        return "yes" if 'pyconfig.h.in' in file_paths else "no"
+    else:
+        return "not needed"
+
+def travis(pull_request):
+    if pull_request == 'false':
+        print('Not a pull request; skipping')
+        return
+    base_branch = get_base_branch()
+    file_paths = changed_files(base_branch)
+    python_files = [fn for fn in file_paths if fn.endswith('.py')]
+    c_files = [fn for fn in file_paths if fn.endswith(('.c', '.h'))]
+    doc_files = [fn for fn in file_paths if fn.startswith('Doc') and
+                 fn.endswith(('.rst', '.inc'))]
+    fixed = []
+    fixed.extend(normalize_whitespace(python_files))
+    fixed.extend(normalize_c_whitespace(c_files))
+    fixed.extend(normalize_docs_whitespace(doc_files))
+    if not fixed:
+        print('No whitespace issues found')
+    else:
+        print(f'Please fix the {len(fixed)} file(s) with whitespace issues')
+        print('(on UNIX you can run `make patchcheck` to make the fixes)')
+        sys.exit(1)
+
+def main():
+    base_branch = get_base_branch()
+    file_paths = changed_files(base_branch)
+    python_files = [fn for fn in file_paths if fn.endswith('.py')]
+    c_files = [fn for fn in file_paths if fn.endswith(('.c', '.h'))]
+    doc_files = [fn for fn in file_paths if fn.startswith('Doc') and
+                 fn.endswith(('.rst', '.inc'))]
+    misc_files = {p for p in file_paths if p.startswith('Misc')}
+    # PEP 8 whitespace rules enforcement.
+    normalize_whitespace(python_files)
+    # C rules enforcement.
+    normalize_c_whitespace(c_files)
+    # Doc whitespace enforcement.
+    normalize_docs_whitespace(doc_files)
+    # Docs updated.
+    docs_modified(doc_files)
+    # Misc/ACKS changed.
+    credit_given(misc_files)
+    # Misc/NEWS changed.
+    reported_news(misc_files)
+    # Regenerated configure, if necessary.
+    regenerated_configure(file_paths)
+    # Regenerated pyconfig.h.in, if necessary.
+    regenerated_pyconfig_h_in(file_paths)
+
+    # Test suite run and passed.
+    if python_files or c_files:
+        end = " and check for refleaks?" if c_files else "?"
+        print()
+        print("Did you run the test suite" + end)
+
+
+if __name__ == '__main__':
+    import argparse
+    parser = argparse.ArgumentParser(description=__doc__)
+    parser.add_argument('--travis',
+                        help='Perform pass/fail checks')
+    args = parser.parse_args()
+    if args.travis:
+        travis(args.travis)
+    else:
+        main()
diff --git a/third_party/python/python-stdlib.mk b/third_party/python/python-stdlib.mk
index d3faa3a4f..f6c2b1d7a 100644
--- a/third_party/python/python-stdlib.mk
+++ b/third_party/python/python-stdlib.mk
@@ -5,554 +5,721 @@
 # to the ZIP store in the APE
 # (can remove this if find command is usable)
 
-THIRD_PARTY_PYTHON_STDLIB_PY =						\
-	third_party/python/Lib/						\
-	third_party/python/Lib/collections/				\
-	third_party/python/Lib/dbm/					\
-	third_party/python/Lib/email/					\
-	third_party/python/Lib/email/mime/				\
-	third_party/python/Lib/encodings/				\
-	third_party/python/Lib/html/					\
-	third_party/python/Lib/http/					\
-	third_party/python/Lib/importlib/				\
-	third_party/python/Lib/json/					\
-	third_party/python/Lib/lib2to3/					\
-	third_party/python/Lib/lib2to3/fixes/				\
-	third_party/python/Lib/lib2to3/pgen2/				\
-	third_party/python/Lib/logging/					\
-	third_party/python/Lib/msilib/					\
-	third_party/python/Lib/multiprocessing/				\
-	third_party/python/Lib/multiprocessing/dummy/			\
-	third_party/python/Lib/sqlite3/					\
-	third_party/python/Lib/unittest/				\
-	third_party/python/Lib/urllib/					\
-	third_party/python/Lib/venv/					\
-	third_party/python/Lib/venv/scripts/common/			\
-	third_party/python/Lib/venv/scripts/nt/				\
-	third_party/python/Lib/venv/scripts/posix/			\
-	third_party/python/Lib/wsgiref/					\
-	third_party/python/Lib/xml/					\
-	third_party/python/Lib/xml/dom/					\
-	third_party/python/Lib/xml/etree/				\
-	third_party/python/Lib/xml/parsers/				\
-	third_party/python/Lib/xml/sax/					\
-	third_party/python/Lib/xmlrpc/					\
-	third_party/python/Lib/__future__.py				\
-	third_party/python/Lib/_bootlocale.py				\
-	third_party/python/Lib/_collections_abc.py			\
-	third_party/python/Lib/_compat_pickle.py			\
-	third_party/python/Lib/_compression.py				\
-	third_party/python/Lib/_dummy_thread.py				\
-	third_party/python/Lib/_markupbase.py				\
-	third_party/python/Lib/_osx_support.py				\
-	third_party/python/Lib/_pyio.py					\
-	third_party/python/Lib/_sitebuiltins.py				\
-	third_party/python/Lib/_strptime.py				\
-	third_party/python/Lib/_sysconfigdata_m_cosmo_x86_64-cosmo.py	\
-	third_party/python/Lib/_threading_local.py			\
-	third_party/python/Lib/_weakrefset.py				\
-	third_party/python/Lib/abc.py					\
-	third_party/python/Lib/aifc.py					\
-	third_party/python/Lib/antigravity.py				\
-	third_party/python/Lib/argparse.py				\
-	third_party/python/Lib/ast.py					\
-	third_party/python/Lib/base64.py				\
-	third_party/python/Lib/bdb.py					\
-	third_party/python/Lib/binhex.py				\
-	third_party/python/Lib/bisect.py				\
-	third_party/python/Lib/bz2.py					\
-	third_party/python/Lib/cProfile.py				\
-	third_party/python/Lib/calendar.py				\
-	third_party/python/Lib/cgi.py					\
-	third_party/python/Lib/cgitb.py					\
-	third_party/python/Lib/chunk.py					\
-	third_party/python/Lib/cmd.py					\
-	third_party/python/Lib/code.py					\
-	third_party/python/Lib/codecs.py				\
-	third_party/python/Lib/codeop.py				\
-	third_party/python/Lib/collections/__init__.py			\
-	third_party/python/Lib/collections/abc.py			\
-	third_party/python/Lib/colorsys.py				\
-	third_party/python/Lib/compileall.py				\
-	third_party/python/Lib/configparser.py				\
-	third_party/python/Lib/contextlib.py				\
-	third_party/python/Lib/copy.py					\
-	third_party/python/Lib/copyreg.py				\
-	third_party/python/Lib/crypt.py					\
-	third_party/python/Lib/csv.py					\
-	third_party/python/Lib/datetime.py				\
-	third_party/python/Lib/dbm/__init__.py				\
-	third_party/python/Lib/dbm/dumb.py				\
-	third_party/python/Lib/dbm/gnu.py				\
-	third_party/python/Lib/dbm/ndbm.py				\
-	third_party/python/Lib/decimal.py				\
-	third_party/python/Lib/difflib.py				\
-	third_party/python/Lib/dis.py					\
-	third_party/python/Lib/doctest.py				\
-	third_party/python/Lib/dummy_threading.py			\
-	third_party/python/Lib/email/__init__.py			\
-	third_party/python/Lib/email/_encoded_words.py			\
-	third_party/python/Lib/email/_header_value_parser.py		\
-	third_party/python/Lib/email/_parseaddr.py			\
-	third_party/python/Lib/email/_policybase.py			\
-	third_party/python/Lib/email/architecture.rst			\
-	third_party/python/Lib/email/base64mime.py			\
-	third_party/python/Lib/email/charset.py				\
-	third_party/python/Lib/email/contentmanager.py			\
-	third_party/python/Lib/email/encoders.py			\
-	third_party/python/Lib/email/errors.py				\
-	third_party/python/Lib/email/feedparser.py			\
-	third_party/python/Lib/email/generator.py			\
-	third_party/python/Lib/email/header.py				\
-	third_party/python/Lib/email/headerregistry.py			\
-	third_party/python/Lib/email/iterators.py			\
-	third_party/python/Lib/email/message.py				\
-	third_party/python/Lib/email/mime/__init__.py			\
-	third_party/python/Lib/email/mime/application.py		\
-	third_party/python/Lib/email/mime/audio.py			\
-	third_party/python/Lib/email/mime/base.py			\
-	third_party/python/Lib/email/mime/image.py			\
-	third_party/python/Lib/email/mime/message.py			\
-	third_party/python/Lib/email/mime/multipart.py			\
-	third_party/python/Lib/email/mime/nonmultipart.py		\
-	third_party/python/Lib/email/mime/text.py			\
-	third_party/python/Lib/email/parser.py				\
-	third_party/python/Lib/email/policy.py				\
-	third_party/python/Lib/email/quoprimime.py			\
-	third_party/python/Lib/email/utils.py				\
-	third_party/python/Lib/encodings/__init__.py			\
-	third_party/python/Lib/encodings/aliases.py			\
-	third_party/python/Lib/encodings/ascii.py			\
-	third_party/python/Lib/encodings/base64_codec.py		\
-	third_party/python/Lib/encodings/big5.py			\
-	third_party/python/Lib/encodings/big5hkscs.py			\
-	third_party/python/Lib/encodings/bz2_codec.py			\
-	third_party/python/Lib/encodings/charmap.py			\
-	third_party/python/Lib/encodings/cp037.py			\
-	third_party/python/Lib/encodings/cp1006.py			\
-	third_party/python/Lib/encodings/cp1026.py			\
-	third_party/python/Lib/encodings/cp1125.py			\
-	third_party/python/Lib/encodings/cp1140.py			\
-	third_party/python/Lib/encodings/cp1250.py			\
-	third_party/python/Lib/encodings/cp1251.py			\
-	third_party/python/Lib/encodings/cp1252.py			\
-	third_party/python/Lib/encodings/cp1253.py			\
-	third_party/python/Lib/encodings/cp1254.py			\
-	third_party/python/Lib/encodings/cp1255.py			\
-	third_party/python/Lib/encodings/cp1256.py			\
-	third_party/python/Lib/encodings/cp1257.py			\
-	third_party/python/Lib/encodings/cp1258.py			\
-	third_party/python/Lib/encodings/cp273.py			\
-	third_party/python/Lib/encodings/cp424.py			\
-	third_party/python/Lib/encodings/cp437.py			\
-	third_party/python/Lib/encodings/cp500.py			\
-	third_party/python/Lib/encodings/cp65001.py			\
-	third_party/python/Lib/encodings/cp720.py			\
-	third_party/python/Lib/encodings/cp737.py			\
-	third_party/python/Lib/encodings/cp775.py			\
-	third_party/python/Lib/encodings/cp850.py			\
-	third_party/python/Lib/encodings/cp852.py			\
-	third_party/python/Lib/encodings/cp855.py			\
-	third_party/python/Lib/encodings/cp856.py			\
-	third_party/python/Lib/encodings/cp857.py			\
-	third_party/python/Lib/encodings/cp858.py			\
-	third_party/python/Lib/encodings/cp860.py			\
-	third_party/python/Lib/encodings/cp861.py			\
-	third_party/python/Lib/encodings/cp862.py			\
-	third_party/python/Lib/encodings/cp863.py			\
-	third_party/python/Lib/encodings/cp864.py			\
-	third_party/python/Lib/encodings/cp865.py			\
-	third_party/python/Lib/encodings/cp866.py			\
-	third_party/python/Lib/encodings/cp869.py			\
-	third_party/python/Lib/encodings/cp874.py			\
-	third_party/python/Lib/encodings/cp875.py			\
-	third_party/python/Lib/encodings/cp932.py			\
-	third_party/python/Lib/encodings/cp949.py			\
-	third_party/python/Lib/encodings/cp950.py			\
-	third_party/python/Lib/encodings/euc_jis_2004.py		\
-	third_party/python/Lib/encodings/euc_jisx0213.py		\
-	third_party/python/Lib/encodings/euc_jp.py			\
-	third_party/python/Lib/encodings/euc_kr.py			\
-	third_party/python/Lib/encodings/gb18030.py			\
-	third_party/python/Lib/encodings/gb2312.py			\
-	third_party/python/Lib/encodings/gbk.py				\
-	third_party/python/Lib/encodings/hex_codec.py			\
-	third_party/python/Lib/encodings/hp_roman8.py			\
-	third_party/python/Lib/encodings/hz.py				\
-	third_party/python/Lib/encodings/idna.py			\
-	third_party/python/Lib/encodings/iso2022_jp.py			\
-	third_party/python/Lib/encodings/iso2022_jp_1.py		\
-	third_party/python/Lib/encodings/iso2022_jp_2.py		\
-	third_party/python/Lib/encodings/iso2022_jp_2004.py		\
-	third_party/python/Lib/encodings/iso2022_jp_3.py		\
-	third_party/python/Lib/encodings/iso2022_jp_ext.py		\
-	third_party/python/Lib/encodings/iso2022_kr.py			\
-	third_party/python/Lib/encodings/iso8859_1.py			\
-	third_party/python/Lib/encodings/iso8859_10.py			\
-	third_party/python/Lib/encodings/iso8859_11.py			\
-	third_party/python/Lib/encodings/iso8859_13.py			\
-	third_party/python/Lib/encodings/iso8859_14.py			\
-	third_party/python/Lib/encodings/iso8859_15.py			\
-	third_party/python/Lib/encodings/iso8859_16.py			\
-	third_party/python/Lib/encodings/iso8859_2.py			\
-	third_party/python/Lib/encodings/iso8859_3.py			\
-	third_party/python/Lib/encodings/iso8859_4.py			\
-	third_party/python/Lib/encodings/iso8859_5.py			\
-	third_party/python/Lib/encodings/iso8859_6.py			\
-	third_party/python/Lib/encodings/iso8859_7.py			\
-	third_party/python/Lib/encodings/iso8859_8.py			\
-	third_party/python/Lib/encodings/iso8859_9.py			\
-	third_party/python/Lib/encodings/johab.py			\
-	third_party/python/Lib/encodings/koi8_r.py			\
-	third_party/python/Lib/encodings/koi8_t.py			\
-	third_party/python/Lib/encodings/koi8_u.py			\
-	third_party/python/Lib/encodings/kz1048.py			\
-	third_party/python/Lib/encodings/latin_1.py			\
-	third_party/python/Lib/encodings/mac_arabic.py			\
-	third_party/python/Lib/encodings/mac_centeuro.py		\
-	third_party/python/Lib/encodings/mac_croatian.py		\
-	third_party/python/Lib/encodings/mac_cyrillic.py		\
-	third_party/python/Lib/encodings/mac_farsi.py			\
-	third_party/python/Lib/encodings/mac_greek.py			\
-	third_party/python/Lib/encodings/mac_iceland.py			\
-	third_party/python/Lib/encodings/mac_latin2.py			\
-	third_party/python/Lib/encodings/mac_roman.py			\
-	third_party/python/Lib/encodings/mac_romanian.py		\
-	third_party/python/Lib/encodings/mac_turkish.py			\
-	third_party/python/Lib/encodings/mbcs.py			\
-	third_party/python/Lib/encodings/oem.py				\
-	third_party/python/Lib/encodings/palmos.py			\
-	third_party/python/Lib/encodings/ptcp154.py			\
-	third_party/python/Lib/encodings/punycode.py			\
-	third_party/python/Lib/encodings/quopri_codec.py		\
-	third_party/python/Lib/encodings/raw_unicode_escape.py		\
-	third_party/python/Lib/encodings/rot_13.py			\
-	third_party/python/Lib/encodings/shift_jis.py			\
-	third_party/python/Lib/encodings/shift_jis_2004.py		\
-	third_party/python/Lib/encodings/shift_jisx0213.py		\
-	third_party/python/Lib/encodings/tis_620.py			\
-	third_party/python/Lib/encodings/undefined.py			\
-	third_party/python/Lib/encodings/unicode_escape.py		\
-	third_party/python/Lib/encodings/unicode_internal.py		\
-	third_party/python/Lib/encodings/utf_16.py			\
-	third_party/python/Lib/encodings/utf_16_be.py			\
-	third_party/python/Lib/encodings/utf_16_le.py			\
-	third_party/python/Lib/encodings/utf_32.py			\
-	third_party/python/Lib/encodings/utf_32_be.py			\
-	third_party/python/Lib/encodings/utf_32_le.py			\
-	third_party/python/Lib/encodings/utf_7.py			\
-	third_party/python/Lib/encodings/utf_8.py			\
-	third_party/python/Lib/encodings/utf_8_sig.py			\
-	third_party/python/Lib/encodings/uu_codec.py			\
-	third_party/python/Lib/encodings/zlib_codec.py			\
-	third_party/python/Lib/enum.py					\
-	third_party/python/Lib/filecmp.py				\
-	third_party/python/Lib/fileinput.py				\
-	third_party/python/Lib/fnmatch.py				\
-	third_party/python/Lib/formatter.py				\
-	third_party/python/Lib/fractions.py				\
-	third_party/python/Lib/ftplib.py				\
-	third_party/python/Lib/functools.py				\
-	third_party/python/Lib/genericpath.py				\
-	third_party/python/Lib/getopt.py				\
-	third_party/python/Lib/getpass.py				\
-	third_party/python/Lib/gettext.py				\
-	third_party/python/Lib/glob.py					\
-	third_party/python/Lib/gzip.py					\
-	third_party/python/Lib/hashlib.py				\
-	third_party/python/Lib/heapq.py					\
-	third_party/python/Lib/hmac.py					\
-	third_party/python/Lib/html/__init__.py				\
-	third_party/python/Lib/html/entities.py				\
-	third_party/python/Lib/html/parser.py				\
-	third_party/python/Lib/http/__init__.py				\
-	third_party/python/Lib/http/client.py				\
-	third_party/python/Lib/http/cookiejar.py			\
-	third_party/python/Lib/http/cookies.py				\
-	third_party/python/Lib/http/server.py				\
-	third_party/python/Lib/imaplib.py				\
-	third_party/python/Lib/imghdr.py				\
-	third_party/python/Lib/imp.py					\
-	third_party/python/Lib/importlib/__init__.py			\
-	third_party/python/Lib/importlib/_bootstrap.py			\
-	third_party/python/Lib/importlib/_bootstrap_external.py		\
-	third_party/python/Lib/importlib/abc.py				\
-	third_party/python/Lib/importlib/machinery.py			\
-	third_party/python/Lib/importlib/util.py			\
-	third_party/python/Lib/inspect.py				\
-	third_party/python/Lib/io.py					\
-	third_party/python/Lib/ipaddress.py				\
-	third_party/python/Lib/json/__init__.py				\
-	third_party/python/Lib/json/decoder.py				\
-	third_party/python/Lib/json/encoder.py				\
-	third_party/python/Lib/json/scanner.py				\
-	third_party/python/Lib/json/tool.py				\
-	third_party/python/Lib/keyword.py				\
-	third_party/python/Lib/lib2to3/Grammar.txt			\
-	third_party/python/Lib/lib2to3/PatternGrammar.txt		\
-	third_party/python/Lib/lib2to3/__init__.py			\
-	third_party/python/Lib/lib2to3/__main__.py			\
-	third_party/python/Lib/lib2to3/btm_matcher.py			\
-	third_party/python/Lib/lib2to3/btm_utils.py			\
-	third_party/python/Lib/lib2to3/fixer_base.py			\
-	third_party/python/Lib/lib2to3/fixer_util.py			\
-	third_party/python/Lib/lib2to3/fixes/__init__.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_apply.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_asserts.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_basestring.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_buffer.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_dict.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_except.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_exec.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_execfile.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_exitfunc.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_filter.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_funcattrs.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_future.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_getcwdu.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_has_key.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_idioms.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_import.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_imports.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_imports2.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_input.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_intern.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_isinstance.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_itertools.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_itertools_imports.py	\
-	third_party/python/Lib/lib2to3/fixes/fix_long.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_map.py			\
-	third_party/python/Lib/lib2to3/fixes/fix_metaclass.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_methodattrs.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_ne.py			\
-	third_party/python/Lib/lib2to3/fixes/fix_next.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_nonzero.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_numliterals.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_operator.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_paren.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_print.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_raise.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_raw_input.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_reduce.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_reload.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_renames.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_repr.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_set_literal.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_standarderror.py	\
-	third_party/python/Lib/lib2to3/fixes/fix_sys_exc.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_throw.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_tuple_params.py	\
-	third_party/python/Lib/lib2to3/fixes/fix_types.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_unicode.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_urllib.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_ws_comma.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_xrange.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_xreadlines.py		\
-	third_party/python/Lib/lib2to3/fixes/fix_zip.py			\
-	third_party/python/Lib/lib2to3/main.py				\
-	third_party/python/Lib/lib2to3/patcomp.py			\
-	third_party/python/Lib/lib2to3/pgen2/__init__.py		\
-	third_party/python/Lib/lib2to3/pgen2/conv.py			\
-	third_party/python/Lib/lib2to3/pgen2/driver.py			\
-	third_party/python/Lib/lib2to3/pgen2/grammar.py			\
-	third_party/python/Lib/lib2to3/pgen2/literals.py		\
-	third_party/python/Lib/lib2to3/pgen2/parse.py			\
-	third_party/python/Lib/lib2to3/pgen2/pgen.py			\
-	third_party/python/Lib/lib2to3/pgen2/token.py			\
-	third_party/python/Lib/lib2to3/pgen2/tokenize.py		\
-	third_party/python/Lib/lib2to3/pygram.py			\
-	third_party/python/Lib/lib2to3/pytree.py			\
-	third_party/python/Lib/lib2to3/refactor.py			\
-	third_party/python/Lib/linecache.py				\
-	third_party/python/Lib/locale.py				\
-	third_party/python/Lib/logging/__init__.py			\
-	third_party/python/Lib/logging/config.py			\
-	third_party/python/Lib/logging/handlers.py			\
-	third_party/python/Lib/lzma.py					\
-	third_party/python/Lib/macpath.py				\
-	third_party/python/Lib/macurl2path.py				\
-	third_party/python/Lib/mailbox.py				\
-	third_party/python/Lib/mailcap.py				\
-	third_party/python/Lib/mimetypes.py				\
-	third_party/python/Lib/modulefinder.py				\
-	third_party/python/Lib/msilib/__init__.py			\
-	third_party/python/Lib/msilib/schema.py				\
-	third_party/python/Lib/msilib/sequence.py			\
-	third_party/python/Lib/msilib/text.py				\
-	third_party/python/Lib/multiprocessing/__init__.py		\
-	third_party/python/Lib/multiprocessing/connection.py		\
-	third_party/python/Lib/multiprocessing/context.py		\
-	third_party/python/Lib/multiprocessing/dummy/__init__.py	\
-	third_party/python/Lib/multiprocessing/dummy/connection.py	\
-	third_party/python/Lib/multiprocessing/forkserver.py		\
-	third_party/python/Lib/multiprocessing/heap.py			\
-	third_party/python/Lib/multiprocessing/managers.py		\
-	third_party/python/Lib/multiprocessing/pool.py			\
-	third_party/python/Lib/multiprocessing/popen_fork.py		\
-	third_party/python/Lib/multiprocessing/popen_forkserver.py	\
-	third_party/python/Lib/multiprocessing/popen_spawn_posix.py	\
-	third_party/python/Lib/multiprocessing/popen_spawn_win32.py	\
-	third_party/python/Lib/multiprocessing/process.py		\
-	third_party/python/Lib/multiprocessing/queues.py		\
-	third_party/python/Lib/multiprocessing/reduction.py		\
-	third_party/python/Lib/multiprocessing/resource_sharer.py	\
-	third_party/python/Lib/multiprocessing/semaphore_tracker.py	\
-	third_party/python/Lib/multiprocessing/sharedctypes.py		\
-	third_party/python/Lib/multiprocessing/spawn.py			\
-	third_party/python/Lib/multiprocessing/synchronize.py		\
-	third_party/python/Lib/multiprocessing/util.py			\
-	third_party/python/Lib/netrc.py					\
-	third_party/python/Lib/nntplib.py				\
-	third_party/python/Lib/ntpath.py				\
-	third_party/python/Lib/nturl2path.py				\
-	third_party/python/Lib/numbers.py				\
-	third_party/python/Lib/opcode.py				\
-	third_party/python/Lib/operator.py				\
-	third_party/python/Lib/optparse.py				\
-	third_party/python/Lib/os.py					\
-	third_party/python/Lib/pathlib.py				\
-	third_party/python/Lib/pdb.py					\
-	third_party/python/Lib/pickle.py				\
-	third_party/python/Lib/pickletools.py				\
-	third_party/python/Lib/pipes.py					\
-	third_party/python/Lib/pkgutil.py				\
-	third_party/python/Lib/platform.py				\
-	third_party/python/Lib/plistlib.py				\
-	third_party/python/Lib/poplib.py				\
-	third_party/python/Lib/posixpath.py				\
-	third_party/python/Lib/pprint.py				\
-	third_party/python/Lib/profile.py				\
-	third_party/python/Lib/pstats.py				\
-	third_party/python/Lib/pty.py					\
-	third_party/python/Lib/py_compile.py				\
-	third_party/python/Lib/pyclbr.py				\
-	third_party/python/Lib/pydoc.py					\
-	third_party/python/Lib/queue.py					\
-	third_party/python/Lib/quopri.py				\
-	third_party/python/Lib/random.py				\
-	third_party/python/Lib/re.py					\
-	third_party/python/Lib/reprlib.py				\
-	third_party/python/Lib/rlcompleter.py				\
-	third_party/python/Lib/runpy.py					\
-	third_party/python/Lib/sched.py					\
-	third_party/python/Lib/secrets.py				\
-	third_party/python/Lib/selectors.py				\
-	third_party/python/Lib/shelve.py				\
-	third_party/python/Lib/shlex.py					\
-	third_party/python/Lib/shutil.py				\
-	third_party/python/Lib/signal.py				\
-	third_party/python/Lib/site.py					\
-	third_party/python/Lib/smtpd.py					\
-	third_party/python/Lib/smtplib.py				\
-	third_party/python/Lib/sndhdr.py				\
-	third_party/python/Lib/socket.py				\
-	third_party/python/Lib/socketserver.py				\
-	third_party/python/Lib/sqlite3/__init__.py			\
-	third_party/python/Lib/sqlite3/dbapi2.py			\
-	third_party/python/Lib/sqlite3/dump.py				\
-	third_party/python/Lib/sre_compile.py				\
-	third_party/python/Lib/sre_constants.py				\
-	third_party/python/Lib/sre_parse.py				\
-	third_party/python/Lib/ssl.py					\
-	third_party/python/Lib/stat.py					\
-	third_party/python/Lib/statistics.py				\
-	third_party/python/Lib/string.py				\
-	third_party/python/Lib/stringprep.py				\
-	third_party/python/Lib/struct.py				\
-	third_party/python/Lib/subprocess.py				\
-	third_party/python/Lib/sunau.py					\
-	third_party/python/Lib/symbol.py				\
-	third_party/python/Lib/symtable.py				\
-	third_party/python/Lib/sysconfig.py				\
-	third_party/python/Lib/tabnanny.py				\
-	third_party/python/Lib/tarfile.py				\
-	third_party/python/Lib/telnetlib.py				\
-	third_party/python/Lib/tempfile.py				\
-	third_party/python/Lib/textwrap.py				\
-	third_party/python/Lib/this.py					\
-	third_party/python/Lib/threading.py				\
-	third_party/python/Lib/timeit.py				\
-	third_party/python/Lib/token.py					\
-	third_party/python/Lib/tokenize.py				\
-	third_party/python/Lib/trace.py					\
-	third_party/python/Lib/traceback.py				\
-	third_party/python/Lib/tracemalloc.py				\
-	third_party/python/Lib/tty.py					\
-	third_party/python/Lib/types.py					\
-	third_party/python/Lib/typing.py				\
-	third_party/python/Lib/unittest/__init__.py			\
-	third_party/python/Lib/unittest/__main__.py			\
-	third_party/python/Lib/unittest/case.py				\
-	third_party/python/Lib/unittest/loader.py			\
-	third_party/python/Lib/unittest/main.py				\
-	third_party/python/Lib/unittest/mock.py				\
-	third_party/python/Lib/unittest/result.py			\
-	third_party/python/Lib/unittest/runner.py			\
-	third_party/python/Lib/unittest/signals.py			\
-	third_party/python/Lib/unittest/suite.py			\
-	third_party/python/Lib/unittest/util.py				\
-	third_party/python/Lib/urllib/__init__.py			\
-	third_party/python/Lib/urllib/error.py				\
-	third_party/python/Lib/urllib/parse.py				\
-	third_party/python/Lib/urllib/request.py			\
-	third_party/python/Lib/urllib/response.py			\
-	third_party/python/Lib/urllib/robotparser.py			\
-	third_party/python/Lib/uu.py					\
-	third_party/python/Lib/uuid.py					\
-	third_party/python/Lib/venv/__init__.py				\
-	third_party/python/Lib/venv/__main__.py				\
-	third_party/python/Lib/venv/scripts/common/activate		\
-	third_party/python/Lib/venv/scripts/nt/Activate.ps1		\
-	third_party/python/Lib/venv/scripts/nt/activate.bat		\
-	third_party/python/Lib/venv/scripts/nt/deactivate.bat		\
-	third_party/python/Lib/venv/scripts/posix/activate.csh		\
-	third_party/python/Lib/venv/scripts/posix/activate.fish		\
-	third_party/python/Lib/warnings.py				\
-	third_party/python/Lib/wave.py					\
-	third_party/python/Lib/weakref.py				\
-	third_party/python/Lib/webbrowser.py				\
-	third_party/python/Lib/wsgiref/__init__.py			\
-	third_party/python/Lib/wsgiref/handlers.py			\
-	third_party/python/Lib/wsgiref/headers.py			\
-	third_party/python/Lib/wsgiref/simple_server.py			\
-	third_party/python/Lib/wsgiref/util.py				\
-	third_party/python/Lib/wsgiref/validate.py			\
-	third_party/python/Lib/xdrlib.py				\
-	third_party/python/Lib/xml/__init__.py				\
-	third_party/python/Lib/xml/dom/NodeFilter.py			\
-	third_party/python/Lib/xml/dom/__init__.py			\
-	third_party/python/Lib/xml/dom/domreg.py			\
-	third_party/python/Lib/xml/dom/expatbuilder.py			\
-	third_party/python/Lib/xml/dom/minicompat.py			\
-	third_party/python/Lib/xml/dom/minidom.py			\
-	third_party/python/Lib/xml/dom/pulldom.py			\
-	third_party/python/Lib/xml/dom/xmlbuilder.py			\
-	third_party/python/Lib/xml/etree/ElementInclude.py		\
-	third_party/python/Lib/xml/etree/ElementPath.py			\
-	third_party/python/Lib/xml/etree/ElementTree.py			\
-	third_party/python/Lib/xml/etree/__init__.py			\
-	third_party/python/Lib/xml/etree/cElementTree.py		\
-	third_party/python/Lib/xml/parsers/__init__.py			\
-	third_party/python/Lib/xml/parsers/expat.py			\
-	third_party/python/Lib/xml/sax/__init__.py			\
-	third_party/python/Lib/xml/sax/_exceptions.py			\
-	third_party/python/Lib/xml/sax/expatreader.py			\
-	third_party/python/Lib/xml/sax/handler.py			\
-	third_party/python/Lib/xml/sax/saxutils.py			\
-	third_party/python/Lib/xml/sax/xmlreader.py			\
-	third_party/python/Lib/xmlrpc/__init__.py			\
-	third_party/python/Lib/xmlrpc/client.py				\
-	third_party/python/Lib/xmlrpc/server.py				\
-	third_party/python/Lib/zipapp.py				\
+THIRD_PARTY_PYTHON_STDLIB_PY =									\
+	third_party/python/Lib/									\
+	third_party/python/Lib/__future__.py							\
+	third_party/python/Lib/_bootlocale.py							\
+	third_party/python/Lib/_collections_abc.py						\
+	third_party/python/Lib/_compat_pickle.py						\
+	third_party/python/Lib/_compression.py							\
+	third_party/python/Lib/_dummy_thread.py							\
+	third_party/python/Lib/_markupbase.py							\
+	third_party/python/Lib/_osx_support.py							\
+	third_party/python/Lib/_pyio.py								\
+	third_party/python/Lib/_sitebuiltins.py							\
+	third_party/python/Lib/_strptime.py							\
+	third_party/python/Lib/_sysconfigdata_m_cosmo_x86_64-cosmo.py				\
+	third_party/python/Lib/_threading_local.py						\
+	third_party/python/Lib/_weakrefset.py							\
+	third_party/python/Lib/abc.py								\
+	third_party/python/Lib/aifc.py								\
+	third_party/python/Lib/antigravity.py							\
+	third_party/python/Lib/argparse.py							\
+	third_party/python/Lib/ast.py								\
+	third_party/python/Lib/asynchat.py							\
+	third_party/python/Lib/asyncio/								\
+	third_party/python/Lib/asyncio/__init__.py						\
+	third_party/python/Lib/asyncio/base_events.py						\
+	third_party/python/Lib/asyncio/base_futures.py						\
+	third_party/python/Lib/asyncio/base_subprocess.py					\
+	third_party/python/Lib/asyncio/base_tasks.py						\
+	third_party/python/Lib/asyncio/compat.py						\
+	third_party/python/Lib/asyncio/constants.py						\
+	third_party/python/Lib/asyncio/coroutines.py						\
+	third_party/python/Lib/asyncio/events.py						\
+	third_party/python/Lib/asyncio/futures.py						\
+	third_party/python/Lib/asyncio/locks.py							\
+	third_party/python/Lib/asyncio/log.py							\
+	third_party/python/Lib/asyncio/proactor_events.py					\
+	third_party/python/Lib/asyncio/protocols.py						\
+	third_party/python/Lib/asyncio/queues.py						\
+	third_party/python/Lib/asyncio/selector_events.py					\
+	third_party/python/Lib/asyncio/sslproto.py						\
+	third_party/python/Lib/asyncio/streams.py						\
+	third_party/python/Lib/asyncio/subprocess.py						\
+	third_party/python/Lib/asyncio/tasks.py							\
+	third_party/python/Lib/asyncio/test_utils.py						\
+	third_party/python/Lib/asyncio/transports.py						\
+	third_party/python/Lib/asyncio/unix_events.py						\
+	third_party/python/Lib/asyncio/windows_events.py					\
+	third_party/python/Lib/asyncio/windows_utils.py						\
+	third_party/python/Lib/asyncore.py							\
+	third_party/python/Lib/base64.py							\
+	third_party/python/Lib/bdb.py								\
+	third_party/python/Lib/binhex.py							\
+	third_party/python/Lib/bisect.py							\
+	third_party/python/Lib/bz2.py								\
+	third_party/python/Lib/cProfile.py							\
+	third_party/python/Lib/calendar.py							\
+	third_party/python/Lib/cgi.py								\
+	third_party/python/Lib/cgitb.py								\
+	third_party/python/Lib/chunk.py								\
+	third_party/python/Lib/cmd.py								\
+	third_party/python/Lib/code.py								\
+	third_party/python/Lib/codecs.py							\
+	third_party/python/Lib/codeop.py							\
+	third_party/python/Lib/collections/							\
+	third_party/python/Lib/collections/__init__.py						\
+	third_party/python/Lib/collections/abc.py						\
+	third_party/python/Lib/colorsys.py							\
+	third_party/python/Lib/compileall.py							\
+	third_party/python/Lib/configparser.py							\
+	third_party/python/Lib/contextlib.py							\
+	third_party/python/Lib/copy.py								\
+	third_party/python/Lib/copyreg.py							\
+	third_party/python/Lib/crypt.py								\
+	third_party/python/Lib/csv.py								\
+	third_party/python/Lib/datetime.py							\
+	third_party/python/Lib/dbm/								\
+	third_party/python/Lib/dbm/__init__.py							\
+	third_party/python/Lib/dbm/dumb.py							\
+	third_party/python/Lib/dbm/gnu.py							\
+	third_party/python/Lib/dbm/ndbm.py							\
+	third_party/python/Lib/decimal.py							\
+	third_party/python/Lib/difflib.py							\
+	third_party/python/Lib/dis.py								\
+	third_party/python/Lib/distutils/							\
+	third_party/python/Lib/distutils/__init__.py						\
+	third_party/python/Lib/distutils/_msvccompiler.py					\
+	third_party/python/Lib/distutils/archive_util.py					\
+	third_party/python/Lib/distutils/bcppcompiler.py					\
+	third_party/python/Lib/distutils/ccompiler.py						\
+	third_party/python/Lib/distutils/cmd.py							\
+	third_party/python/Lib/distutils/command/						\
+	third_party/python/Lib/distutils/command/__init__.py					\
+	third_party/python/Lib/distutils/command/bdist.py					\
+	third_party/python/Lib/distutils/command/bdist_dumb.py					\
+	third_party/python/Lib/distutils/command/bdist_msi.py					\
+	third_party/python/Lib/distutils/command/bdist_rpm.py					\
+	third_party/python/Lib/distutils/command/bdist_wininst.py				\
+	third_party/python/Lib/distutils/command/build.py					\
+	third_party/python/Lib/distutils/command/build_clib.py					\
+	third_party/python/Lib/distutils/command/build_ext.py					\
+	third_party/python/Lib/distutils/command/build_py.py					\
+	third_party/python/Lib/distutils/command/build_scripts.py				\
+	third_party/python/Lib/distutils/command/check.py					\
+	third_party/python/Lib/distutils/command/clean.py					\
+	third_party/python/Lib/distutils/command/command_template				\
+	third_party/python/Lib/distutils/command/config.py					\
+	third_party/python/Lib/distutils/command/install.py					\
+	third_party/python/Lib/distutils/command/install_data.py				\
+	third_party/python/Lib/distutils/command/install_egg_info.py				\
+	third_party/python/Lib/distutils/command/install_headers.py				\
+	third_party/python/Lib/distutils/command/install_lib.py					\
+	third_party/python/Lib/distutils/command/install_scripts.py				\
+	third_party/python/Lib/distutils/command/register.py					\
+	third_party/python/Lib/distutils/command/sdist.py					\
+	third_party/python/Lib/distutils/command/upload.py					\
+	third_party/python/Lib/distutils/config.py						\
+	third_party/python/Lib/distutils/core.py						\
+	third_party/python/Lib/distutils/cygwinccompiler.py					\
+	third_party/python/Lib/distutils/debug.py						\
+	third_party/python/Lib/distutils/dep_util.py						\
+	third_party/python/Lib/distutils/dir_util.py						\
+	third_party/python/Lib/distutils/dist.py						\
+	third_party/python/Lib/distutils/errors.py						\
+	third_party/python/Lib/distutils/extension.py						\
+	third_party/python/Lib/distutils/fancy_getopt.py					\
+	third_party/python/Lib/distutils/file_util.py						\
+	third_party/python/Lib/distutils/filelist.py						\
+	third_party/python/Lib/distutils/log.py							\
+	third_party/python/Lib/distutils/msvc9compiler.py					\
+	third_party/python/Lib/distutils/msvccompiler.py					\
+	third_party/python/Lib/distutils/spawn.py						\
+	third_party/python/Lib/distutils/sysconfig.py						\
+	third_party/python/Lib/distutils/tests/							\
+	third_party/python/Lib/distutils/tests/Setup.sample					\
+	third_party/python/Lib/distutils/tests/__init__.py					\
+	third_party/python/Lib/distutils/tests/support.py					\
+	third_party/python/Lib/distutils/tests/test_archive_util.py				\
+	third_party/python/Lib/distutils/tests/test_bdist.py					\
+	third_party/python/Lib/distutils/tests/test_bdist_dumb.py				\
+	third_party/python/Lib/distutils/tests/test_bdist_msi.py				\
+	third_party/python/Lib/distutils/tests/test_bdist_rpm.py				\
+	third_party/python/Lib/distutils/tests/test_bdist_wininst.py				\
+	third_party/python/Lib/distutils/tests/test_build.py					\
+	third_party/python/Lib/distutils/tests/test_build_clib.py				\
+	third_party/python/Lib/distutils/tests/test_build_ext.py				\
+	third_party/python/Lib/distutils/tests/test_build_py.py					\
+	third_party/python/Lib/distutils/tests/test_build_scripts.py				\
+	third_party/python/Lib/distutils/tests/test_check.py					\
+	third_party/python/Lib/distutils/tests/test_clean.py					\
+	third_party/python/Lib/distutils/tests/test_cmd.py					\
+	third_party/python/Lib/distutils/tests/test_config.py					\
+	third_party/python/Lib/distutils/tests/test_config_cmd.py				\
+	third_party/python/Lib/distutils/tests/test_core.py					\
+	third_party/python/Lib/distutils/tests/test_cygwinccompiler.py				\
+	third_party/python/Lib/distutils/tests/test_dep_util.py					\
+	third_party/python/Lib/distutils/tests/test_dir_util.py					\
+	third_party/python/Lib/distutils/tests/test_dist.py					\
+	third_party/python/Lib/distutils/tests/test_extension.py				\
+	third_party/python/Lib/distutils/tests/test_file_util.py				\
+	third_party/python/Lib/distutils/tests/test_filelist.py					\
+	third_party/python/Lib/distutils/tests/test_install.py					\
+	third_party/python/Lib/distutils/tests/test_install_data.py				\
+	third_party/python/Lib/distutils/tests/test_install_headers.py				\
+	third_party/python/Lib/distutils/tests/test_install_lib.py				\
+	third_party/python/Lib/distutils/tests/test_install_scripts.py				\
+	third_party/python/Lib/distutils/tests/test_log.py					\
+	third_party/python/Lib/distutils/tests/test_msvc9compiler.py				\
+	third_party/python/Lib/distutils/tests/test_msvccompiler.py				\
+	third_party/python/Lib/distutils/tests/test_register.py					\
+	third_party/python/Lib/distutils/tests/test_sdist.py					\
+	third_party/python/Lib/distutils/tests/test_spawn.py					\
+	third_party/python/Lib/distutils/tests/test_sysconfig.py				\
+	third_party/python/Lib/distutils/tests/test_text_file.py				\
+	third_party/python/Lib/distutils/tests/test_unixccompiler.py				\
+	third_party/python/Lib/distutils/tests/test_upload.py					\
+	third_party/python/Lib/distutils/tests/test_util.py					\
+	third_party/python/Lib/distutils/tests/test_version.py					\
+	third_party/python/Lib/distutils/tests/test_versionpredicate.py				\
+	third_party/python/Lib/distutils/text_file.py						\
+	third_party/python/Lib/distutils/unixccompiler.py					\
+	third_party/python/Lib/distutils/util.py						\
+	third_party/python/Lib/distutils/version.py						\
+	third_party/python/Lib/distutils/versionpredicate.py					\
+	third_party/python/Lib/doctest.py							\
+	third_party/python/Lib/dummy_threading.py						\
+	third_party/python/Lib/email/								\
+	third_party/python/Lib/email/__init__.py						\
+	third_party/python/Lib/email/_encoded_words.py						\
+	third_party/python/Lib/email/_header_value_parser.py					\
+	third_party/python/Lib/email/_parseaddr.py						\
+	third_party/python/Lib/email/_policybase.py						\
+	third_party/python/Lib/email/architecture.rst						\
+	third_party/python/Lib/email/base64mime.py						\
+	third_party/python/Lib/email/charset.py							\
+	third_party/python/Lib/email/contentmanager.py						\
+	third_party/python/Lib/email/encoders.py						\
+	third_party/python/Lib/email/errors.py							\
+	third_party/python/Lib/email/feedparser.py						\
+	third_party/python/Lib/email/generator.py						\
+	third_party/python/Lib/email/header.py							\
+	third_party/python/Lib/email/headerregistry.py						\
+	third_party/python/Lib/email/iterators.py						\
+	third_party/python/Lib/email/message.py							\
+	third_party/python/Lib/email/mime/							\
+	third_party/python/Lib/email/mime/__init__.py						\
+	third_party/python/Lib/email/mime/application.py					\
+	third_party/python/Lib/email/mime/audio.py						\
+	third_party/python/Lib/email/mime/base.py						\
+	third_party/python/Lib/email/mime/image.py						\
+	third_party/python/Lib/email/mime/message.py						\
+	third_party/python/Lib/email/mime/multipart.py						\
+	third_party/python/Lib/email/mime/nonmultipart.py					\
+	third_party/python/Lib/email/mime/text.py						\
+	third_party/python/Lib/email/parser.py							\
+	third_party/python/Lib/email/policy.py							\
+	third_party/python/Lib/email/quoprimime.py						\
+	third_party/python/Lib/email/utils.py							\
+	third_party/python/Lib/encodings/							\
+	third_party/python/Lib/encodings/__init__.py						\
+	third_party/python/Lib/encodings/aliases.py						\
+	third_party/python/Lib/encodings/ascii.py						\
+	third_party/python/Lib/encodings/base64_codec.py					\
+	third_party/python/Lib/encodings/big5.py						\
+	third_party/python/Lib/encodings/big5hkscs.py						\
+	third_party/python/Lib/encodings/bz2_codec.py						\
+	third_party/python/Lib/encodings/charmap.py						\
+	third_party/python/Lib/encodings/cp037.py						\
+	third_party/python/Lib/encodings/cp1006.py						\
+	third_party/python/Lib/encodings/cp1026.py						\
+	third_party/python/Lib/encodings/cp1125.py						\
+	third_party/python/Lib/encodings/cp1140.py						\
+	third_party/python/Lib/encodings/cp1250.py						\
+	third_party/python/Lib/encodings/cp1251.py						\
+	third_party/python/Lib/encodings/cp1252.py						\
+	third_party/python/Lib/encodings/cp1253.py						\
+	third_party/python/Lib/encodings/cp1254.py						\
+	third_party/python/Lib/encodings/cp1255.py						\
+	third_party/python/Lib/encodings/cp1256.py						\
+	third_party/python/Lib/encodings/cp1257.py						\
+	third_party/python/Lib/encodings/cp1258.py						\
+	third_party/python/Lib/encodings/cp273.py						\
+	third_party/python/Lib/encodings/cp424.py						\
+	third_party/python/Lib/encodings/cp437.py						\
+	third_party/python/Lib/encodings/cp500.py						\
+	third_party/python/Lib/encodings/cp65001.py						\
+	third_party/python/Lib/encodings/cp720.py						\
+	third_party/python/Lib/encodings/cp737.py						\
+	third_party/python/Lib/encodings/cp775.py						\
+	third_party/python/Lib/encodings/cp850.py						\
+	third_party/python/Lib/encodings/cp852.py						\
+	third_party/python/Lib/encodings/cp855.py						\
+	third_party/python/Lib/encodings/cp856.py						\
+	third_party/python/Lib/encodings/cp857.py						\
+	third_party/python/Lib/encodings/cp858.py						\
+	third_party/python/Lib/encodings/cp860.py						\
+	third_party/python/Lib/encodings/cp861.py						\
+	third_party/python/Lib/encodings/cp862.py						\
+	third_party/python/Lib/encodings/cp863.py						\
+	third_party/python/Lib/encodings/cp864.py						\
+	third_party/python/Lib/encodings/cp865.py						\
+	third_party/python/Lib/encodings/cp866.py						\
+	third_party/python/Lib/encodings/cp869.py						\
+	third_party/python/Lib/encodings/cp874.py						\
+	third_party/python/Lib/encodings/cp875.py						\
+	third_party/python/Lib/encodings/cp932.py						\
+	third_party/python/Lib/encodings/cp949.py						\
+	third_party/python/Lib/encodings/cp950.py						\
+	third_party/python/Lib/encodings/euc_jis_2004.py					\
+	third_party/python/Lib/encodings/euc_jisx0213.py					\
+	third_party/python/Lib/encodings/euc_jp.py						\
+	third_party/python/Lib/encodings/euc_kr.py						\
+	third_party/python/Lib/encodings/gb18030.py						\
+	third_party/python/Lib/encodings/gb2312.py						\
+	third_party/python/Lib/encodings/gbk.py							\
+	third_party/python/Lib/encodings/hex_codec.py						\
+	third_party/python/Lib/encodings/hp_roman8.py						\
+	third_party/python/Lib/encodings/hz.py							\
+	third_party/python/Lib/encodings/idna.py						\
+	third_party/python/Lib/encodings/iso2022_jp.py						\
+	third_party/python/Lib/encodings/iso2022_jp_1.py					\
+	third_party/python/Lib/encodings/iso2022_jp_2.py					\
+	third_party/python/Lib/encodings/iso2022_jp_2004.py					\
+	third_party/python/Lib/encodings/iso2022_jp_3.py					\
+	third_party/python/Lib/encodings/iso2022_jp_ext.py					\
+	third_party/python/Lib/encodings/iso2022_kr.py						\
+	third_party/python/Lib/encodings/iso8859_1.py						\
+	third_party/python/Lib/encodings/iso8859_10.py						\
+	third_party/python/Lib/encodings/iso8859_11.py						\
+	third_party/python/Lib/encodings/iso8859_13.py						\
+	third_party/python/Lib/encodings/iso8859_14.py						\
+	third_party/python/Lib/encodings/iso8859_15.py						\
+	third_party/python/Lib/encodings/iso8859_16.py						\
+	third_party/python/Lib/encodings/iso8859_2.py						\
+	third_party/python/Lib/encodings/iso8859_3.py						\
+	third_party/python/Lib/encodings/iso8859_4.py						\
+	third_party/python/Lib/encodings/iso8859_5.py						\
+	third_party/python/Lib/encodings/iso8859_6.py						\
+	third_party/python/Lib/encodings/iso8859_7.py						\
+	third_party/python/Lib/encodings/iso8859_8.py						\
+	third_party/python/Lib/encodings/iso8859_9.py						\
+	third_party/python/Lib/encodings/johab.py						\
+	third_party/python/Lib/encodings/koi8_r.py						\
+	third_party/python/Lib/encodings/koi8_t.py						\
+	third_party/python/Lib/encodings/koi8_u.py						\
+	third_party/python/Lib/encodings/kz1048.py						\
+	third_party/python/Lib/encodings/latin_1.py						\
+	third_party/python/Lib/encodings/mac_arabic.py						\
+	third_party/python/Lib/encodings/mac_centeuro.py					\
+	third_party/python/Lib/encodings/mac_croatian.py					\
+	third_party/python/Lib/encodings/mac_cyrillic.py					\
+	third_party/python/Lib/encodings/mac_farsi.py						\
+	third_party/python/Lib/encodings/mac_greek.py						\
+	third_party/python/Lib/encodings/mac_iceland.py						\
+	third_party/python/Lib/encodings/mac_latin2.py						\
+	third_party/python/Lib/encodings/mac_roman.py						\
+	third_party/python/Lib/encodings/mac_romanian.py					\
+	third_party/python/Lib/encodings/mac_turkish.py						\
+	third_party/python/Lib/encodings/mbcs.py						\
+	third_party/python/Lib/encodings/oem.py							\
+	third_party/python/Lib/encodings/palmos.py						\
+	third_party/python/Lib/encodings/ptcp154.py						\
+	third_party/python/Lib/encodings/punycode.py						\
+	third_party/python/Lib/encodings/quopri_codec.py					\
+	third_party/python/Lib/encodings/raw_unicode_escape.py					\
+	third_party/python/Lib/encodings/rot_13.py						\
+	third_party/python/Lib/encodings/shift_jis.py						\
+	third_party/python/Lib/encodings/shift_jis_2004.py					\
+	third_party/python/Lib/encodings/shift_jisx0213.py					\
+	third_party/python/Lib/encodings/tis_620.py						\
+	third_party/python/Lib/encodings/undefined.py						\
+	third_party/python/Lib/encodings/unicode_escape.py					\
+	third_party/python/Lib/encodings/unicode_internal.py					\
+	third_party/python/Lib/encodings/utf_16.py						\
+	third_party/python/Lib/encodings/utf_16_be.py						\
+	third_party/python/Lib/encodings/utf_16_le.py						\
+	third_party/python/Lib/encodings/utf_32.py						\
+	third_party/python/Lib/encodings/utf_32_be.py						\
+	third_party/python/Lib/encodings/utf_32_le.py						\
+	third_party/python/Lib/encodings/utf_7.py						\
+	third_party/python/Lib/encodings/utf_8.py						\
+	third_party/python/Lib/encodings/utf_8_sig.py						\
+	third_party/python/Lib/encodings/uu_codec.py						\
+	third_party/python/Lib/encodings/zlib_codec.py						\
+	third_party/python/Lib/ensurepip/							\
+	third_party/python/Lib/ensurepip/__init__.py						\
+	third_party/python/Lib/ensurepip/__main__.py						\
+	third_party/python/Lib/ensurepip/_bundled						\
+	third_party/python/Lib/ensurepip/_bundled/pip-18.1-py2.py3-none-any.whl			\
+	third_party/python/Lib/ensurepip/_bundled/setuptools-40.6.2-py2.py3-none-any.whl	\
+	third_party/python/Lib/ensurepip/_uninstall.py						\
+	third_party/python/Lib/enum.py								\
+	third_party/python/Lib/filecmp.py							\
+	third_party/python/Lib/fileinput.py							\
+	third_party/python/Lib/fnmatch.py							\
+	third_party/python/Lib/formatter.py							\
+	third_party/python/Lib/fractions.py							\
+	third_party/python/Lib/ftplib.py							\
+	third_party/python/Lib/functools.py							\
+	third_party/python/Lib/genericpath.py							\
+	third_party/python/Lib/getopt.py							\
+	third_party/python/Lib/getpass.py							\
+	third_party/python/Lib/gettext.py							\
+	third_party/python/Lib/glob.py								\
+	third_party/python/Lib/gzip.py								\
+	third_party/python/Lib/hashlib.py							\
+	third_party/python/Lib/heapq.py								\
+	third_party/python/Lib/hmac.py								\
+	third_party/python/Lib/html/								\
+	third_party/python/Lib/html/__init__.py							\
+	third_party/python/Lib/html/entities.py							\
+	third_party/python/Lib/html/parser.py							\
+	third_party/python/Lib/http/								\
+	third_party/python/Lib/http/__init__.py							\
+	third_party/python/Lib/http/client.py							\
+	third_party/python/Lib/http/cookiejar.py						\
+	third_party/python/Lib/http/cookies.py							\
+	third_party/python/Lib/http/server.py							\
+	third_party/python/Lib/imaplib.py							\
+	third_party/python/Lib/imghdr.py							\
+	third_party/python/Lib/imp.py								\
+	third_party/python/Lib/importlib/							\
+	third_party/python/Lib/importlib/__init__.py						\
+	third_party/python/Lib/importlib/_bootstrap.py						\
+	third_party/python/Lib/importlib/_bootstrap_external.py					\
+	third_party/python/Lib/importlib/abc.py							\
+	third_party/python/Lib/importlib/machinery.py						\
+	third_party/python/Lib/importlib/util.py						\
+	third_party/python/Lib/inspect.py							\
+	third_party/python/Lib/io.py								\
+	third_party/python/Lib/ipaddress.py							\
+	third_party/python/Lib/json/								\
+	third_party/python/Lib/json/__init__.py							\
+	third_party/python/Lib/json/decoder.py							\
+	third_party/python/Lib/json/encoder.py							\
+	third_party/python/Lib/json/scanner.py							\
+	third_party/python/Lib/json/tool.py							\
+	third_party/python/Lib/keyword.py							\
+	third_party/python/Lib/lib2to3/								\
+	third_party/python/Lib/lib2to3/Grammar.txt						\
+	third_party/python/Lib/lib2to3/PatternGrammar.txt					\
+	third_party/python/Lib/lib2to3/__init__.py						\
+	third_party/python/Lib/lib2to3/__main__.py						\
+	third_party/python/Lib/lib2to3/btm_matcher.py						\
+	third_party/python/Lib/lib2to3/btm_utils.py						\
+	third_party/python/Lib/lib2to3/fixer_base.py						\
+	third_party/python/Lib/lib2to3/fixer_util.py						\
+	third_party/python/Lib/lib2to3/fixes/							\
+	third_party/python/Lib/lib2to3/fixes/__init__.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_apply.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_asserts.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_basestring.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_buffer.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_dict.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_except.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_exec.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_execfile.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_exitfunc.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_filter.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_funcattrs.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_future.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_getcwdu.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_has_key.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_idioms.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_import.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_imports.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_imports2.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_input.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_intern.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_isinstance.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_itertools.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_itertools_imports.py				\
+	third_party/python/Lib/lib2to3/fixes/fix_long.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_map.py						\
+	third_party/python/Lib/lib2to3/fixes/fix_metaclass.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_methodattrs.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_ne.py						\
+	third_party/python/Lib/lib2to3/fixes/fix_next.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_nonzero.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_numliterals.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_operator.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_paren.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_print.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_raise.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_raw_input.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_reduce.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_reload.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_renames.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_repr.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_set_literal.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_standarderror.py				\
+	third_party/python/Lib/lib2to3/fixes/fix_sys_exc.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_throw.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_tuple_params.py				\
+	third_party/python/Lib/lib2to3/fixes/fix_types.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_unicode.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_urllib.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_ws_comma.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_xrange.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_xreadlines.py					\
+	third_party/python/Lib/lib2to3/fixes/fix_zip.py						\
+	third_party/python/Lib/lib2to3/main.py							\
+	third_party/python/Lib/lib2to3/patcomp.py						\
+	third_party/python/Lib/lib2to3/pgen2/							\
+	third_party/python/Lib/lib2to3/pgen2/__init__.py					\
+	third_party/python/Lib/lib2to3/pgen2/conv.py						\
+	third_party/python/Lib/lib2to3/pgen2/driver.py						\
+	third_party/python/Lib/lib2to3/pgen2/grammar.py						\
+	third_party/python/Lib/lib2to3/pgen2/literals.py					\
+	third_party/python/Lib/lib2to3/pgen2/parse.py						\
+	third_party/python/Lib/lib2to3/pgen2/pgen.py						\
+	third_party/python/Lib/lib2to3/pgen2/token.py						\
+	third_party/python/Lib/lib2to3/pgen2/tokenize.py					\
+	third_party/python/Lib/lib2to3/pygram.py						\
+	third_party/python/Lib/lib2to3/pytree.py						\
+	third_party/python/Lib/lib2to3/refactor.py						\
+	third_party/python/Lib/lib2to3/tests							\
+	third_party/python/Lib/lib2to3/tests/__init__.py					\
+	third_party/python/Lib/lib2to3/tests/__main__.py					\
+	third_party/python/Lib/lib2to3/tests/data						\
+	third_party/python/Lib/lib2to3/tests/data/README					\
+	third_party/python/Lib/lib2to3/tests/data/bom.py					\
+	third_party/python/Lib/lib2to3/tests/data/crlf.py					\
+	third_party/python/Lib/lib2to3/tests/data/different_encoding.py				\
+	third_party/python/Lib/lib2to3/tests/data/false_encoding.py				\
+	third_party/python/Lib/lib2to3/tests/data/fixers					\
+	third_party/python/Lib/lib2to3/tests/data/fixers/bad_order.py				\
+	third_party/python/Lib/lib2to3/tests/data/fixers/myfixes				\
+	third_party/python/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py			\
+	third_party/python/Lib/lib2to3/tests/data/fixers/myfixes/fix_explicit.py		\
+	third_party/python/Lib/lib2to3/tests/data/fixers/myfixes/fix_first.py			\
+	third_party/python/Lib/lib2to3/tests/data/fixers/myfixes/fix_last.py			\
+	third_party/python/Lib/lib2to3/tests/data/fixers/myfixes/fix_parrot.py			\
+	third_party/python/Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py		\
+	third_party/python/Lib/lib2to3/tests/data/fixers/no_fixer_cls.py			\
+	third_party/python/Lib/lib2to3/tests/data/fixers/parrot_example.py			\
+	third_party/python/Lib/lib2to3/tests/data/infinite_recursion.py				\
+	third_party/python/Lib/lib2to3/tests/data/py2_test_grammar.py				\
+	third_party/python/Lib/lib2to3/tests/data/py3_test_grammar.py				\
+	third_party/python/Lib/lib2to3/tests/pytree_idempotency.py				\
+	third_party/python/Lib/lib2to3/tests/support.py						\
+	third_party/python/Lib/lib2to3/tests/test_all_fixers.py					\
+	third_party/python/Lib/lib2to3/tests/test_fixers.py					\
+	third_party/python/Lib/lib2to3/tests/test_main.py					\
+	third_party/python/Lib/lib2to3/tests/test_parser.py					\
+	third_party/python/Lib/lib2to3/tests/test_pytree.py					\
+	third_party/python/Lib/lib2to3/tests/test_refactor.py					\
+	third_party/python/Lib/lib2to3/tests/test_util.py					\
+	third_party/python/Lib/linecache.py							\
+	third_party/python/Lib/locale.py							\
+	third_party/python/Lib/logging/								\
+	third_party/python/Lib/logging/__init__.py						\
+	third_party/python/Lib/logging/config.py						\
+	third_party/python/Lib/logging/handlers.py						\
+	third_party/python/Lib/lzma.py								\
+	third_party/python/Lib/macpath.py							\
+	third_party/python/Lib/macurl2path.py							\
+	third_party/python/Lib/mailbox.py							\
+	third_party/python/Lib/mailcap.py							\
+	third_party/python/Lib/mimetypes.py							\
+	third_party/python/Lib/modulefinder.py							\
+	third_party/python/Lib/msilib/								\
+	third_party/python/Lib/msilib/__init__.py						\
+	third_party/python/Lib/msilib/schema.py							\
+	third_party/python/Lib/msilib/sequence.py						\
+	third_party/python/Lib/msilib/text.py							\
+	third_party/python/Lib/multiprocessing/							\
+	third_party/python/Lib/multiprocessing/__init__.py					\
+	third_party/python/Lib/multiprocessing/connection.py					\
+	third_party/python/Lib/multiprocessing/context.py					\
+	third_party/python/Lib/multiprocessing/dummy/						\
+	third_party/python/Lib/multiprocessing/dummy/__init__.py				\
+	third_party/python/Lib/multiprocessing/dummy/connection.py				\
+	third_party/python/Lib/multiprocessing/forkserver.py					\
+	third_party/python/Lib/multiprocessing/heap.py						\
+	third_party/python/Lib/multiprocessing/managers.py					\
+	third_party/python/Lib/multiprocessing/pool.py						\
+	third_party/python/Lib/multiprocessing/popen_fork.py					\
+	third_party/python/Lib/multiprocessing/popen_forkserver.py				\
+	third_party/python/Lib/multiprocessing/popen_spawn_posix.py				\
+	third_party/python/Lib/multiprocessing/popen_spawn_win32.py				\
+	third_party/python/Lib/multiprocessing/process.py					\
+	third_party/python/Lib/multiprocessing/queues.py					\
+	third_party/python/Lib/multiprocessing/reduction.py					\
+	third_party/python/Lib/multiprocessing/resource_sharer.py				\
+	third_party/python/Lib/multiprocessing/semaphore_tracker.py				\
+	third_party/python/Lib/multiprocessing/sharedctypes.py					\
+	third_party/python/Lib/multiprocessing/spawn.py						\
+	third_party/python/Lib/multiprocessing/synchronize.py					\
+	third_party/python/Lib/multiprocessing/util.py						\
+	third_party/python/Lib/netrc.py								\
+	third_party/python/Lib/nntplib.py							\
+	third_party/python/Lib/ntpath.py							\
+	third_party/python/Lib/nturl2path.py							\
+	third_party/python/Lib/numbers.py							\
+	third_party/python/Lib/opcode.py							\
+	third_party/python/Lib/operator.py							\
+	third_party/python/Lib/optparse.py							\
+	third_party/python/Lib/os.py								\
+	third_party/python/Lib/pathlib.py							\
+	third_party/python/Lib/pdb.py								\
+	third_party/python/Lib/pickle.py							\
+	third_party/python/Lib/pickletools.py							\
+	third_party/python/Lib/pipes.py								\
+	third_party/python/Lib/pkgutil.py							\
+	third_party/python/Lib/platform.py							\
+	third_party/python/Lib/plistlib.py							\
+	third_party/python/Lib/poplib.py							\
+	third_party/python/Lib/posixpath.py							\
+	third_party/python/Lib/pprint.py							\
+	third_party/python/Lib/profile.py							\
+	third_party/python/Lib/pstats.py							\
+	third_party/python/Lib/pty.py								\
+	third_party/python/Lib/py_compile.py							\
+	third_party/python/Lib/pyclbr.py							\
+	third_party/python/Lib/pydoc.py								\
+	third_party/python/Lib/queue.py								\
+	third_party/python/Lib/quopri.py							\
+	third_party/python/Lib/random.py							\
+	third_party/python/Lib/re.py								\
+	third_party/python/Lib/reprlib.py							\
+	third_party/python/Lib/rlcompleter.py							\
+	third_party/python/Lib/runpy.py								\
+	third_party/python/Lib/sched.py								\
+	third_party/python/Lib/secrets.py							\
+	third_party/python/Lib/selectors.py							\
+	third_party/python/Lib/shelve.py							\
+	third_party/python/Lib/shlex.py								\
+	third_party/python/Lib/shutil.py							\
+	third_party/python/Lib/signal.py							\
+	third_party/python/Lib/site.py								\
+	third_party/python/Lib/smtpd.py								\
+	third_party/python/Lib/smtplib.py							\
+	third_party/python/Lib/sndhdr.py							\
+	third_party/python/Lib/socket.py							\
+	third_party/python/Lib/socketserver.py							\
+	third_party/python/Lib/sqlite3/								\
+	third_party/python/Lib/sqlite3/__init__.py						\
+	third_party/python/Lib/sqlite3/dbapi2.py						\
+	third_party/python/Lib/sqlite3/dump.py							\
+	third_party/python/Lib/sre_compile.py							\
+	third_party/python/Lib/sre_constants.py							\
+	third_party/python/Lib/sre_parse.py							\
+	third_party/python/Lib/ssl.py								\
+	third_party/python/Lib/stat.py								\
+	third_party/python/Lib/statistics.py							\
+	third_party/python/Lib/string.py							\
+	third_party/python/Lib/stringprep.py							\
+	third_party/python/Lib/struct.py							\
+	third_party/python/Lib/subprocess.py							\
+	third_party/python/Lib/sunau.py								\
+	third_party/python/Lib/symbol.py							\
+	third_party/python/Lib/symtable.py							\
+	third_party/python/Lib/sysconfig.py							\
+	third_party/python/Lib/tabnanny.py							\
+	third_party/python/Lib/tarfile.py							\
+	third_party/python/Lib/telnetlib.py							\
+	third_party/python/Lib/tempfile.py							\
+	third_party/python/Lib/textwrap.py							\
+	third_party/python/Lib/this.py								\
+	third_party/python/Lib/threading.py							\
+	third_party/python/Lib/timeit.py							\
+	third_party/python/Lib/token.py								\
+	third_party/python/Lib/tokenize.py							\
+	third_party/python/Lib/trace.py								\
+	third_party/python/Lib/traceback.py							\
+	third_party/python/Lib/tracemalloc.py							\
+	third_party/python/Lib/tty.py								\
+	third_party/python/Lib/types.py								\
+	third_party/python/Lib/typing.py							\
+	third_party/python/Lib/unittest/							\
+	third_party/python/Lib/unittest/__init__.py						\
+	third_party/python/Lib/unittest/__main__.py						\
+	third_party/python/Lib/unittest/case.py							\
+	third_party/python/Lib/unittest/loader.py						\
+	third_party/python/Lib/unittest/main.py							\
+	third_party/python/Lib/unittest/mock.py							\
+	third_party/python/Lib/unittest/result.py						\
+	third_party/python/Lib/unittest/runner.py						\
+	third_party/python/Lib/unittest/signals.py						\
+	third_party/python/Lib/unittest/suite.py						\
+	third_party/python/Lib/unittest/util.py							\
+	third_party/python/Lib/urllib/								\
+	third_party/python/Lib/urllib/__init__.py						\
+	third_party/python/Lib/urllib/error.py							\
+	third_party/python/Lib/urllib/parse.py							\
+	third_party/python/Lib/urllib/request.py						\
+	third_party/python/Lib/urllib/response.py						\
+	third_party/python/Lib/urllib/robotparser.py						\
+	third_party/python/Lib/uu.py								\
+	third_party/python/Lib/uuid.py								\
+	third_party/python/Lib/venv/								\
+	third_party/python/Lib/venv/__init__.py							\
+	third_party/python/Lib/venv/__main__.py							\
+	third_party/python/Lib/venv/scripts/common/						\
+	third_party/python/Lib/venv/scripts/common/activate					\
+	third_party/python/Lib/venv/scripts/nt/							\
+	third_party/python/Lib/venv/scripts/nt/Activate.ps1					\
+	third_party/python/Lib/venv/scripts/nt/activate.bat					\
+	third_party/python/Lib/venv/scripts/nt/deactivate.bat					\
+	third_party/python/Lib/venv/scripts/posix/						\
+	third_party/python/Lib/venv/scripts/posix/activate.csh					\
+	third_party/python/Lib/venv/scripts/posix/activate.fish					\
+	third_party/python/Lib/warnings.py							\
+	third_party/python/Lib/wave.py								\
+	third_party/python/Lib/weakref.py							\
+	third_party/python/Lib/webbrowser.py							\
+	third_party/python/Lib/wsgiref/								\
+	third_party/python/Lib/wsgiref/__init__.py						\
+	third_party/python/Lib/wsgiref/handlers.py						\
+	third_party/python/Lib/wsgiref/headers.py						\
+	third_party/python/Lib/wsgiref/simple_server.py						\
+	third_party/python/Lib/wsgiref/util.py							\
+	third_party/python/Lib/wsgiref/validate.py						\
+	third_party/python/Lib/xdrlib.py							\
+	third_party/python/Lib/xml/								\
+	third_party/python/Lib/xml/__init__.py							\
+	third_party/python/Lib/xml/dom/								\
+	third_party/python/Lib/xml/dom/NodeFilter.py						\
+	third_party/python/Lib/xml/dom/__init__.py						\
+	third_party/python/Lib/xml/dom/domreg.py						\
+	third_party/python/Lib/xml/dom/expatbuilder.py						\
+	third_party/python/Lib/xml/dom/minicompat.py						\
+	third_party/python/Lib/xml/dom/minidom.py						\
+	third_party/python/Lib/xml/dom/pulldom.py						\
+	third_party/python/Lib/xml/dom/xmlbuilder.py						\
+	third_party/python/Lib/xml/etree/							\
+	third_party/python/Lib/xml/etree/ElementInclude.py					\
+	third_party/python/Lib/xml/etree/ElementPath.py						\
+	third_party/python/Lib/xml/etree/ElementTree.py						\
+	third_party/python/Lib/xml/etree/__init__.py						\
+	third_party/python/Lib/xml/etree/cElementTree.py					\
+	third_party/python/Lib/xml/parsers/							\
+	third_party/python/Lib/xml/parsers/__init__.py						\
+	third_party/python/Lib/xml/parsers/expat.py						\
+	third_party/python/Lib/xml/sax/								\
+	third_party/python/Lib/xml/sax/__init__.py						\
+	third_party/python/Lib/xml/sax/_exceptions.py						\
+	third_party/python/Lib/xml/sax/expatreader.py						\
+	third_party/python/Lib/xml/sax/handler.py						\
+	third_party/python/Lib/xml/sax/saxutils.py						\
+	third_party/python/Lib/xml/sax/xmlreader.py						\
+	third_party/python/Lib/xmlrpc/								\
+	third_party/python/Lib/xmlrpc/__init__.py						\
+	third_party/python/Lib/xmlrpc/client.py							\
+	third_party/python/Lib/xmlrpc/server.py							\
+	third_party/python/Lib/zipapp.py							\
 	third_party/python/Lib/zipfile.py
 
-THIRD_PARTY_PYTHON_STDLIB_PY_OBJS =					\
+THIRD_PARTY_PYTHON_STDLIB_PY_OBJS =								\
 	$(THIRD_PARTY_PYTHON_STDLIB_PY:%=o/$(MODE)/%.zip.o)
 
-$(THIRD_PARTY_PYTHON_STDLIB_PY_OBJS):					\
+$(THIRD_PARTY_PYTHON_STDLIB_PY_OBJS):								\
 		third_party/python/python-stdlib.mk
 
-#o/$(MODE)/third_party/python/Lib/%.py.zip.o:				\
-		ZIPOBJ_FLAGS +=						\
-			-P.python					\
+#$(THIRD_PARTY_PYTHON_STDLIB_PY_OBJS):								\
+		ZIPOBJ_FLAGS +=									\
+			-P.python								\
 			-C3