summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/_pydecimal.py5
-rw-r--r--Lib/importlib/_bootstrap.py14
-rw-r--r--Lib/importlib/_bootstrap_external.py6
-rw-r--r--Lib/test/ssl_servers.py2
-rw-r--r--Lib/test/support/__init__.py1
-rw-r--r--Lib/test/test_httplib.py3
-rw-r--r--Lib/test/test_idle.py2
-rw-r--r--Lib/test/test_multiprocessing_main_handling.py3
-rw-r--r--Lib/test/test_thread.py2
-rw-r--r--Lib/test/test_threadsignals.py2
-rw-r--r--Lib/test/test_tools/test_sundry.py1
-rw-r--r--Lib/test/test_winreg.py2
-rw-r--r--Lib/test/test_wsgiref.py2
-rw-r--r--Lib/test/test_xmlrpc.py8
-rw-r--r--Python/importlib.h185
-rw-r--r--Python/importlib_external.h142
16 files changed, 171 insertions, 209 deletions
diff --git a/Lib/_pydecimal.py b/Lib/_pydecimal.py
index a43c75f..a1662bb 100644
--- a/Lib/_pydecimal.py
+++ b/Lib/_pydecimal.py
@@ -431,10 +431,7 @@ _rounding_modes = (ROUND_DOWN, ROUND_HALF_UP, ROUND_HALF_EVEN, ROUND_CEILING,
##### Context Functions ##################################################
# The getcontext() and setcontext() function manage access to a thread-local
-# current context. Py2.4 offers direct support for thread locals. If that
-# is not available, use threading.current_thread() which is slower but will
-# work for older Pythons. If threads are not part of the build, create a
-# mock threading object with threading.local() returning the module namespace.
+# current context.
import threading
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index fbd9392..755a634 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -1121,25 +1121,13 @@ def _setup(sys_module, _imp_module):
# Directly load built-in modules needed during bootstrap.
self_module = sys.modules[__name__]
- for builtin_name in ('_warnings',):
+ for builtin_name in ('_thread', '_warnings', '_weakref'):
if builtin_name not in sys.modules:
builtin_module = _builtin_from_name(builtin_name)
else:
builtin_module = sys.modules[builtin_name]
setattr(self_module, builtin_name, builtin_module)
- # Directly load the _thread module (needed during bootstrap).
- try:
- thread_module = _builtin_from_name('_thread')
- except ImportError:
- # Python was built without threads
- thread_module = None
- setattr(self_module, '_thread', thread_module)
-
- # Directly load the _weakref module (needed during bootstrap).
- weakref_module = _builtin_from_name('_weakref')
- setattr(self_module, '_weakref', weakref_module)
-
def _install(sys_module, _imp_module):
"""Install importers for builtin and frozen modules"""
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py
index 3235404..e9f870b 100644
--- a/Lib/importlib/_bootstrap_external.py
+++ b/Lib/importlib/_bootstrap_external.py
@@ -1411,11 +1411,7 @@ def _setup(_bootstrap_module):
setattr(self_module, 'path_separators', ''.join(path_separators))
# Directly load the _thread module (needed during bootstrap).
- try:
- thread_module = _bootstrap._builtin_from_name('_thread')
- except ImportError:
- # Python was built without threads
- thread_module = None
+ thread_module = _bootstrap._builtin_from_name('_thread')
setattr(self_module, '_thread', thread_module)
# Directly load the _weakref module (needed during bootstrap).
diff --git a/Lib/test/ssl_servers.py b/Lib/test/ssl_servers.py
index 8146467..bfe533c 100644
--- a/Lib/test/ssl_servers.py
+++ b/Lib/test/ssl_servers.py
@@ -2,13 +2,13 @@ import os
import sys
import ssl
import pprint
+import threading
import urllib.parse
# Rename HTTPServer to _HTTPServer so as to avoid confusion with HTTPSServer.
from http.server import (HTTPServer as _HTTPServer,
SimpleHTTPRequestHandler, BaseHTTPRequestHandler)
from test import support
-threading = support.import_module("threading")
here = os.path.dirname(__file__)
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py
index b2e4560..4f60507 100644
--- a/Lib/test/support/__init__.py
+++ b/Lib/test/support/__init__.py
@@ -2060,7 +2060,6 @@ def threading_cleanup(*original_values):
def reap_threads(func):
"""Use this function when threads are being used. This will
ensure that the threads are cleaned up even when the test fails.
- If threading is unavailable this function does nothing.
"""
@functools.wraps(func)
def decorator(*args):
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py
index ab798a2..bec994e 100644
--- a/Lib/test/test_httplib.py
+++ b/Lib/test/test_httplib.py
@@ -5,6 +5,7 @@ import itertools
import os
import array
import socket
+import threading
import unittest
TestCase = unittest.TestCase
@@ -1077,8 +1078,6 @@ class BasicTest(TestCase):
def test_response_fileno(self):
# Make sure fd returned by fileno is valid.
- threading = support.import_module("threading")
-
serv = socket.socket(
socket.AF_INET, socket.SOCK_STREAM, socket.IPPROTO_TCP)
self.addCleanup(serv.close)
diff --git a/Lib/test/test_idle.py b/Lib/test/test_idle.py
index b7ef70d..31fffd9 100644
--- a/Lib/test/test_idle.py
+++ b/Lib/test/test_idle.py
@@ -1,7 +1,7 @@
import unittest
from test.support import import_module
-# Skip test if _thread or _tkinter wasn't built, if idlelib is missing,
+# Skip test if _tkinter wasn't built, if idlelib is missing,
# or if tcl/tk is not the 8.5+ needed for ttk widgets.
tk = import_module('tkinter') # imports _tkinter
if tk.TkVersion < 8.5:
diff --git a/Lib/test/test_multiprocessing_main_handling.py b/Lib/test/test_multiprocessing_main_handling.py
index a9c5d69..fd93184 100644
--- a/Lib/test/test_multiprocessing_main_handling.py
+++ b/Lib/test/test_multiprocessing_main_handling.py
@@ -1,7 +1,6 @@
# tests __main__ module handling in multiprocessing
from test import support
-# Skip tests if _thread or _multiprocessing wasn't built.
-support.import_module('_thread')
+# Skip tests if _multiprocessing wasn't built.
support.import_module('_multiprocessing')
import importlib
diff --git a/Lib/test/test_thread.py b/Lib/test/test_thread.py
index 52f6c79..64ffe46 100644
--- a/Lib/test/test_thread.py
+++ b/Lib/test/test_thread.py
@@ -2,7 +2,7 @@ import os
import unittest
import random
from test import support
-thread = support.import_module('_thread')
+import _thread as thread
import time
import sys
import weakref
diff --git a/Lib/test/test_threadsignals.py b/Lib/test/test_threadsignals.py
index f93dd77..67a1c58 100644
--- a/Lib/test/test_threadsignals.py
+++ b/Lib/test/test_threadsignals.py
@@ -5,7 +5,7 @@ import signal
import os
import sys
from test import support
-thread = support.import_module('_thread')
+import _thread as thread
import time
if (sys.platform[:3] == 'win'):
diff --git a/Lib/test/test_tools/test_sundry.py b/Lib/test/test_tools/test_sundry.py
index 39e541b..2f9db94 100644
--- a/Lib/test/test_tools/test_sundry.py
+++ b/Lib/test/test_tools/test_sundry.py
@@ -40,7 +40,6 @@ class TestSundryScripts(unittest.TestCase):
for name in self.windows_only:
import_tool(name)
- @unittest.skipIf(not support.threading, "test requires _thread module")
def test_analyze_dxp_import(self):
if hasattr(sys, 'getdxp'):
import_tool('analyze_dxp')
diff --git a/Lib/test/test_winreg.py b/Lib/test/test_winreg.py
index 2be61ae..11d054e 100644
--- a/Lib/test/test_winreg.py
+++ b/Lib/test/test_winreg.py
@@ -4,7 +4,7 @@
import os, sys, errno
import unittest
from test import support
-threading = support.import_module("threading")
+import threading
from platform import machine
# Do this first so test will be skipped if module doesn't exist
diff --git a/Lib/test/test_wsgiref.py b/Lib/test/test_wsgiref.py
index 7708e20..8422b30 100644
--- a/Lib/test/test_wsgiref.py
+++ b/Lib/test/test_wsgiref.py
@@ -18,6 +18,7 @@ import os
import re
import signal
import sys
+import threading
import unittest
@@ -253,7 +254,6 @@ class IntegrationTests(TestCase):
# BaseHandler._write() and _flush() have to write all data, even if
# it takes multiple send() calls. Test this by interrupting a send()
# call with a Unix signal.
- threading = support.import_module("threading")
pthread_kill = support.get_attribute(signal, "pthread_kill")
def app(environ, start_response):
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py
index c9099e0..15b7ae5 100644
--- a/Lib/test/test_xmlrpc.py
+++ b/Lib/test/test_xmlrpc.py
@@ -1175,13 +1175,7 @@ class GzipUtilTestCase(unittest.TestCase):
class ServerProxyTestCase(unittest.TestCase):
def setUp(self):
unittest.TestCase.setUp(self)
- if threading:
- self.url = URL
- else:
- # Without threading, http_server() and http_multi_server() will not
- # be executed and URL is still equal to None. 'http://' is a just
- # enough to choose the scheme (HTTP)
- self.url = 'http://'
+ self.url = URL
def test_close(self):
p = xmlrpclib.ServerProxy(self.url)
diff --git a/Python/importlib.h b/Python/importlib.h
index f552616..b962a38 100644
--- a/Python/importlib.h
+++ b/Python/importlib.h
@@ -1707,8 +1707,8 @@ const unsigned char _Py_M__importlib[] = {
0,0,0,114,11,0,0,0,218,18,95,98,117,105,108,116,
105,110,95,102,114,111,109,95,110,97,109,101,66,4,0,0,
115,8,0,0,0,0,1,10,1,8,1,12,1,114,197,0,
- 0,0,99,2,0,0,0,0,0,0,0,12,0,0,0,12,
- 0,0,0,67,0,0,0,115,244,0,0,0,124,1,97,0,
+ 0,0,99,2,0,0,0,0,0,0,0,10,0,0,0,5,
+ 0,0,0,67,0,0,0,115,174,0,0,0,124,1,97,0,
124,0,97,1,116,2,116,1,131,1,125,2,120,86,116,1,
106,3,160,4,161,0,68,0,93,72,92,2,125,3,125,4,
116,5,124,4,124,2,131,2,114,28,124,3,116,1,106,6,
@@ -1719,101 +1719,94 @@ const unsigned char _Py_M__importlib[] = {
100,5,68,0,93,46,125,8,124,8,116,1,106,3,107,7,
114,144,116,13,124,8,131,1,125,9,110,10,116,1,106,3,
124,8,25,0,125,9,116,14,124,7,124,8,124,9,131,3,
- 1,0,113,120,87,0,121,12,116,13,100,2,131,1,125,10,
- 87,0,110,24,4,0,116,15,107,10,114,206,1,0,1,0,
- 1,0,100,3,125,10,89,0,110,2,88,0,116,14,124,7,
- 100,2,124,10,131,3,1,0,116,13,100,4,131,1,125,11,
- 116,14,124,7,100,4,124,11,131,3,1,0,100,3,83,0,
- 41,6,122,250,83,101,116,117,112,32,105,109,112,111,114,116,
- 108,105,98,32,98,121,32,105,109,112,111,114,116,105,110,103,
- 32,110,101,101,100,101,100,32,98,117,105,108,116,45,105,110,
- 32,109,111,100,117,108,101,115,32,97,110,100,32,105,110,106,
- 101,99,116,105,110,103,32,116,104,101,109,10,32,32,32,32,
- 105,110,116,111,32,116,104,101,32,103,108,111,98,97,108,32,
- 110,97,109,101,115,112,97,99,101,46,10,10,32,32,32,32,
- 65,115,32,115,121,115,32,105,115,32,110,101,101,100,101,100,
- 32,102,111,114,32,115,121,115,46,109,111,100,117,108,101,115,
- 32,97,99,99,101,115,115,32,97,110,100,32,95,105,109,112,
- 32,105,115,32,110,101,101,100,101,100,32,116,111,32,108,111,
- 97,100,32,98,117,105,108,116,45,105,110,10,32,32,32,32,
- 109,111,100,117,108,101,115,44,32,116,104,111,115,101,32,116,
- 119,111,32,109,111,100,117,108,101,115,32,109,117,115,116,32,
- 98,101,32,101,120,112,108,105,99,105,116,108,121,32,112,97,
- 115,115,101,100,32,105,110,46,10,10,32,32,32,32,114,167,
- 0,0,0,114,20,0,0,0,78,114,56,0,0,0,41,1,
- 114,167,0,0,0,41,16,114,49,0,0,0,114,14,0,0,
- 0,114,13,0,0,0,114,80,0,0,0,218,5,105,116,101,
- 109,115,114,171,0,0,0,114,70,0,0,0,114,142,0,0,
- 0,114,76,0,0,0,114,152,0,0,0,114,129,0,0,0,
- 114,134,0,0,0,114,1,0,0,0,114,197,0,0,0,114,
- 5,0,0,0,114,71,0,0,0,41,12,218,10,115,121,115,
- 95,109,111,100,117,108,101,218,11,95,105,109,112,95,109,111,
- 100,117,108,101,90,11,109,111,100,117,108,101,95,116,121,112,
- 101,114,15,0,0,0,114,84,0,0,0,114,94,0,0,0,
- 114,83,0,0,0,90,11,115,101,108,102,95,109,111,100,117,
- 108,101,90,12,98,117,105,108,116,105,110,95,110,97,109,101,
- 90,14,98,117,105,108,116,105,110,95,109,111,100,117,108,101,
- 90,13,116,104,114,101,97,100,95,109,111,100,117,108,101,90,
- 14,119,101,97,107,114,101,102,95,109,111,100,117,108,101,114,
+ 1,0,113,120,87,0,100,4,83,0,41,6,122,250,83,101,
+ 116,117,112,32,105,109,112,111,114,116,108,105,98,32,98,121,
+ 32,105,109,112,111,114,116,105,110,103,32,110,101,101,100,101,
+ 100,32,98,117,105,108,116,45,105,110,32,109,111,100,117,108,
+ 101,115,32,97,110,100,32,105,110,106,101,99,116,105,110,103,
+ 32,116,104,101,109,10,32,32,32,32,105,110,116,111,32,116,
+ 104,101,32,103,108,111,98,97,108,32,110,97,109,101,115,112,
+ 97,99,101,46,10,10,32,32,32,32,65,115,32,115,121,115,
+ 32,105,115,32,110,101,101,100,101,100,32,102,111,114,32,115,
+ 121,115,46,109,111,100,117,108,101,115,32,97,99,99,101,115,
+ 115,32,97,110,100,32,95,105,109,112,32,105,115,32,110,101,
+ 101,100,101,100,32,116,111,32,108,111,97,100,32,98,117,105,
+ 108,116,45,105,110,10,32,32,32,32,109,111,100,117,108,101,
+ 115,44,32,116,104,111,115,101,32,116,119,111,32,109,111,100,
+ 117,108,101,115,32,109,117,115,116,32,98,101,32,101,120,112,
+ 108,105,99,105,116,108,121,32,112,97,115,115,101,100,32,105,
+ 110,46,10,10,32,32,32,32,114,20,0,0,0,114,167,0,
+ 0,0,114,56,0,0,0,78,41,3,114,20,0,0,0,114,
+ 167,0,0,0,114,56,0,0,0,41,15,114,49,0,0,0,
+ 114,14,0,0,0,114,13,0,0,0,114,80,0,0,0,218,
+ 5,105,116,101,109,115,114,171,0,0,0,114,70,0,0,0,
+ 114,142,0,0,0,114,76,0,0,0,114,152,0,0,0,114,
+ 129,0,0,0,114,134,0,0,0,114,1,0,0,0,114,197,
+ 0,0,0,114,5,0,0,0,41,10,218,10,115,121,115,95,
+ 109,111,100,117,108,101,218,11,95,105,109,112,95,109,111,100,
+ 117,108,101,90,11,109,111,100,117,108,101,95,116,121,112,101,
+ 114,15,0,0,0,114,84,0,0,0,114,94,0,0,0,114,
+ 83,0,0,0,90,11,115,101,108,102,95,109,111,100,117,108,
+ 101,90,12,98,117,105,108,116,105,110,95,110,97,109,101,90,
+ 14,98,117,105,108,116,105,110,95,109,111,100,117,108,101,114,
10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,6,
- 95,115,101,116,117,112,73,4,0,0,115,50,0,0,0,0,
+ 95,115,101,116,117,112,73,4,0,0,115,36,0,0,0,0,
9,4,1,4,3,8,1,20,1,10,1,10,1,6,1,10,
1,6,2,2,1,10,1,14,3,10,1,10,1,10,1,10,
- 2,10,1,16,3,2,1,12,1,14,2,10,1,12,3,8,
- 1,114,201,0,0,0,99,2,0,0,0,0,0,0,0,2,
- 0,0,0,3,0,0,0,67,0,0,0,115,38,0,0,0,
- 116,0,124,0,124,1,131,2,1,0,116,1,106,2,160,3,
- 116,4,161,1,1,0,116,1,106,2,160,3,116,5,161,1,
- 1,0,100,1,83,0,41,2,122,48,73,110,115,116,97,108,
- 108,32,105,109,112,111,114,116,101,114,115,32,102,111,114,32,
- 98,117,105,108,116,105,110,32,97,110,100,32,102,114,111,122,
- 101,110,32,109,111,100,117,108,101,115,78,41,6,114,201,0,
- 0,0,114,14,0,0,0,114,166,0,0,0,114,110,0,0,
- 0,114,142,0,0,0,114,152,0,0,0,41,2,114,199,0,
- 0,0,114,200,0,0,0,114,10,0,0,0,114,10,0,0,
- 0,114,11,0,0,0,218,8,95,105,110,115,116,97,108,108,
- 120,4,0,0,115,6,0,0,0,0,2,10,2,12,1,114,
- 202,0,0,0,99,0,0,0,0,0,0,0,0,1,0,0,
- 0,4,0,0,0,67,0,0,0,115,32,0,0,0,100,1,
- 100,2,108,0,125,0,124,0,97,1,124,0,160,2,116,3,
- 106,4,116,5,25,0,161,1,1,0,100,2,83,0,41,3,
- 122,57,73,110,115,116,97,108,108,32,105,109,112,111,114,116,
- 101,114,115,32,116,104,97,116,32,114,101,113,117,105,114,101,
- 32,101,120,116,101,114,110,97,108,32,102,105,108,101,115,121,
- 115,116,101,109,32,97,99,99,101,115,115,114,19,0,0,0,
- 78,41,6,218,26,95,102,114,111,122,101,110,95,105,109,112,
- 111,114,116,108,105,98,95,101,120,116,101,114,110,97,108,114,
- 116,0,0,0,114,202,0,0,0,114,14,0,0,0,114,80,
- 0,0,0,114,1,0,0,0,41,1,114,203,0,0,0,114,
- 10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,27,
- 95,105,110,115,116,97,108,108,95,101,120,116,101,114,110,97,
- 108,95,105,109,112,111,114,116,101,114,115,128,4,0,0,115,
- 6,0,0,0,0,3,8,1,4,1,114,204,0,0,0,41,
- 2,78,78,41,1,78,41,2,78,114,19,0,0,0,41,51,
- 114,3,0,0,0,114,116,0,0,0,114,12,0,0,0,114,
- 16,0,0,0,114,51,0,0,0,114,29,0,0,0,114,36,
- 0,0,0,114,17,0,0,0,114,18,0,0,0,114,41,0,
- 0,0,114,42,0,0,0,114,45,0,0,0,114,57,0,0,
- 0,114,59,0,0,0,114,69,0,0,0,114,75,0,0,0,
- 114,78,0,0,0,114,85,0,0,0,114,96,0,0,0,114,
- 97,0,0,0,114,103,0,0,0,114,79,0,0,0,114,129,
- 0,0,0,114,134,0,0,0,114,137,0,0,0,114,92,0,
- 0,0,114,81,0,0,0,114,140,0,0,0,114,141,0,0,
- 0,114,82,0,0,0,114,142,0,0,0,114,152,0,0,0,
- 114,157,0,0,0,114,163,0,0,0,114,165,0,0,0,114,
- 170,0,0,0,114,174,0,0,0,90,15,95,69,82,82,95,
- 77,83,71,95,80,82,69,70,73,88,114,176,0,0,0,114,
- 179,0,0,0,218,6,111,98,106,101,99,116,114,180,0,0,
- 0,114,181,0,0,0,114,182,0,0,0,114,189,0,0,0,
- 114,193,0,0,0,114,196,0,0,0,114,197,0,0,0,114,
- 201,0,0,0,114,202,0,0,0,114,204,0,0,0,114,10,
- 0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,
- 0,0,218,8,60,109,111,100,117,108,101,62,25,0,0,0,
- 115,96,0,0,0,4,0,4,2,8,8,8,8,4,2,4,
- 3,16,4,14,68,14,21,14,16,8,37,8,17,8,11,14,
- 8,8,11,8,12,8,16,8,36,14,27,14,101,16,26,10,
- 45,14,60,8,17,8,17,8,24,8,29,8,23,8,15,14,
- 73,14,77,14,13,8,9,8,9,10,47,8,16,4,1,8,
- 2,8,27,6,3,8,16,10,15,8,31,8,27,18,35,8,
- 7,8,47,8,8,
+ 2,10,1,114,201,0,0,0,99,2,0,0,0,0,0,0,
+ 0,2,0,0,0,3,0,0,0,67,0,0,0,115,38,0,
+ 0,0,116,0,124,0,124,1,131,2,1,0,116,1,106,2,
+ 160,3,116,4,161,1,1,0,116,1,106,2,160,3,116,5,
+ 161,1,1,0,100,1,83,0,41,2,122,48,73,110,115,116,
+ 97,108,108,32,105,109,112,111,114,116,101,114,115,32,102,111,
+ 114,32,98,117,105,108,116,105,110,32,97,110,100,32,102,114,
+ 111,122,101,110,32,109,111,100,117,108,101,115,78,41,6,114,
+ 201,0,0,0,114,14,0,0,0,114,166,0,0,0,114,110,
+ 0,0,0,114,142,0,0,0,114,152,0,0,0,41,2,114,
+ 199,0,0,0,114,200,0,0,0,114,10,0,0,0,114,10,
+ 0,0,0,114,11,0,0,0,218,8,95,105,110,115,116,97,
+ 108,108,108,4,0,0,115,6,0,0,0,0,2,10,2,12,
+ 1,114,202,0,0,0,99,0,0,0,0,0,0,0,0,1,
+ 0,0,0,4,0,0,0,67,0,0,0,115,32,0,0,0,
+ 100,1,100,2,108,0,125,0,124,0,97,1,124,0,160,2,
+ 116,3,106,4,116,5,25,0,161,1,1,0,100,2,83,0,
+ 41,3,122,57,73,110,115,116,97,108,108,32,105,109,112,111,
+ 114,116,101,114,115,32,116,104,97,116,32,114,101,113,117,105,
+ 114,101,32,101,120,116,101,114,110,97,108,32,102,105,108,101,
+ 115,121,115,116,101,109,32,97,99,99,101,115,115,114,19,0,
+ 0,0,78,41,6,218,26,95,102,114,111,122,101,110,95,105,
+ 109,112,111,114,116,108,105,98,95,101,120,116,101,114,110,97,
+ 108,114,116,0,0,0,114,202,0,0,0,114,14,0,0,0,
+ 114,80,0,0,0,114,1,0,0,0,41,1,114,203,0,0,
+ 0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,
+ 218,27,95,105,110,115,116,97,108,108,95,101,120,116,101,114,
+ 110,97,108,95,105,109,112,111,114,116,101,114,115,116,4,0,
+ 0,115,6,0,0,0,0,3,8,1,4,1,114,204,0,0,
+ 0,41,2,78,78,41,1,78,41,2,78,114,19,0,0,0,
+ 41,51,114,3,0,0,0,114,116,0,0,0,114,12,0,0,
+ 0,114,16,0,0,0,114,51,0,0,0,114,29,0,0,0,
+ 114,36,0,0,0,114,17,0,0,0,114,18,0,0,0,114,
+ 41,0,0,0,114,42,0,0,0,114,45,0,0,0,114,57,
+ 0,0,0,114,59,0,0,0,114,69,0,0,0,114,75,0,
+ 0,0,114,78,0,0,0,114,85,0,0,0,114,96,0,0,
+ 0,114,97,0,0,0,114,103,0,0,0,114,79,0,0,0,
+ 114,129,0,0,0,114,134,0,0,0,114,137,0,0,0,114,
+ 92,0,0,0,114,81,0,0,0,114,140,0,0,0,114,141,
+ 0,0,0,114,82,0,0,0,114,142,0,0,0,114,152,0,
+ 0,0,114,157,0,0,0,114,163,0,0,0,114,165,0,0,
+ 0,114,170,0,0,0,114,174,0,0,0,90,15,95,69,82,
+ 82,95,77,83,71,95,80,82,69,70,73,88,114,176,0,0,
+ 0,114,179,0,0,0,218,6,111,98,106,101,99,116,114,180,
+ 0,0,0,114,181,0,0,0,114,182,0,0,0,114,189,0,
+ 0,0,114,193,0,0,0,114,196,0,0,0,114,197,0,0,
+ 0,114,201,0,0,0,114,202,0,0,0,114,204,0,0,0,
+ 114,10,0,0,0,114,10,0,0,0,114,10,0,0,0,114,
+ 11,0,0,0,218,8,60,109,111,100,117,108,101,62,25,0,
+ 0,0,115,96,0,0,0,4,0,4,2,8,8,8,8,4,
+ 2,4,3,16,4,14,68,14,21,14,16,8,37,8,17,8,
+ 11,14,8,8,11,8,12,8,16,8,36,14,27,14,101,16,
+ 26,10,45,14,60,8,17,8,17,8,24,8,29,8,23,8,
+ 15,14,73,14,77,14,13,8,9,8,9,10,47,8,16,4,
+ 1,8,2,8,27,6,3,8,16,10,15,8,31,8,27,18,
+ 35,8,7,8,35,8,8,
};
diff --git a/Python/importlib_external.h b/Python/importlib_external.h
index 1216a2c..83fe39c 100644
--- a/Python/importlib_external.h
+++ b/Python/importlib_external.h
@@ -2289,7 +2289,7 @@ const unsigned char _Py_M__importlib_external[] = {
0,114,159,0,0,0,80,5,0,0,115,8,0,0,0,0,
5,12,1,8,1,8,1,114,159,0,0,0,99,1,0,0,
0,0,0,0,0,12,0,0,0,12,0,0,0,67,0,0,
- 0,115,188,1,0,0,124,0,97,0,116,0,106,1,97,1,
+ 0,115,156,1,0,0,124,0,97,0,116,0,106,1,97,1,
116,0,106,2,97,2,116,1,106,3,116,4,25,0,125,1,
120,56,100,26,68,0,93,48,125,2,124,2,116,1,106,3,
107,7,114,58,116,0,160,5,124,2,161,1,125,3,110,10,
@@ -2306,17 +2306,15 @@ const unsigned char _Py_M__importlib_external[] = {
116,9,100,12,131,1,130,1,116,6,124,1,100,13,124,8,
131,3,1,0,116,6,124,1,100,14,124,7,131,3,1,0,
116,6,124,1,100,15,100,16,160,10,124,6,161,1,131,3,
- 1,0,121,14,116,0,160,5,100,17,161,1,125,9,87,0,
- 110,26,4,0,116,9,107,10,144,1,114,52,1,0,1,0,
- 1,0,100,18,125,9,89,0,110,2,88,0,116,6,124,1,
- 100,17,124,9,131,3,1,0,116,0,160,5,100,19,161,1,
- 125,10,116,6,124,1,100,19,124,10,131,3,1,0,124,5,
- 100,7,107,2,144,1,114,120,116,0,160,5,100,20,161,1,
- 125,11,116,6,124,1,100,21,124,11,131,3,1,0,116,6,
- 124,1,100,22,116,11,131,0,131,3,1,0,116,12,160,13,
+ 1,0,116,0,160,5,100,17,161,1,125,9,116,6,124,1,
+ 100,17,124,9,131,3,1,0,116,0,160,5,100,18,161,1,
+ 125,10,116,6,124,1,100,18,124,10,131,3,1,0,124,5,
+ 100,7,107,2,144,1,114,88,116,0,160,5,100,19,161,1,
+ 125,11,116,6,124,1,100,20,124,11,131,3,1,0,116,6,
+ 124,1,100,21,116,11,131,0,131,3,1,0,116,12,160,13,
116,2,160,14,161,0,161,1,1,0,124,5,100,7,107,2,
- 144,1,114,184,116,15,160,16,100,23,161,1,1,0,100,24,
- 116,12,107,6,144,1,114,184,100,25,116,17,95,18,100,18,
+ 144,1,114,152,116,15,160,16,100,22,161,1,1,0,100,23,
+ 116,12,107,6,144,1,114,152,100,24,116,17,95,18,100,25,
83,0,41,27,122,205,83,101,116,117,112,32,116,104,101,32,
112,97,116,104,45,98,97,115,101,100,32,105,109,112,111,114,
116,101,114,115,32,102,111,114,32,105,109,112,111,114,116,108,
@@ -2345,10 +2343,10 @@ const unsigned char _Py_M__importlib_external[] = {
111,114,116,108,105,98,32,114,101,113,117,105,114,101,115,32,
112,111,115,105,120,32,111,114,32,110,116,114,3,0,0,0,
114,27,0,0,0,114,23,0,0,0,114,32,0,0,0,90,
- 7,95,116,104,114,101,97,100,78,90,8,95,119,101,97,107,
- 114,101,102,90,6,119,105,110,114,101,103,114,167,0,0,0,
- 114,7,0,0,0,122,4,46,112,121,119,122,6,95,100,46,
- 112,121,100,84,41,4,114,52,0,0,0,114,63,0,0,0,
+ 7,95,116,104,114,101,97,100,90,8,95,119,101,97,107,114,
+ 101,102,90,6,119,105,110,114,101,103,114,167,0,0,0,114,
+ 7,0,0,0,122,4,46,112,121,119,122,6,95,100,46,112,
+ 121,100,84,78,41,4,114,52,0,0,0,114,63,0,0,0,
114,24,1,0,0,114,140,0,0,0,41,19,114,118,0,0,
0,114,8,0,0,0,114,143,0,0,0,114,235,0,0,0,
114,109,0,0,0,90,18,95,98,117,105,108,116,105,110,95,
@@ -2368,64 +2366,64 @@ const unsigned char _Py_M__importlib_external[] = {
101,90,14,119,101,97,107,114,101,102,95,109,111,100,117,108,
101,90,13,119,105,110,114,101,103,95,109,111,100,117,108,101,
114,4,0,0,0,114,4,0,0,0,114,6,0,0,0,218,
- 6,95,115,101,116,117,112,91,5,0,0,115,82,0,0,0,
+ 6,95,115,101,116,117,112,91,5,0,0,115,76,0,0,0,
0,8,4,1,6,1,6,3,10,1,10,1,10,1,12,2,
10,1,16,3,22,1,14,2,22,1,8,1,10,1,10,1,
4,2,2,1,10,1,6,1,14,1,12,2,8,1,12,1,
- 12,1,18,3,2,1,14,1,16,2,10,1,12,3,10,1,
- 12,3,10,1,10,1,12,3,14,1,14,1,10,1,10,1,
- 10,1,114,30,1,0,0,99,1,0,0,0,0,0,0,0,
- 2,0,0,0,4,0,0,0,67,0,0,0,115,50,0,0,
- 0,116,0,124,0,131,1,1,0,116,1,131,0,125,1,116,
- 2,106,3,160,4,116,5,106,6,124,1,142,0,103,1,161,
- 1,1,0,116,2,106,7,160,8,116,9,161,1,1,0,100,
- 1,83,0,41,2,122,41,73,110,115,116,97,108,108,32,116,
- 104,101,32,112,97,116,104,45,98,97,115,101,100,32,105,109,
- 112,111,114,116,32,99,111,109,112,111,110,101,110,116,115,46,
- 78,41,10,114,30,1,0,0,114,159,0,0,0,114,8,0,
- 0,0,114,252,0,0,0,114,147,0,0,0,114,4,1,0,
- 0,114,17,1,0,0,218,9,109,101,116,97,95,112,97,116,
- 104,114,161,0,0,0,114,247,0,0,0,41,2,114,29,1,
- 0,0,90,17,115,117,112,112,111,114,116,101,100,95,108,111,
- 97,100,101,114,115,114,4,0,0,0,114,4,0,0,0,114,
- 6,0,0,0,218,8,95,105,110,115,116,97,108,108,159,5,
- 0,0,115,8,0,0,0,0,2,8,1,6,1,20,1,114,
- 32,1,0,0,41,1,114,0,0,0,0,41,2,114,1,0,
- 0,0,114,2,0,0,0,41,1,114,49,0,0,0,41,1,
- 78,41,3,78,78,78,41,3,78,78,78,41,2,114,62,0,
- 0,0,114,62,0,0,0,41,1,78,41,1,78,41,58,114,
- 111,0,0,0,114,12,0,0,0,90,37,95,67,65,83,69,
- 95,73,78,83,69,78,83,73,84,73,86,69,95,80,76,65,
- 84,70,79,82,77,83,95,66,89,84,69,83,95,75,69,89,
- 114,11,0,0,0,114,13,0,0,0,114,19,0,0,0,114,
- 21,0,0,0,114,30,0,0,0,114,40,0,0,0,114,41,
- 0,0,0,114,45,0,0,0,114,46,0,0,0,114,48,0,
- 0,0,114,58,0,0,0,218,4,116,121,112,101,218,8,95,
- 95,99,111,100,101,95,95,114,142,0,0,0,114,17,0,0,
- 0,114,132,0,0,0,114,16,0,0,0,114,20,0,0,0,
- 90,17,95,82,65,87,95,77,65,71,73,67,95,78,85,77,
- 66,69,82,114,77,0,0,0,114,76,0,0,0,114,88,0,
- 0,0,114,78,0,0,0,90,23,68,69,66,85,71,95,66,
- 89,84,69,67,79,68,69,95,83,85,70,70,73,88,69,83,
- 90,27,79,80,84,73,77,73,90,69,68,95,66,89,84,69,
- 67,79,68,69,95,83,85,70,70,73,88,69,83,114,83,0,
- 0,0,114,89,0,0,0,114,95,0,0,0,114,99,0,0,
- 0,114,101,0,0,0,114,120,0,0,0,114,127,0,0,0,
- 114,139,0,0,0,114,145,0,0,0,114,148,0,0,0,114,
- 153,0,0,0,218,6,111,98,106,101,99,116,114,160,0,0,
- 0,114,165,0,0,0,114,166,0,0,0,114,181,0,0,0,
- 114,191,0,0,0,114,206,0,0,0,114,214,0,0,0,114,
- 219,0,0,0,114,225,0,0,0,114,220,0,0,0,114,226,
- 0,0,0,114,245,0,0,0,114,247,0,0,0,114,4,1,
- 0,0,114,22,1,0,0,114,159,0,0,0,114,30,1,0,
- 0,114,32,1,0,0,114,4,0,0,0,114,4,0,0,0,
- 114,4,0,0,0,114,6,0,0,0,218,8,60,109,111,100,
- 117,108,101,62,24,0,0,0,115,108,0,0,0,4,0,4,
- 1,4,1,2,1,6,3,8,17,8,5,8,5,8,6,8,
- 12,8,10,8,9,8,5,8,7,10,22,10,124,16,1,12,
- 2,4,1,4,2,6,2,6,2,8,2,16,45,8,34,8,
- 19,8,12,8,12,8,28,8,17,10,55,10,12,10,10,8,
- 14,6,3,4,1,14,67,14,64,14,29,16,110,14,41,18,
- 45,18,16,4,3,18,53,14,60,14,42,14,127,0,5,14,
- 127,0,22,10,23,8,11,8,68,
+ 12,1,18,3,10,1,12,3,10,1,12,3,10,1,10,1,
+ 12,3,14,1,14,1,10,1,10,1,10,1,114,30,1,0,
+ 0,99,1,0,0,0,0,0,0,0,2,0,0,0,4,0,
+ 0,0,67,0,0,0,115,50,0,0,0,116,0,124,0,131,
+ 1,1,0,116,1,131,0,125,1,116,2,106,3,160,4,116,
+ 5,106,6,124,1,142,0,103,1,161,1,1,0,116,2,106,
+ 7,160,8,116,9,161,1,1,0,100,1,83,0,41,2,122,
+ 41,73,110,115,116,97,108,108,32,116,104,101,32,112,97,116,
+ 104,45,98,97,115,101,100,32,105,109,112,111,114,116,32,99,
+ 111,109,112,111,110,101,110,116,115,46,78,41,10,114,30,1,
+ 0,0,114,159,0,0,0,114,8,0,0,0,114,252,0,0,
+ 0,114,147,0,0,0,114,4,1,0,0,114,17,1,0,0,
+ 218,9,109,101,116,97,95,112,97,116,104,114,161,0,0,0,
+ 114,247,0,0,0,41,2,114,29,1,0,0,90,17,115,117,
+ 112,112,111,114,116,101,100,95,108,111,97,100,101,114,115,114,
+ 4,0,0,0,114,4,0,0,0,114,6,0,0,0,218,8,
+ 95,105,110,115,116,97,108,108,155,5,0,0,115,8,0,0,
+ 0,0,2,8,1,6,1,20,1,114,32,1,0,0,41,1,
+ 114,0,0,0,0,41,2,114,1,0,0,0,114,2,0,0,
+ 0,41,1,114,49,0,0,0,41,1,78,41,3,78,78,78,
+ 41,3,78,78,78,41,2,114,62,0,0,0,114,62,0,0,
+ 0,41,1,78,41,1,78,41,58,114,111,0,0,0,114,12,
+ 0,0,0,90,37,95,67,65,83,69,95,73,78,83,69,78,
+ 83,73,84,73,86,69,95,80,76,65,84,70,79,82,77,83,
+ 95,66,89,84,69,83,95,75,69,89,114,11,0,0,0,114,
+ 13,0,0,0,114,19,0,0,0,114,21,0,0,0,114,30,
+ 0,0,0,114,40,0,0,0,114,41,0,0,0,114,45,0,
+ 0,0,114,46,0,0,0,114,48,0,0,0,114,58,0,0,
+ 0,218,4,116,121,112,101,218,8,95,95,99,111,100,101,95,
+ 95,114,142,0,0,0,114,17,0,0,0,114,132,0,0,0,
+ 114,16,0,0,0,114,20,0,0,0,90,17,95,82,65,87,
+ 95,77,65,71,73,67,95,78,85,77,66,69,82,114,77,0,
+ 0,0,114,76,0,0,0,114,88,0,0,0,114,78,0,0,
+ 0,90,23,68,69,66,85,71,95,66,89,84,69,67,79,68,
+ 69,95,83,85,70,70,73,88,69,83,90,27,79,80,84,73,
+ 77,73,90,69,68,95,66,89,84,69,67,79,68,69,95,83,
+ 85,70,70,73,88,69,83,114,83,0,0,0,114,89,0,0,
+ 0,114,95,0,0,0,114,99,0,0,0,114,101,0,0,0,
+ 114,120,0,0,0,114,127,0,0,0,114,139,0,0,0,114,
+ 145,0,0,0,114,148,0,0,0,114,153,0,0,0,218,6,
+ 111,98,106,101,99,116,114,160,0,0,0,114,165,0,0,0,
+ 114,166,0,0,0,114,181,0,0,0,114,191,0,0,0,114,
+ 206,0,0,0,114,214,0,0,0,114,219,0,0,0,114,225,
+ 0,0,0,114,220,0,0,0,114,226,0,0,0,114,245,0,
+ 0,0,114,247,0,0,0,114,4,1,0,0,114,22,1,0,
+ 0,114,159,0,0,0,114,30,1,0,0,114,32,1,0,0,
+ 114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,
+ 6,0,0,0,218,8,60,109,111,100,117,108,101,62,24,0,
+ 0,0,115,108,0,0,0,4,0,4,1,4,1,2,1,6,
+ 3,8,17,8,5,8,5,8,6,8,12,8,10,8,9,8,
+ 5,8,7,10,22,10,124,16,1,12,2,4,1,4,2,6,
+ 2,6,2,8,2,16,45,8,34,8,19,8,12,8,12,8,
+ 28,8,17,10,55,10,12,10,10,8,14,6,3,4,1,14,
+ 67,14,64,14,29,16,110,14,41,18,45,18,16,4,3,18,
+ 53,14,60,14,42,14,127,0,5,14,127,0,22,10,23,8,
+ 11,8,64,
};